Sha256: a850dc083124f778a3a2618ea1174d930fbb837cda777030fb27044f04dea18b

Contents?: true

Size: 1.28 KB

Versions: 30

Compression:

Stored size: 1.28 KB

Contents

require "spec_helper"

describe "Rapidly closing lots of temporary channels" do
  before :all do
    @connection = Bunny.new(automatic_recovery: false).tap do |c|
      c.start
    end
  end

  after :all do
    @connection.close
  end

  100.times do |i|
    context "in a multi-threaded scenario A (take #{i})" do
      let(:n) { 20 }

      it "works correctly" do
        ts = []

        n.times do
          t = Thread.new do
            @connection.with_channel do |ch1|
              q   = ch1.queue("", exclusive: true)
              q.delete
              ch1.close
            end

            ch2 = @connection.create_channel
            ch2.close
          end
          t.abort_on_exception = true
          ts << t
        end

        ts.each { |t| t.join }
      end
    end
  end

  100.times do |i|
    context "in a multi-threaded scenario B (take #{i})" do
      let(:n) { 20 }

      it "works correctly" do
        ts = []

        n.times do
          t = Thread.new do
            3.times do
              @connection.with_channel do |ch|
                x  = ch.topic('bunny.stress.topics.t2', durable: false)
              end
            end
          end
          t.abort_on_exception = true
          ts << t
        end

        ts.each { |t| t.join }
      end
    end
  end
end

Version data entries

30 entries across 30 versions & 1 rubygems

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