Esempio n. 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,
     )
Esempio n. 2
0
 def test_offer(self):
     ext = wpext.Extension()
     assert ext.offer() is None
Esempio n. 3
0
 def test_enabled(self):
     ext = wpext.Extension()
     assert not ext.enabled()
Esempio n. 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)
Esempio n. 5
0
 def test_frame_inbound_complete(self):
     ext = wpext.Extension()
     assert ext.frame_inbound_complete(None, None) is None
Esempio n. 6
0
 def test_frame_inbound_payload_data(self):
     ext = wpext.Extension()
     data = object()
     assert ext.frame_inbound_payload_data(None, data) == data
Esempio n. 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)
Esempio n. 8
0
 def test_finalize(self):
     ext = wpext.Extension()
     assert ext.finalize(None) is None
Esempio n. 9
0
 def test_accept(self):
     ext = wpext.Extension()
     assert ext.accept(None) is None
Esempio n. 10
0
 def test_frame_inbound_complete(self) -> None:
     ext = wpext.Extension()
     assert ext.frame_inbound_complete(None, None) is None  # type: ignore
Esempio n. 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
Esempio n. 12
0
 def test_finalize(self) -> None:
     ext = wpext.Extension()
     offer = "myext"
     ext.finalize(offer)
Esempio n. 13
0
 def test_accept(self) -> None:
     ext = wpext.Extension()
     offer = "myext"
     assert ext.accept(offer) is None
Esempio n. 14
0
 def test_finalize(self):
     ext = wpext.Extension()
     ext.finalize(None)
Esempio n. 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)