1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
|
require 'helper'
describe EventMachine::HttpDecoders::GZip do
let(:compressed) {
compressed = ["1f8b08089668a6500003686900cbc8e402007a7a6fed03000000"].pack("H*")
}
it "should extract the stream of a vanilla gzip" do
header = EventMachine::HttpDecoders::GZipHeader.new
stream = header.extract_stream(compressed)
stream.unpack("H*")[0].should eq("cbc8e402007a7a6fed03000000")
end
it "should decompress a vanilla gzip" do
decompressed = ""
gz = EventMachine::HttpDecoders::GZip.new do |data|
decompressed << data
end
gz << compressed
gz.finalize!
decompressed.should eq("hi\n")
end
it "should decompress a vanilla gzip file byte by byte" do
decompressed = ""
gz = EventMachine::HttpDecoders::GZip.new do |data|
decompressed << data
end
compressed.each_char do |byte|
gz << byte
end
gz.finalize!
decompressed.should eq("hi\n")
end
it "should decompress a large file" do
decompressed = ""
gz = EventMachine::HttpDecoders::GZip.new do |data|
decompressed << data
end
gz << File.read(File.dirname(__FILE__) + "/fixtures/gzip-sample.gz")
gz.finalize!
decompressed.size.should eq(32907)
end
it "should fail with a DecoderError if not a gzip file" do
not_a_gzip = ["1f8c08089668a650000"].pack("H*")
header = EventMachine::HttpDecoders::GZipHeader.new
lambda {
header.extract_stream(not_a_gzip)
}.should raise_exception(EventMachine::HttpDecoders::DecoderError)
end
end
|