Sha256: 4f70b9300b486630817e27870459b91ab665eb6c760cda555b022867e4ba2d54

Contents?: true

Size: 1.61 KB

Versions: 32

Compression:

Stored size: 1.61 KB

Contents

# encoding: binary

require "spec_helper"
require "stringio"

# We need to require AMQ-Protocol manually.
# In the library this is required in the file
# amq/client.rb, but this is a unit test and
# we don't want to mess around with unecessary
# dependencies.
require "amq/protocol/client"
require "amq/protocol/frame"

# We have to use Kernel#load so extensions to the
# Logging module from client.rb will be overridden.
load "amq/client/framing/io/frame.rb"

describe AMQ::Client::Framing::IO do
  subject do
    AMQ::Client::Framing::IO::Frame
  end

  # Created by:
  # frame = AMQ::Protocol::Queue::Declare.encode(1, "tasks", false, false, false, false, {})
  # frame.encode
  # frame.payload
  before do
    data = ["\x01\x00\x00\x00\x00\x00\b"]
    data << "\x00\n\x00(\x01/\x00\x00"
    data << "\xCE"
    @io = StringIO.new(data.join)

    subject.stub(:decode_header).with(data.first).and_return([1, 0, data[1].bytesize])
  end

  it "should be able to decode frame type" do
    subject.decode(@io).should be_kind_of(AMQ::Protocol::MethodFrame)
  end

  it "should be able to decode channel" do
    subject.decode(@io).channel.should eql(0)
  end

  it "should be able to decode payload" do
    subject.decode(@io).payload.should eql("\x00\n\x00(\x01/\x00\x00")
  end

  context "if the frame length is miscalculated" do
    it "should raise an error"
  end


  context "if frame doesn't end with FINAL_OCTET" do
    it "should raise an error" do
      data = @io.read[0..-2] + "too long" + "\xCE"
      io   = StringIO.new(data)
      lambda { subject.decode(io) }.should raise_error(AMQ::Client::NoFinalOctetError)
    end
  end
end

Version data entries

32 entries across 32 versions & 1 rubygems

Version Path
amq-client-0.9.0 spec/client/framing/io_frame_spec.rb
amq-client-0.9.0.pre2 spec/client/framing/io_frame_spec.rb
amq-client-0.9.0.pre1 spec/client/framing/io_frame_spec.rb
amq-client-0.8.7 spec/client/framing/io_frame_spec.rb
amq-client-0.8.7.pre1 spec/client/framing/io_frame_spec.rb
amq-client-0.8.6 spec/client/framing/io_frame_spec.rb
amq-client-0.8.5 spec/client/framing/io_frame_spec.rb
amq-client-0.8.4 spec/client/framing/io_frame_spec.rb
amq-client-0.8.3 spec/client/framing/io_frame_spec.rb
amq-client-0.8.2 spec/client/framing/io_frame_spec.rb
amq-client-0.8.1 spec/client/framing/io_frame_spec.rb
amq-client-0.8.0 spec/client/framing/io_frame_spec.rb