Sha256: 899abdb0d5519cce194bc31e6b569b91e071d898413e286944a30461a12f7b8f

Contents?: true

Size: 872 Bytes

Versions: 17

Compression:

Stored size: 872 Bytes

Contents

require "spec_helper"

describe Bunny::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 if connection.open?
  end

  it "unbinds two existing exchanges" do
    ch          = connection.create_channel

    source      = ch.fanout("bunny.exchanges.source#{rand}")
    destination = ch.fanout("bunny.exchanges.destination#{rand}")

    queue       = ch.queue("", :exclusive => true)
    queue.bind(destination)

    destination.bind(source)
    source.publish("")
    sleep 0.5

    expect(queue.message_count).to eq 1
    queue.pop(:manual_ack => true)

    destination.unbind(source)
    source.publish("")
    sleep 0.5

    expect(queue.message_count).to eq 0

    source.delete
    destination.delete
    ch.close
  end
end

Version data entries

17 entries across 17 versions & 1 rubygems

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