当前位置: 首页>>代码示例>>Python>>正文


Python Decoder.max_allowed_table_size方法代码示例

本文整理汇总了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)
开发者ID:Coder206,项目名称:servo,代码行数:13,代码来源:test_hpack.py

示例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)
开发者ID:Coder206,项目名称:servo,代码行数:13,代码来源:test_hpack.py


注:本文中的hpack.hpack.Decoder.max_allowed_table_size方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。