File: sender_selected_distribution_spec.rb

package info (click to toggle)
ruby-bunny 2.23.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,644 kB
  • sloc: ruby: 10,256; sh: 70; makefile: 8
file content (36 lines) | stat: -rw-r--r-- 1,041 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
require "spec_helper"

describe "Sender-selected distribution" do
  let(:connection) do
    c = Bunny.new(username: "bunny_gem", password: "bunny_password", vhost: "bunny_testbed")
    c.start
    c
  end

  after :each do
    connection.close if connection.open?
  end

  it "lets publishers specify additional routing keys using CC and BCC headers" do
    ch   = connection.create_channel
    x    = ch.direct("bunny.tests.ssd.exchange")
    q1   = ch.queue("", exclusive: true).bind(x, routing_key: "one")
    q2   = ch.queue("", exclusive: true).bind(x, routing_key: "two")
    q3   = ch.queue("", exclusive: true).bind(x, routing_key: "three")
    q4   = ch.queue("", exclusive: true).bind(x, routing_key: "four")

    n    = 10
    n.times do |i|
      x.publish("Message #{i}", routing_key: "one", headers: {"CC" => ["two", "three"]})
    end

    sleep 0.5

    expect(q1.message_count).to eq n
    expect(q2.message_count).to eq n
    expect(q3.message_count).to eq n
    expect(q4.message_count).to be_zero

    x.delete
  end
end