1 ROOT: tox-gh-actions won't override envlist because tox is not running in GitHub Actions
2 py$(PYV): remove tox env folder $(@D)/.tox/py$(PYV)
3 py$(PYV): commands[0]> python -m pytest --cov-report=xml --cov-report=term --cov=hpack
4 ============================= test session starts ==============================
5 platform sunos5 -- Python $(PYTHON_VERSION).X -- $(@D)/.tox/py$(PYV)/bin/python
6 cachedir: .tox/py$(PYV)/.pytest_cache
7 hypothesis profile 'default' -> database=DirectoryBasedExampleDatabase('$(@D)/.hypothesis/examples')
12 collecting ... collected 499 items
14 test/test_encode_decode.py::TestEncodingProperties::test_decode_either_succeeds_or_raises_error PASSED
15 test/test_encode_decode.py::TestEncodingProperties::test_decode_fails_for_invalid_prefixes PASSED
16 test/test_encode_decode.py::TestEncodingProperties::test_encode_decode_round_trips PASSED
17 test/test_encode_decode.py::TestEncodingProperties::test_encode_fails_for_invalid_prefixes PASSED
18 test/test_encode_decode.py::TestEncodingProperties::test_encode_fails_for_negative_integers PASSED
19 test/test_encode_decode.py::TestEncodingProperties::test_encode_positive_integer_always_valid PASSED
20 test/test_encode_decode.py::TestIntegerDecoding::test_decode_empty_string_fails PASSED
21 test/test_encode_decode.py::TestIntegerDecoding::test_decode_insufficient_data_fails PASSED
22 test/test_encode_decode.py::TestIntegerDecoding::test_decoding_10_with_5_bit_prefix PASSED
23 test/test_encode_decode.py::TestIntegerDecoding::test_encoding_1337_with_5_bit_prefix PASSED
24 test/test_encode_decode.py::TestIntegerDecoding::test_encoding_42_with_8_bit_prefix PASSED
25 test/test_encode_decode.py::TestIntegerEncoding::test_encoding_10_with_5_bit_prefix PASSED
26 test/test_encode_decode.py::TestIntegerEncoding::test_encoding_1337_with_5_bit_prefix PASSED
27 test/test_encode_decode.py::TestIntegerEncoding::test_encoding_42_with_8_bit_prefix PASSED
28 test/test_hpack.py::TestDictToIterable::test_ordering PASSED
29 test/test_hpack.py::TestDictToIterable::test_ordering_applies_to_encoding PASSED
30 test/test_hpack.py::TestHPACKDecoder::test_apache_trafficserver PASSED
31 test/test_hpack.py::TestHPACKDecoder::test_can_decode_multiple_header_table_size_changes PASSED
32 test/test_hpack.py::TestHPACKDecoder::test_header_table_size_change_above_maximum PASSED
33 test/test_hpack.py::TestHPACKDecoder::test_header_table_size_getter PASSED
34 test/test_hpack.py::TestHPACKDecoder::test_indexed_header_field PASSED
35 test/test_hpack.py::TestHPACKDecoder::test_indexed_never_indexed_emits_neverindexedheadertuple PASSED
36 test/test_hpack.py::TestHPACKDecoder::test_invalid_indexed_header PASSED
37 test/test_hpack.py::TestHPACKDecoder::test_invalid_indexed_literal PASSED
38 test/test_hpack.py::TestHPACKDecoder::test_literal_header_field_with_indexing PASSED
39 test/test_hpack.py::TestHPACKDecoder::test_literal_header_field_with_indexing_emits_headertuple PASSED
40 test/test_hpack.py::TestHPACKDecoder::test_literal_header_field_without_indexing PASSED
41 test/test_hpack.py::TestHPACKDecoder::test_literal_never_indexed_emits_neverindexedheadertuple PASSED
42 test/test_hpack.py::TestHPACKDecoder::test_max_header_list_size PASSED
43 test/test_hpack.py::TestHPACKDecoder::test_raw_decoding PASSED
44 test/test_hpack.py::TestHPACKDecoder::test_request_examples_with_huffman PASSED
45 test/test_hpack.py::TestHPACKDecoder::test_request_examples_without_huffman PASSED
46 test/test_hpack.py::TestHPACKDecoder::test_resizing_header_table PASSED
47 test/test_hpack.py::TestHPACKDecoder::test_table_size_last_rejected PASSED
48 test/test_hpack.py::TestHPACKDecoder::test_table_size_middle_rejected PASSED
49 test/test_hpack.py::TestHPACKDecoder::test_table_size_not_adjusting PASSED
50 test/test_hpack.py::TestHPACKDecoder::test_truncated_header_name PASSED
51 test/test_hpack.py::TestHPACKDecoder::test_truncated_header_value PASSED
52 test/test_hpack.py::TestHPACKDecoder::test_utf8_errors_raise_hpack_decoding_error PASSED
53 test/test_hpack.py::TestHPACKEncoder::test_evicting_header_table_objects PASSED
54 test/test_hpack.py::TestHPACKEncoder::test_header_table_size_getter PASSED
55 test/test_hpack.py::TestHPACKEncoder::test_headers_generator PASSED
56 test/test_hpack.py::TestHPACKEncoder::test_indexed_header_field PASSED
57 test/test_hpack.py::TestHPACKEncoder::test_indexed_header_field_from_static_table PASSED
58 test/test_hpack.py::TestHPACKEncoder::test_indexed_literal_header_field_with_indexing PASSED
59 test/test_hpack.py::TestHPACKEncoder::test_literal_header_field_with_indexing PASSED
60 test/test_hpack.py::TestHPACKEncoder::test_non_sensitive_headers_with_header_tuples PASSED
61 test/test_hpack.py::TestHPACKEncoder::test_request_examples_with_huffman PASSED
62 test/test_hpack.py::TestHPACKEncoder::test_request_examples_without_huffman PASSED
63 test/test_hpack.py::TestHPACKEncoder::test_resizing_header_table PASSED
64 test/test_hpack.py::TestHPACKEncoder::test_resizing_header_table_sends_context_update PASSED
65 test/test_hpack.py::TestHPACKEncoder::test_resizing_header_table_sends_multiple_updates PASSED
66 test/test_hpack.py::TestHPACKEncoder::test_resizing_header_table_to_same_size_ignored PASSED
67 test/test_hpack.py::TestHPACKEncoder::test_sensitive_headers PASSED
68 test/test_hpack.py::TestHPACKEncoder::test_sensitive_headers_with_header_tuples PASSED
69 test/test_hpack.py::TestHPACKEncoder::test_setting_table_size_to_the_same_does_nothing PASSED
70 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/go-hpack/story_00.json] PASSED
71 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/go-hpack/story_01.json] PASSED
72 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/go-hpack/story_02.json] PASSED
73 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/go-hpack/story_03.json] PASSED
74 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/go-hpack/story_04.json] PASSED
75 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/go-hpack/story_05.json] PASSED
76 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/go-hpack/story_06.json] PASSED
77 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/go-hpack/story_07.json] PASSED
78 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/go-hpack/story_08.json] PASSED
79 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/go-hpack/story_09.json] PASSED
80 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/go-hpack/story_10.json] PASSED
81 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/go-hpack/story_11.json] PASSED
82 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/go-hpack/story_12.json] PASSED
83 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/go-hpack/story_13.json] PASSED
84 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/go-hpack/story_14.json] PASSED
85 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/go-hpack/story_15.json] PASSED
86 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/go-hpack/story_16.json] PASSED
87 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/go-hpack/story_17.json] PASSED
88 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/go-hpack/story_18.json] PASSED
89 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/go-hpack/story_19.json] PASSED
90 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/go-hpack/story_20.json] PASSED
91 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/go-hpack/story_21.json] PASSED
92 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/go-hpack/story_22.json] PASSED
93 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/go-hpack/story_23.json] PASSED
94 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/go-hpack/story_24.json] PASSED
95 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/go-hpack/story_25.json] PASSED
96 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/go-hpack/story_26.json] PASSED
97 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/go-hpack/story_27.json] PASSED
98 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/go-hpack/story_28.json] PASSED
99 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/go-hpack/story_29.json] PASSED
100 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/go-hpack/story_30.json] PASSED
101 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/go-hpack/story_31.json] PASSED
102 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-linear-huffman/story_00.json] PASSED
103 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-linear-huffman/story_01.json] PASSED
104 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-linear-huffman/story_02.json] PASSED
105 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-linear-huffman/story_03.json] PASSED
106 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-linear-huffman/story_04.json] PASSED
107 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-linear-huffman/story_05.json] PASSED
108 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-linear-huffman/story_06.json] PASSED
109 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-linear-huffman/story_07.json] PASSED
110 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-linear-huffman/story_08.json] PASSED
111 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-linear-huffman/story_09.json] PASSED
112 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-linear-huffman/story_10.json] PASSED
113 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-linear-huffman/story_11.json] PASSED
114 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-linear-huffman/story_12.json] PASSED
115 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-linear-huffman/story_13.json] PASSED
116 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-linear-huffman/story_14.json] PASSED
117 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-linear-huffman/story_15.json] PASSED
118 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-linear-huffman/story_16.json] PASSED
119 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-linear-huffman/story_17.json] PASSED
120 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-linear-huffman/story_18.json] PASSED
121 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-linear-huffman/story_19.json] PASSED
122 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-linear-huffman/story_20.json] PASSED
123 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-linear-huffman/story_21.json] PASSED
124 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-linear-huffman/story_22.json] PASSED
125 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-linear-huffman/story_23.json] PASSED
126 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-linear-huffman/story_24.json] PASSED
127 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-linear-huffman/story_25.json] PASSED
128 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-linear-huffman/story_26.json] PASSED
129 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-linear-huffman/story_27.json] PASSED
130 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-linear-huffman/story_28.json] PASSED
131 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-linear-huffman/story_29.json] PASSED
132 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-linear-huffman/story_30.json] PASSED
133 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-linear-huffman/story_31.json] PASSED
134 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-linear/story_00.json] PASSED
135 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-linear/story_01.json] PASSED
136 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-linear/story_02.json] PASSED
137 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-linear/story_03.json] PASSED
138 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-linear/story_04.json] PASSED
139 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-linear/story_05.json] PASSED
140 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-linear/story_06.json] PASSED
141 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-linear/story_07.json] PASSED
142 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-linear/story_08.json] PASSED
143 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-linear/story_09.json] PASSED
144 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-linear/story_10.json] PASSED
145 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-linear/story_11.json] PASSED
146 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-linear/story_12.json] PASSED
147 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-linear/story_13.json] PASSED
148 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-linear/story_14.json] PASSED
149 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-linear/story_15.json] PASSED
150 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-linear/story_16.json] PASSED
151 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-linear/story_17.json] PASSED
152 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-linear/story_18.json] PASSED
153 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-linear/story_19.json] PASSED
154 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-linear/story_20.json] PASSED
155 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-linear/story_21.json] PASSED
156 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-linear/story_22.json] PASSED
157 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-linear/story_23.json] PASSED
158 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-linear/story_24.json] PASSED
159 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-linear/story_25.json] PASSED
160 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-linear/story_26.json] PASSED
161 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-linear/story_27.json] PASSED
162 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-linear/story_28.json] PASSED
163 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-linear/story_29.json] PASSED
164 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-linear/story_30.json] PASSED
165 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-linear/story_31.json] PASSED
166 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-naive-huffman/story_00.json] PASSED
167 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-naive-huffman/story_01.json] PASSED
168 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-naive-huffman/story_02.json] PASSED
169 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-naive-huffman/story_03.json] PASSED
170 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-naive-huffman/story_04.json] PASSED
171 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-naive-huffman/story_05.json] PASSED
172 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-naive-huffman/story_06.json] PASSED
173 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-naive-huffman/story_07.json] PASSED
174 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-naive-huffman/story_08.json] PASSED
175 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-naive-huffman/story_09.json] PASSED
176 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-naive-huffman/story_10.json] PASSED
177 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-naive-huffman/story_11.json] PASSED
178 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-naive-huffman/story_12.json] PASSED
179 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-naive-huffman/story_13.json] PASSED
180 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-naive-huffman/story_14.json] PASSED
181 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-naive-huffman/story_15.json] PASSED
182 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-naive-huffman/story_16.json] PASSED
183 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-naive-huffman/story_17.json] PASSED
184 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-naive-huffman/story_18.json] PASSED
185 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-naive-huffman/story_19.json] PASSED
186 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-naive-huffman/story_20.json] PASSED
187 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-naive-huffman/story_21.json] PASSED
188 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-naive-huffman/story_22.json] PASSED
189 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-naive-huffman/story_23.json] PASSED
190 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-naive-huffman/story_24.json] PASSED
191 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-naive-huffman/story_25.json] PASSED
192 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-naive-huffman/story_26.json] PASSED
193 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-naive-huffman/story_27.json] PASSED
194 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-naive-huffman/story_28.json] PASSED
195 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-naive-huffman/story_29.json] PASSED
196 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-naive-huffman/story_30.json] PASSED
197 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-naive-huffman/story_31.json] PASSED
198 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-naive/story_00.json] PASSED
199 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-naive/story_01.json] PASSED
200 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-naive/story_02.json] PASSED
201 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-naive/story_03.json] PASSED
202 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-naive/story_04.json] PASSED
203 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-naive/story_05.json] PASSED
204 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-naive/story_06.json] PASSED
205 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-naive/story_07.json] PASSED
206 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-naive/story_08.json] PASSED
207 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-naive/story_09.json] PASSED
208 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-naive/story_10.json] PASSED
209 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-naive/story_11.json] PASSED
210 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-naive/story_12.json] PASSED
211 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-naive/story_13.json] PASSED
212 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-naive/story_14.json] PASSED
213 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-naive/story_15.json] PASSED
214 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-naive/story_16.json] PASSED
215 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-naive/story_17.json] PASSED
216 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-naive/story_18.json] PASSED
217 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-naive/story_19.json] PASSED
218 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-naive/story_20.json] PASSED
219 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-naive/story_21.json] PASSED
220 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-naive/story_22.json] PASSED
221 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-naive/story_23.json] PASSED
222 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-naive/story_24.json] PASSED
223 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-naive/story_25.json] PASSED
224 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-naive/story_26.json] PASSED
225 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-naive/story_27.json] PASSED
226 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-naive/story_28.json] PASSED
227 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-naive/story_29.json] PASSED
228 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-naive/story_30.json] PASSED
229 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-naive/story_31.json] PASSED
230 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-static-huffman/story_00.json] PASSED
231 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-static-huffman/story_01.json] PASSED
232 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-static-huffman/story_02.json] PASSED
233 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-static-huffman/story_03.json] PASSED
234 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-static-huffman/story_04.json] PASSED
235 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-static-huffman/story_05.json] PASSED
236 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-static-huffman/story_06.json] PASSED
237 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-static-huffman/story_07.json] PASSED
238 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-static-huffman/story_08.json] PASSED
239 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-static-huffman/story_09.json] PASSED
240 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-static-huffman/story_10.json] PASSED
241 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-static-huffman/story_11.json] PASSED
242 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-static-huffman/story_12.json] PASSED
243 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-static-huffman/story_13.json] PASSED
244 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-static-huffman/story_14.json] PASSED
245 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-static-huffman/story_15.json] PASSED
246 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-static-huffman/story_16.json] PASSED
247 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-static-huffman/story_17.json] PASSED
248 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-static-huffman/story_18.json] PASSED
249 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-static-huffman/story_19.json] PASSED
250 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-static-huffman/story_20.json] PASSED
251 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-static-huffman/story_21.json] PASSED
252 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-static-huffman/story_22.json] PASSED
253 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-static-huffman/story_23.json] PASSED
254 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-static-huffman/story_24.json] PASSED
255 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-static-huffman/story_25.json] PASSED
256 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-static-huffman/story_26.json] PASSED
257 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-static-huffman/story_27.json] PASSED
258 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-static-huffman/story_28.json] PASSED
259 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-static-huffman/story_29.json] PASSED
260 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-static-huffman/story_30.json] PASSED
261 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-static-huffman/story_31.json] PASSED
262 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-static/story_00.json] PASSED
263 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-static/story_01.json] PASSED
264 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-static/story_02.json] PASSED
265 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-static/story_03.json] PASSED
266 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-static/story_04.json] PASSED
267 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-static/story_05.json] PASSED
268 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-static/story_06.json] PASSED
269 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-static/story_07.json] PASSED
270 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-static/story_08.json] PASSED
271 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-static/story_09.json] PASSED
272 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-static/story_10.json] PASSED
273 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-static/story_11.json] PASSED
274 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-static/story_12.json] PASSED
275 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-static/story_13.json] PASSED
276 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-static/story_14.json] PASSED
277 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-static/story_15.json] PASSED
278 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-static/story_16.json] PASSED
279 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-static/story_17.json] PASSED
280 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-static/story_18.json] PASSED
281 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-static/story_19.json] PASSED
282 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-static/story_20.json] PASSED
283 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-static/story_21.json] PASSED
284 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-static/story_22.json] PASSED
285 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-static/story_23.json] PASSED
286 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-static/story_24.json] PASSED
287 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-static/story_25.json] PASSED
288 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-static/story_26.json] PASSED
289 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-static/story_27.json] PASSED
290 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-static/story_28.json] PASSED
291 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-static/story_29.json] PASSED
292 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-static/story_30.json] PASSED
293 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/haskell-http2-static/story_31.json] PASSED
294 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/nghttp2-16384-4096/story_00.json] PASSED
295 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/nghttp2-16384-4096/story_01.json] PASSED
296 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/nghttp2-16384-4096/story_02.json] PASSED
297 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/nghttp2-16384-4096/story_03.json] PASSED
298 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/nghttp2-16384-4096/story_04.json] PASSED
299 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/nghttp2-16384-4096/story_05.json] PASSED
300 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/nghttp2-16384-4096/story_06.json] PASSED
301 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/nghttp2-16384-4096/story_07.json] PASSED
302 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/nghttp2-16384-4096/story_08.json] PASSED
303 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/nghttp2-16384-4096/story_09.json] PASSED
304 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/nghttp2-16384-4096/story_10.json] PASSED
305 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/nghttp2-16384-4096/story_11.json] PASSED
306 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/nghttp2-16384-4096/story_12.json] PASSED
307 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/nghttp2-16384-4096/story_13.json] PASSED
308 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/nghttp2-16384-4096/story_14.json] PASSED
309 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/nghttp2-16384-4096/story_15.json] PASSED
310 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/nghttp2-16384-4096/story_16.json] PASSED
311 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/nghttp2-16384-4096/story_17.json] PASSED
312 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/nghttp2-16384-4096/story_18.json] PASSED
313 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/nghttp2-16384-4096/story_19.json] PASSED
314 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/nghttp2-16384-4096/story_20.json] PASSED
315 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/nghttp2-16384-4096/story_21.json] PASSED
316 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/nghttp2-16384-4096/story_22.json] PASSED
317 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/nghttp2-16384-4096/story_23.json] PASSED
318 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/nghttp2-16384-4096/story_24.json] PASSED
319 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/nghttp2-16384-4096/story_25.json] PASSED
320 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/nghttp2-16384-4096/story_26.json] PASSED
321 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/nghttp2-16384-4096/story_27.json] PASSED
322 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/nghttp2-16384-4096/story_28.json] PASSED
323 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/nghttp2-16384-4096/story_29.json] PASSED
324 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/nghttp2-16384-4096/story_30.json] PASSED
325 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/nghttp2-change-table-size/story_00.json] PASSED
326 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/nghttp2-change-table-size/story_01.json] PASSED
327 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/nghttp2-change-table-size/story_02.json] PASSED
328 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/nghttp2-change-table-size/story_03.json] PASSED
329 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/nghttp2-change-table-size/story_04.json] PASSED
330 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/nghttp2-change-table-size/story_05.json] PASSED
331 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/nghttp2-change-table-size/story_06.json] PASSED
332 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/nghttp2-change-table-size/story_07.json] PASSED
333 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/nghttp2-change-table-size/story_08.json] PASSED
334 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/nghttp2-change-table-size/story_09.json] PASSED
335 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/nghttp2-change-table-size/story_10.json] PASSED
336 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/nghttp2-change-table-size/story_11.json] PASSED
337 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/nghttp2-change-table-size/story_12.json] PASSED
338 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/nghttp2-change-table-size/story_13.json] PASSED
339 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/nghttp2-change-table-size/story_14.json] PASSED
340 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/nghttp2-change-table-size/story_15.json] PASSED
341 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/nghttp2-change-table-size/story_16.json] PASSED
342 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/nghttp2-change-table-size/story_17.json] PASSED
343 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/nghttp2-change-table-size/story_18.json] PASSED
344 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/nghttp2-change-table-size/story_19.json] PASSED
345 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/nghttp2-change-table-size/story_20.json] PASSED
346 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/nghttp2-change-table-size/story_21.json] PASSED
347 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/nghttp2-change-table-size/story_22.json] PASSED
348 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/nghttp2-change-table-size/story_23.json] PASSED
349 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/nghttp2-change-table-size/story_24.json] PASSED
350 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/nghttp2-change-table-size/story_25.json] PASSED
351 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/nghttp2-change-table-size/story_26.json] PASSED
352 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/nghttp2-change-table-size/story_27.json] PASSED
353 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/nghttp2-change-table-size/story_28.json] PASSED
354 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/nghttp2-change-table-size/story_29.json] PASSED
355 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/nghttp2-change-table-size/story_30.json] PASSED
356 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/nghttp2/story_00.json] PASSED
357 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/nghttp2/story_01.json] PASSED
358 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/nghttp2/story_02.json] PASSED
359 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/nghttp2/story_03.json] PASSED
360 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/nghttp2/story_04.json] PASSED
361 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/nghttp2/story_05.json] PASSED
362 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/nghttp2/story_06.json] PASSED
363 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/nghttp2/story_07.json] PASSED
364 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/nghttp2/story_08.json] PASSED
365 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/nghttp2/story_09.json] PASSED
366 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/nghttp2/story_10.json] PASSED
367 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/nghttp2/story_11.json] PASSED
368 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/nghttp2/story_12.json] PASSED
369 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/nghttp2/story_13.json] PASSED
370 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/nghttp2/story_14.json] PASSED
371 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/nghttp2/story_15.json] PASSED
372 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/nghttp2/story_16.json] PASSED
373 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/nghttp2/story_17.json] PASSED
374 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/nghttp2/story_18.json] PASSED
375 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/nghttp2/story_19.json] PASSED
376 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/nghttp2/story_20.json] PASSED
377 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/nghttp2/story_21.json] PASSED
378 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/nghttp2/story_22.json] PASSED
379 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/nghttp2/story_23.json] PASSED
380 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/nghttp2/story_24.json] PASSED
381 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/nghttp2/story_25.json] PASSED
382 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/nghttp2/story_26.json] PASSED
383 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/nghttp2/story_27.json] PASSED
384 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/nghttp2/story_28.json] PASSED
385 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/nghttp2/story_29.json] PASSED
386 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/nghttp2/story_30.json] PASSED
387 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/nghttp2/story_31.json] PASSED
388 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/node-http2-hpack/story_00.json] PASSED
389 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/node-http2-hpack/story_01.json] PASSED
390 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/node-http2-hpack/story_02.json] PASSED
391 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/node-http2-hpack/story_03.json] PASSED
392 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/node-http2-hpack/story_04.json] PASSED
393 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/node-http2-hpack/story_05.json] PASSED
394 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/node-http2-hpack/story_06.json] PASSED
395 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/node-http2-hpack/story_07.json] PASSED
396 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/node-http2-hpack/story_08.json] PASSED
397 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/node-http2-hpack/story_09.json] PASSED
398 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/node-http2-hpack/story_10.json] PASSED
399 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/node-http2-hpack/story_11.json] PASSED
400 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/node-http2-hpack/story_12.json] PASSED
401 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/node-http2-hpack/story_13.json] PASSED
402 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/node-http2-hpack/story_14.json] PASSED
403 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/node-http2-hpack/story_15.json] PASSED
404 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/node-http2-hpack/story_16.json] PASSED
405 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/node-http2-hpack/story_17.json] PASSED
406 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/node-http2-hpack/story_18.json] PASSED
407 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/node-http2-hpack/story_19.json] PASSED
408 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/node-http2-hpack/story_20.json] PASSED
409 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/node-http2-hpack/story_21.json] PASSED
410 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/node-http2-hpack/story_22.json] PASSED
411 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/node-http2-hpack/story_23.json] PASSED
412 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/node-http2-hpack/story_24.json] PASSED
413 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/node-http2-hpack/story_25.json] PASSED
414 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/node-http2-hpack/story_26.json] PASSED
415 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/node-http2-hpack/story_27.json] PASSED
416 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/node-http2-hpack/story_28.json] PASSED
417 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/node-http2-hpack/story_29.json] PASSED
418 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/node-http2-hpack/story_30.json] PASSED
419 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_decode_a_story[test/test_fixtures/node-http2-hpack/story_31.json] PASSED
420 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_encode_a_story_no_huffman[test/test_fixtures/raw-data/story_00.json] PASSED
421 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_encode_a_story_no_huffman[test/test_fixtures/raw-data/story_01.json] PASSED
422 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_encode_a_story_no_huffman[test/test_fixtures/raw-data/story_02.json] PASSED
423 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_encode_a_story_no_huffman[test/test_fixtures/raw-data/story_03.json] PASSED
424 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_encode_a_story_no_huffman[test/test_fixtures/raw-data/story_04.json] PASSED
425 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_encode_a_story_no_huffman[test/test_fixtures/raw-data/story_05.json] PASSED
426 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_encode_a_story_no_huffman[test/test_fixtures/raw-data/story_06.json] PASSED
427 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_encode_a_story_no_huffman[test/test_fixtures/raw-data/story_07.json] PASSED
428 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_encode_a_story_no_huffman[test/test_fixtures/raw-data/story_08.json] PASSED
429 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_encode_a_story_no_huffman[test/test_fixtures/raw-data/story_09.json] PASSED
430 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_encode_a_story_no_huffman[test/test_fixtures/raw-data/story_10.json] PASSED
431 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_encode_a_story_no_huffman[test/test_fixtures/raw-data/story_11.json] PASSED
432 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_encode_a_story_no_huffman[test/test_fixtures/raw-data/story_12.json] PASSED
433 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_encode_a_story_no_huffman[test/test_fixtures/raw-data/story_13.json] PASSED
434 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_encode_a_story_no_huffman[test/test_fixtures/raw-data/story_14.json] PASSED
435 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_encode_a_story_no_huffman[test/test_fixtures/raw-data/story_15.json] PASSED
436 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_encode_a_story_no_huffman[test/test_fixtures/raw-data/story_16.json] PASSED
437 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_encode_a_story_no_huffman[test/test_fixtures/raw-data/story_17.json] PASSED
438 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_encode_a_story_no_huffman[test/test_fixtures/raw-data/story_18.json] PASSED
439 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_encode_a_story_no_huffman[test/test_fixtures/raw-data/story_19.json] PASSED
440 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_encode_a_story_no_huffman[test/test_fixtures/raw-data/story_20.json] PASSED
441 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_encode_a_story_no_huffman[test/test_fixtures/raw-data/story_21.json] PASSED
442 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_encode_a_story_no_huffman[test/test_fixtures/raw-data/story_22.json] PASSED
443 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_encode_a_story_no_huffman[test/test_fixtures/raw-data/story_23.json] PASSED
444 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_encode_a_story_no_huffman[test/test_fixtures/raw-data/story_24.json] PASSED
445 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_encode_a_story_no_huffman[test/test_fixtures/raw-data/story_25.json] PASSED
446 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_encode_a_story_no_huffman[test/test_fixtures/raw-data/story_26.json] PASSED
447 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_encode_a_story_no_huffman[test/test_fixtures/raw-data/story_27.json] PASSED
448 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_encode_a_story_no_huffman[test/test_fixtures/raw-data/story_28.json] PASSED
449 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_encode_a_story_no_huffman[test/test_fixtures/raw-data/story_29.json] PASSED
450 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_encode_a_story_no_huffman[test/test_fixtures/raw-data/story_30.json] PASSED
451 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_encode_a_story_no_huffman[test/test_fixtures/raw-data/story_31.json] PASSED
452 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_encode_a_story_with_huffman[test/test_fixtures/raw-data/story_00.json] PASSED
453 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_encode_a_story_with_huffman[test/test_fixtures/raw-data/story_01.json] PASSED
454 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_encode_a_story_with_huffman[test/test_fixtures/raw-data/story_02.json] PASSED
455 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_encode_a_story_with_huffman[test/test_fixtures/raw-data/story_03.json] PASSED
456 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_encode_a_story_with_huffman[test/test_fixtures/raw-data/story_04.json] PASSED
457 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_encode_a_story_with_huffman[test/test_fixtures/raw-data/story_05.json] PASSED
458 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_encode_a_story_with_huffman[test/test_fixtures/raw-data/story_06.json] PASSED
459 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_encode_a_story_with_huffman[test/test_fixtures/raw-data/story_07.json] PASSED
460 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_encode_a_story_with_huffman[test/test_fixtures/raw-data/story_08.json] PASSED
461 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_encode_a_story_with_huffman[test/test_fixtures/raw-data/story_09.json] PASSED
462 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_encode_a_story_with_huffman[test/test_fixtures/raw-data/story_10.json] PASSED
463 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_encode_a_story_with_huffman[test/test_fixtures/raw-data/story_11.json] PASSED
464 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_encode_a_story_with_huffman[test/test_fixtures/raw-data/story_12.json] PASSED
465 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_encode_a_story_with_huffman[test/test_fixtures/raw-data/story_13.json] PASSED
466 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_encode_a_story_with_huffman[test/test_fixtures/raw-data/story_14.json] PASSED
467 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_encode_a_story_with_huffman[test/test_fixtures/raw-data/story_15.json] PASSED
468 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_encode_a_story_with_huffman[test/test_fixtures/raw-data/story_16.json] PASSED
469 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_encode_a_story_with_huffman[test/test_fixtures/raw-data/story_17.json] PASSED
470 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_encode_a_story_with_huffman[test/test_fixtures/raw-data/story_18.json] PASSED
471 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_encode_a_story_with_huffman[test/test_fixtures/raw-data/story_19.json] PASSED
472 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_encode_a_story_with_huffman[test/test_fixtures/raw-data/story_20.json] PASSED
473 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_encode_a_story_with_huffman[test/test_fixtures/raw-data/story_21.json] PASSED
474 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_encode_a_story_with_huffman[test/test_fixtures/raw-data/story_22.json] PASSED
475 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_encode_a_story_with_huffman[test/test_fixtures/raw-data/story_23.json] PASSED
476 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_encode_a_story_with_huffman[test/test_fixtures/raw-data/story_24.json] PASSED
477 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_encode_a_story_with_huffman[test/test_fixtures/raw-data/story_25.json] PASSED
478 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_encode_a_story_with_huffman[test/test_fixtures/raw-data/story_26.json] PASSED
479 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_encode_a_story_with_huffman[test/test_fixtures/raw-data/story_27.json] PASSED
480 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_encode_a_story_with_huffman[test/test_fixtures/raw-data/story_28.json] PASSED
481 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_encode_a_story_with_huffman[test/test_fixtures/raw-data/story_29.json] PASSED
482 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_encode_a_story_with_huffman[test/test_fixtures/raw-data/story_30.json] PASSED
483 test/test_hpack_integration.py::TestHPACKDecoderIntegration::test_can_encode_a_story_with_huffman[test/test_fixtures/raw-data/story_31.json] PASSED
484 test/test_huffman.py::TestHuffman::test_request_huffman_decoder PASSED
485 test/test_huffman.py::TestHuffman::test_request_huffman_encode PASSED
486 test/test_huffman.py::TestHuffmanDecoder::test_huffman_decoder_properly_handles_all_bytestrings PASSED
487 test/test_struct.py::TestHeaderTuple::test_equal_for_different_indexes PASSED
488 test/test_struct.py::TestHeaderTuple::test_equal_to_self[HeaderTuple] PASSED
489 test/test_struct.py::TestHeaderTuple::test_equal_to_self[NeverIndexedHeaderTuple] PASSED
490 test/test_struct.py::TestHeaderTuple::test_equal_to_tuples[HeaderTuple] PASSED
491 test/test_struct.py::TestHeaderTuple::test_equal_to_tuples[NeverIndexedHeaderTuple] PASSED
492 test/test_struct.py::TestHeaderTuple::test_header_tuples_are_indexable PASSED
493 test/test_struct.py::TestHeaderTuple::test_is_tuple PASSED
494 test/test_struct.py::TestHeaderTuple::test_never_indexed_tuples_are_not_indexable PASSED
495 test/test_struct.py::TestHeaderTuple::test_unpacks_properly PASSED
496 test/test_table.py::TestHeaderTable::test_add_to_large PASSED
497 test/test_table.py::TestHeaderTable::test_get_by_index_dynamic_table PASSED
498 test/test_table.py::TestHeaderTable::test_get_by_index_out_of_range PASSED
499 test/test_table.py::TestHeaderTable::test_get_by_index_static_table PASSED
500 test/test_table.py::TestHeaderTable::test_get_by_index_zero_index PASSED
501 test/test_table.py::TestHeaderTable::test_maxsize_prop_getter PASSED
502 test/test_table.py::TestHeaderTable::test_maxsize_prop_setter PASSED
503 test/test_table.py::TestHeaderTable::test_repr PASSED
504 test/test_table.py::TestHeaderTable::test_search_in_dynamic_full PASSED
505 test/test_table.py::TestHeaderTable::test_search_in_dynamic_partial PASSED
506 test/test_table.py::TestHeaderTable::test_search_in_static_full PASSED
507 test/test_table.py::TestHeaderTable::test_search_in_static_partial PASSED
508 test/test_table.py::TestHeaderTable::test_search_no_match PASSED
509 test/test_table.py::TestHeaderTable::test_shrink_maxsize PASSED
510 test/test_table.py::TestHeaderTable::test_shrink_maxsize_is_zero PASSED
511 test/test_table.py::TestHeaderTable::test_size PASSED
512 test/test_table.py::TestPackageFunctions::test_table_entry_size PASSED
514 =============================== warnings summary ===============================
516 $(@D)/test/conftest.py:13: NonInteractiveExampleWarning: The `.example()` method is good for exploring strategies, but should only be used interactively. We recommend using `@given` for tests - it performs better, saves and replays failures to avoid flakiness, and reports minimal examples. (strategy: text())
519 -- Docs: https://docs.pytest.org/en/stable/how-to/capture-warnings.html
521 Required test coverage of 100.0% reached. Total coverage: 100.00%
522 ======== 499 passed, 1 warning ========