本文整理汇总了Python中hpack.hpack.Decoder.max_allowed_table_size方法的典型用法代码示例。如果您正苦于以下问题:Python Decoder.max_allowed_table_size方法的具体用法?Python Decoder.max_allowed_table_size怎么用?Python Decoder.max_allowed_table_size使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类hpack.hpack.Decoder
的用法示例。
在下文中一共展示了Decoder.max_allowed_table_size方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_table_size_not_adjusting
# 需要导入模块: from hpack.hpack import Decoder [as 别名]
# 或者: from hpack.hpack.Decoder import max_allowed_table_size [as 别名]
def test_table_size_not_adjusting(self):
"""
If the header table size is shrunk, and then the remote peer doesn't
join in the shrinking, then an error is raised.
"""
d = Decoder()
d.max_allowed_table_size = 128
data = b'\x82\x87\x84A\x8a\x08\x9d\\\x0b\x81p\xdcy\xa6\x99'
with pytest.raises(InvalidTableSizeError):
d.decode(data)
示例2: test_header_table_size_change_above_maximum
# 需要导入模块: from hpack.hpack import Decoder [as 别名]
# 或者: from hpack.hpack.Decoder import max_allowed_table_size [as 别名]
def test_header_table_size_change_above_maximum(self):
"""
If a header table size change is received that exceeds the maximum
allowed table size, it is rejected.
"""
d = Decoder()
d.max_allowed_table_size = 127
data = b'?a\x82\x87\x84A\x8a\x08\x9d\\\x0b\x81p\xdcy\xa6\x99'
with pytest.raises(InvalidTableSizeError):
d.decode(data)