Sha256: 7319fda065138b200b7cfefd3ed847cab558dd5d7a75cfff80a348e412719b8b

Contents?: true

Size: 1.04 KB

Versions: 17

Compression:

Stored size: 1.04 KB

Contents

require "spec_helper"

describe Bunny::Queue, "bound to an exchange" do
  let(:connection) do
    c = Bunny.new(:user => "bunny_gem", :password => "bunny_password", :vhost => "bunny_testbed")
    c.start
    c
  end

  after :each do
    connection.close
  end


  it "can be unbound from an exchange it was bound to" do
    ch = connection.create_channel
    x  = ch.fanout("amq.fanout")
    q  = ch.queue("", :exclusive => true).bind(x)

    x.publish("")
    sleep 0.3
    expect(q.message_count).to eq 1

    q.unbind(x)

    x.publish("")
    expect(q.message_count).to eq 1
  end
end



describe Bunny::Queue, "NOT bound to an exchange" do
  let(:connection) do
    c = Bunny.new(:user => "bunny_gem", :password => "bunny_password", :vhost => "bunny_testbed")
    c.start
    c
  end

  after :each do
    connection.close
  end


  it "is idempotent (succeeds)" do
    ch = connection.create_channel
    x  = ch.fanout("amq.fanout")
    q  = ch.queue("", :exclusive => true)

    # No exception as of RabbitMQ 3.2. MK.
    q.unbind(x)
    q.unbind(x)
  end
end

Version data entries

17 entries across 17 versions & 1 rubygems

Version Path
bunny-2.6.3 spec/higher_level_api/integration/queue_unbind_spec.rb
bunny-2.6.2 spec/higher_level_api/integration/queue_unbind_spec.rb
bunny-2.6.1 spec/higher_level_api/integration/queue_unbind_spec.rb
bunny-2.6.0 spec/higher_level_api/integration/queue_unbind_spec.rb
bunny-2.5.1 spec/higher_level_api/integration/queue_unbind_spec.rb
bunny-2.5.0 spec/higher_level_api/integration/queue_unbind_spec.rb
bunny-2.4.0 spec/higher_level_api/integration/queue_unbind_spec.rb
bunny-2.3.1 spec/higher_level_api/integration/queue_unbind_spec.rb
bunny-2.3.0 spec/higher_level_api/integration/queue_unbind_spec.rb
bunny-2.2.2 spec/higher_level_api/integration/queue_unbind_spec.rb
bunny-2.2.1 spec/higher_level_api/integration/queue_unbind_spec.rb
bunny-2.2.0 spec/higher_level_api/integration/queue_unbind_spec.rb
bunny-2.1.0 spec/higher_level_api/integration/queue_unbind_spec.rb
bunny-2.0.1 spec/higher_level_api/integration/queue_unbind_spec.rb
bunny-2.0.0 spec/higher_level_api/integration/queue_unbind_spec.rb
bunny-2.0.0.rc2 spec/higher_level_api/integration/queue_unbind_spec.rb
bunny-2.0.0.rc1 spec/higher_level_api/integration/queue_unbind_spec.rb