示例#1
0
 def test_frame_outbound(self) -> None:
     ext = wpext.Extension()
     rsv = fp.RsvBits(True, True, True)
     data = b""
     assert ext.frame_outbound(None, None, rsv, data, None) == (  # type: ignore
         rsv,
         data,
     )
示例#2
0
 def test_offer(self):
     ext = wpext.Extension()
     assert ext.offer() is None
示例#3
0
 def test_enabled(self):
     ext = wpext.Extension()
     assert not ext.enabled()
示例#4
0
 def test_frame_outbound(self):
     ext = wpext.Extension()
     rsv = fp.RsvBits(True, True, True)
     data = object()
     assert ext.frame_outbound(None, None, rsv, data, None) == (rsv, data)
示例#5
0
 def test_frame_inbound_complete(self):
     ext = wpext.Extension()
     assert ext.frame_inbound_complete(None, None) is None
示例#6
0
 def test_frame_inbound_payload_data(self):
     ext = wpext.Extension()
     data = object()
     assert ext.frame_inbound_payload_data(None, data) == data
示例#7
0
 def test_frame_inbound_header(self):
     ext = wpext.Extension()
     result = ext.frame_inbound_header(None, None, None, None)
     assert result == fp.RsvBits(False, False, False)
示例#8
0
 def test_finalize(self):
     ext = wpext.Extension()
     assert ext.finalize(None) is None
示例#9
0
 def test_accept(self):
     ext = wpext.Extension()
     assert ext.accept(None) is None
示例#10
0
 def test_frame_inbound_complete(self) -> None:
     ext = wpext.Extension()
     assert ext.frame_inbound_complete(None, None) is None  # type: ignore
示例#11
0
 def test_frame_inbound_payload_data(self) -> None:
     ext = wpext.Extension()
     data = b""
     assert ext.frame_inbound_payload_data(None, data) == data  # type: ignore
示例#12
0
 def test_finalize(self) -> None:
     ext = wpext.Extension()
     offer = "myext"
     ext.finalize(offer)
示例#13
0
 def test_accept(self) -> None:
     ext = wpext.Extension()
     offer = "myext"
     assert ext.accept(offer) is None
示例#14
0
 def test_finalize(self):
     ext = wpext.Extension()
     ext.finalize(None)
示例#15
0
 def test_frame_inbound_header(self) -> None:
     ext = wpext.Extension()
     result = ext.frame_inbound_header(None, None, None,
                                       None)  # type: ignore[arg-type]
     assert result == fp.RsvBits(False, False, False)