Sha256: 41058aed5fee4b6f9b052f5d8111a84d81564dcef978aa3ce540c676037fa813

Contents?: true

Size: 1.04 KB

Versions: 24

Compression:

Stored size: 1.04 KB

Contents

require "spec_helper"

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

  after :all 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

    q1.message_count.should == n
    q2.message_count.should == n
    q3.message_count.should == n
    q4.message_count.should be_zero

    x.delete
  end
end

Version data entries

24 entries across 24 versions & 1 rubygems

Version Path
bunny-0.10.0 spec/higher_level_api/integration/sender_selected_distribution_spec.rb
bunny-1.0.0.pre3 spec/higher_level_api/integration/sender_selected_distribution_spec.rb
bunny-0.9.8 spec/higher_level_api/integration/sender_selected_distribution_spec.rb
bunny-1.0.0.pre2 spec/higher_level_api/integration/sender_selected_distribution_spec.rb
bunny-0.9.7 spec/higher_level_api/integration/sender_selected_distribution_spec.rb
bunny-0.9.6 spec/higher_level_api/integration/sender_selected_distribution_spec.rb
bunny-0.9.5 spec/higher_level_api/integration/sender_selected_distribution_spec.rb
bunny-0.9.4 spec/higher_level_api/integration/sender_selected_distribution_spec.rb
bunny-1.0.0.pre1 spec/higher_level_api/integration/sender_selected_distribution_spec.rb
bunny-0.9.3 spec/higher_level_api/integration/sender_selected_distribution_spec.rb
bunny-0.9.2 spec/higher_level_api/integration/sender_selected_distribution_spec.rb
bunny-0.9.1 spec/higher_level_api/integration/sender_selected_distribution_spec.rb
bunny-0.9.0 spec/higher_level_api/integration/sender_selected_distribution_spec.rb
bunny-0.9.0.rc2 spec/higher_level_api/integration/sender_selected_distribution_spec.rb
bunny-0.9.0.rc1 spec/higher_level_api/integration/sender_selected_distribution_spec.rb
bunny-0.9.0.pre13 spec/higher_level_api/integration/sender_selected_distribution_spec.rb
bunny-0.9.0.pre12 spec/higher_level_api/integration/sender_selected_distribution_spec.rb
bunny-0.9.0.pre11 spec/higher_level_api/integration/sender_selected_distribution_spec.rb
bunny-0.9.0.pre10 spec/higher_level_api/integration/sender_selected_distribution_spec.rb
bunny-0.9.0.pre9 spec/higher_level_api/integration/sender_selected_distribution_spec.rb