Sha256: 4e19638b00470de3edcf1780faa998f7d57d7f512778eca7205c3a2cf6b408cc

Contents?: true

Size: 1.02 KB

Versions: 30

Compression:

Stored size: 1.02 KB

Contents

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

Version data entries

30 entries across 30 versions & 1 rubygems

Version Path
bunny-2.8.1 spec/higher_level_api/integration/sender_selected_distribution_spec.rb
bunny-2.9.0 spec/higher_level_api/integration/sender_selected_distribution_spec.rb
bunny-2.7.3 spec/higher_level_api/integration/sender_selected_distribution_spec.rb
bunny-2.8.0 spec/higher_level_api/integration/sender_selected_distribution_spec.rb
bunny-2.7.2 spec/higher_level_api/integration/sender_selected_distribution_spec.rb
bunny-2.7.1 spec/higher_level_api/integration/sender_selected_distribution_spec.rb
bunny-2.7.0 spec/higher_level_api/integration/sender_selected_distribution_spec.rb
bunny-2.6.6 spec/higher_level_api/integration/sender_selected_distribution_spec.rb
bunny-2.6.5 spec/higher_level_api/integration/sender_selected_distribution_spec.rb
bunny-2.6.4 spec/higher_level_api/integration/sender_selected_distribution_spec.rb