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