Sha256: 2865d1263e8c6b535bee5753fa1123599a1e950a4823fa74ed12c33f2e8d9c35

Contents?: true

Size: 1.15 KB

Versions: 32

Compression:

Stored size: 1.15 KB

Contents

# encoding: utf-8

require 'spec_helper'
require 'integration/coolio/spec_helper'

describe "AMQ::Client::CoolioClient", "Channel.Flow", :nojruby => true do
  include EventedSpec::SpecHelper
  default_timeout 1

  it "should control the flow of channel" do
    coolio_amqp_connect do |client|
      channel = AMQ::Client::Channel.new(client, 1)
      channel.open do
        channel.flow_is_active?.should be_true
        channel.flow(false) do |_, flow_active|
          flow_active.should be_false
          channel.flow(true) do |_, flow_active|
            flow_active.should be_true
          end
        end
        done
      end
    end
  end


  it "should not raise errors when no state change occurs" do
    coolio_amqp_connect do |client|
      channel = AMQ::Client::Channel.new(client, 1)
      expect {
        channel.open do
          channel.flow_is_active?.should be_true
          channel.flow(false) do |_, flow_active|
            flow_active.should be_false
            channel.flow(false) do |_, flow_active|
              flow_active.should be_false
            end
          end
          done
        end
      }.to_not raise_error
    end
  end
end

Version data entries

32 entries across 32 versions & 1 rubygems

Version Path
amq-client-1.0.4 spec/integration/coolio/channel_flow_spec.rb
amq-client-1.0.3 spec/integration/coolio/channel_flow_spec.rb
amq-client-1.1.0.pre1 spec/integration/coolio/channel_flow_spec.rb
amq-client-1.0.2 spec/integration/coolio/channel_flow_spec.rb
amq-client-1.0.1 spec/integration/coolio/channel_flow_spec.rb
amq-client-1.0.0 spec/integration/coolio/channel_flow_spec.rb
amq-client-0.9.12 spec/integration/coolio/channel_flow_spec.rb
amq-client-0.9.11 spec/integration/coolio/channel_flow_spec.rb
amq-client-0.9.10 spec/integration/coolio/channel_flow_spec.rb
amq-client-0.9.9 spec/integration/coolio/channel_flow_spec.rb
amq-client-0.9.8 spec/integration/coolio/channel_flow_spec.rb
amq-client-0.9.7 spec/integration/coolio/channel_flow_spec.rb
amq-client-0.9.6 spec/integration/coolio/channel_flow_spec.rb
amq-client-0.9.5 spec/integration/coolio/channel_flow_spec.rb
amq-client-0.9.4 spec/integration/coolio/channel_flow_spec.rb
amq-client-1.0.0.pre2 spec/integration/coolio/channel_flow_spec.rb
amq-client-0.9.3 spec/integration/coolio/channel_flow_spec.rb
amq-client-1.0.0.pre1 spec/integration/coolio/channel_flow_spec.rb
amq-client-0.9.2 spec/integration/coolio/channel_flow_spec.rb
amq-client-0.9.1 spec/integration/coolio/channel_flow_spec.rb