Sha256: f41c25b2ee3f9c3945e1194614957ed9fddc8fa20da0585f32098d705efe921f

Contents?: true

Size: 1.81 KB

Versions: 29

Compression:

Stored size: 1.81 KB

Contents

require "spec_helper"

describe Bunny::Session do
  let(:http_client) { RabbitMQ::HTTP::Client.new("http://127.0.0.1:15672") }

  def close_connection(client_port)
    # let whatever actions were taken before
    # this call a chance to propagate, e.g. to make
    # sure that connections are accounted for in the
    # stats DB.
    #
    # See bin/ci/before_build for management plugin
    # pre-configuration.
    #
    # MK.
    sleep 1.1
    c = http_client.
      list_connections.
      find   { |conn_info| conn_info && conn_info.peer_port.to_i == client_port }

    http_client.close_connection(c.name) if c
  end

  def wait_for_recovery
    sleep 1.5
  end

  it "can be closed" do
    c  = Bunny.new(automatically_recover: false)
    c.start
    ch = c.create_channel

    expect(c).to be_connected
    c.stop
    expect(c).to be_closed
  end

  it "can be closed twice (Session#close is idempotent)" do
    c  = Bunny.new(automatically_recover: false)
    c.start
    ch = c.create_channel

    expect(c).to be_connected
    c.stop
    expect(c).to be_closed
    c.stop
    expect(c).to be_closed
  end

  describe "in a single threaded mode" do
    it "can be closed" do
      c  = Bunny.new(automatically_recover: false, threaded: false)
      c.start
      ch = c.create_channel

      expect(c).to be_connected
      c.stop
      expect(c).to be_closed
    end
  end


  describe "that recovers from connection.close" do
    it "can be closed" do
      c  = Bunny.new(automatically_recover: true,
        recover_from_connection_close: true,
        network_recovery_interval: 0.2)
      c.start
      ch = c.create_channel

      sleep 1.5
      expect(c).to be_open
      sleep 1.5
      close_connection(c.local_port)

      wait_for_recovery
      expect(c).to be_open
      expect(ch).to be_open

      c.close
    end
  end
end

Version data entries

29 entries across 29 versions & 1 rubygems

Version Path
bunny-2.19.0 spec/higher_level_api/integration/connection_stop_spec.rb
bunny-2.18.0 spec/higher_level_api/integration/connection_stop_spec.rb
bunny-2.17.0 spec/higher_level_api/integration/connection_stop_spec.rb
bunny-2.16.1 spec/higher_level_api/integration/connection_stop_spec.rb
bunny-2.15.0 spec/higher_level_api/integration/connection_stop_spec.rb
bunny-2.14.4 spec/higher_level_api/integration/connection_stop_spec.rb
bunny-2.14.3 spec/higher_level_api/integration/connection_stop_spec.rb
bunny-2.14.2 spec/higher_level_api/integration/connection_stop_spec.rb
bunny-2.14.1 spec/higher_level_api/integration/connection_stop_spec.rb
bunny-2.13.0 spec/higher_level_api/integration/connection_stop_spec.rb
bunny-2.12.1 spec/higher_level_api/integration/connection_stop_spec.rb
bunny-2.12.0 spec/higher_level_api/integration/connection_stop_spec.rb
bunny-2.12.0.rc1 spec/higher_level_api/integration/connection_stop_spec.rb
bunny-2.11.0 spec/higher_level_api/integration/connection_stop_spec.rb
bunny-2.11.0.pre1 spec/higher_level_api/integration/connection_stop_spec.rb
bunny-2.10.0 spec/higher_level_api/integration/connection_stop_spec.rb
bunny-2.9.2 spec/higher_level_api/integration/connection_stop_spec.rb
bunny-2.9.1 spec/higher_level_api/integration/connection_stop_spec.rb
bunny-2.6.7 spec/higher_level_api/integration/connection_stop_spec.rb
bunny-2.7.4 spec/higher_level_api/integration/connection_stop_spec.rb