Sha256: 6816bcdb4ce3e754df0630ec34f72b5d1d3abb1c629ee08368e7464d4eb78c07

Contents?: true

Size: 1.5 KB

Versions: 38

Compression:

Stored size: 1.5 KB

Contents

require "spec_helper"

unless ENV["CI"]
  describe "Message framing implementation" do
    let(:connection) do
      c = Bunny.new(:user     => "bunny_gem",
        :password => "bunny_password",
        :vhost    => "bunny_testbed",
        :port     => ENV.fetch("RABBITMQ_PORT", 5672))
      c.start
      c
    end

    after :each do
      connection.close if connection.open?
    end


    context "with payload exceeding 128 Kb (max frame size)" do
      it "successfully frames the message" do
        ch = connection.create_channel

        q  = ch.queue("", :exclusive => true)
        x  = ch.default_exchange

        as = ("a" * (1024 * 1024 * 4 + 28237777))
        x.publish(as, :routing_key => q.name, :persistent => true)

        sleep(1)
        q.message_count.should == 1

        _, _, payload      = q.pop
        payload.bytesize.should == as.bytesize

        ch.close
      end
    end



    context "with empty message body" do
      it "successfully publishes the message" do
        ch = connection.create_channel

        q  = ch.queue("", :exclusive => true)
        x  = ch.default_exchange

        x.publish("", :routing_key => q.name, :persistent => false, :mandatory => true)

        sleep(0.5)
        q.message_count.should == 1

        envelope, headers, payload = q.pop

        payload.should == ""

        headers[:content_type].should == "application/octet-stream"
        headers[:delivery_mode].should == 1
        headers[:priority].should == 0

        ch.close
      end
    end
  end
end

Version data entries

38 entries across 38 versions & 1 rubygems

Version Path
bunny-1.2.2 spec/higher_level_api/integration/publishing_edge_cases_spec.rb
bunny-1.2.1 spec/higher_level_api/integration/publishing_edge_cases_spec.rb
bunny-1.2.0 spec/higher_level_api/integration/publishing_edge_cases_spec.rb
bunny-1.1.9 spec/higher_level_api/integration/publishing_edge_cases_spec.rb
bunny-1.1.8 spec/higher_level_api/integration/publishing_edge_cases_spec.rb
bunny-1.1.7 spec/higher_level_api/integration/publishing_edge_cases_spec.rb
bunny-1.1.6 spec/higher_level_api/integration/publishing_edge_cases_spec.rb
bunny-1.1.5 spec/higher_level_api/integration/publishing_edge_cases_spec.rb
bunny-1.1.4 spec/higher_level_api/integration/publishing_edge_cases_spec.rb
bunny-1.1.3 spec/higher_level_api/integration/publishing_edge_cases_spec.rb
bunny-1.1.2 spec/higher_level_api/integration/publishing_edge_cases_spec.rb
bunny-1.1.1 spec/higher_level_api/integration/publishing_edge_cases_spec.rb
bunny-1.1.0 spec/higher_level_api/integration/publishing_edge_cases_spec.rb
bunny-1.1.0.rc1 spec/higher_level_api/integration/publishing_edge_cases_spec.rb
bunny-1.0.7 spec/higher_level_api/integration/publishing_edge_cases_spec.rb
bunny-1.0.6 spec/higher_level_api/integration/publishing_edge_cases_spec.rb
bunny-1.0.5 spec/higher_level_api/integration/publishing_edge_cases_spec.rb
bunny-1.1.0.pre2 spec/higher_level_api/integration/publishing_edge_cases_spec.rb
bunny-1.1.0.pre1 spec/higher_level_api/integration/publishing_edge_cases_spec.rb
bunny-1.0.4 spec/higher_level_api/integration/publishing_edge_cases_spec.rb