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 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107
|
# frozen_string_literal: true
# Copyright, 2018, by Samuel G. D. Williams. <http://www.codeotaku.com>
# Copyrigh, 2013, by Ilya Grigorik.
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
require 'protocol/hpack/compressor'
require 'protocol/hpack/decompressor'
require 'json'
RSpec.describe Protocol::HPACK::Decompressor do
folders = %w(
go-hpack
haskell-http2-diff
haskell-http2-diff-huffman
haskell-http2-linear
haskell-http2-linear-huffman
haskell-http2-naive
haskell-http2-naive-huffman
haskell-http2-static
haskell-http2-static-huffman
nghttp2
nghttp2-16384-4096
nghttp2-change-table-size
node-http2-hpack
)
let(:buffer) {String.new.b}
folders.each do |folder|
root = File.expand_path("fixtures/#{folder}", __dir__)
context folder.to_s, if: File.directory?(root) do
Dir.glob(File.join(root, "*.json")) do |path|
it "should decode #{File.basename(path)}" do
story = JSON.parse(File.read(path))
cases = story['cases']
table_size = cases[0]['header_table_size'] || 4096
context = Protocol::HPACK::Context.new(table_size: table_size)
decompressor = Protocol::HPACK::Decompressor.new(buffer, context)
cases.each do |c|
buffer << [c['wire']].pack('H*').force_encoding(Encoding::BINARY)
headers = c['headers'].flat_map(&:to_a)
emitted = decompressor.decode
expect(emitted).to eq headers
end
end
end
end
end
end if ENV['COVERAGE'].nil?
RSpec.describe Protocol::HPACK::Compressor do
root = File.expand_path('fixtures/raw-data', __dir__)
let(:buffer) {String.new.b}
Protocol::HPACK::MODES.each do |mode, encoding_options|
[4096, 512].each do |table_size|
options = {table_size: table_size}
options.update(encoding_options)
context "with #{mode} mode and table_size #{table_size}" do
Dir.glob(File.join(root, "*.json")) do |path|
it "should encode #{File.basename(path)}" do
story = JSON.parse(File.read(path))
cases = story['cases']
context = Protocol::HPACK::Context.new(**options)
compressor = Protocol::HPACK::Compressor.new(buffer, context)
decompressor = Protocol::HPACK::Decompressor.new(buffer)
cases.each do |c|
headers = c['headers'].flat_map(&:to_a)
compressor.encode(headers)
decoded = decompressor.decode
expect(decoded).to eq headers
end
end
end
end
end
end
end if ENV['COVERAGE'].nil?
|