1900
|
1 # Stubs for autobahn.websocket.test.test_websocket (Python 3)
|
|
2 #
|
|
3 # NOTE: This dynamically typed stub was automatically generated by stubgen.
|
|
4
|
|
5 from twisted.trial import unittest
|
|
6 from typing import Any
|
|
7
|
|
8 def create_client_frame(b64patch: Any, **kwargs: Any): ...
|
|
9
|
|
10 mock_handshake_client: bytes
|
|
11 mock_handshake_server: bytes
|
|
12
|
|
13 class TestDeflate(unittest.TestCase):
|
|
14 def test_max_size(self) -> None: ...
|
|
15 def test_no_max_size(self) -> None: ...
|
|
16
|
|
17 class TestClient(unittest.TestCase):
|
|
18 factory: Any = ...
|
|
19 proto: Any = ...
|
|
20 transport: Any = ...
|
|
21 def setUp(self) -> None: ...
|
|
22 def tearDown(self) -> None: ...
|
|
23 def test_missing_reason_raw(self) -> None: ...
|
|
24 def test_unclean_timeout_client(self) -> None: ...
|
|
25
|
|
26 class TestPing(unittest.TestCase):
|
|
27 factory: Any = ...
|
|
28 proto: Any = ...
|
|
29 transport: Any = ...
|
|
30 def setUp(self) -> None: ...
|
|
31 def tearDown(self) -> None: ...
|
|
32 def test_unclean_timeout(self) -> None: ...
|
|
33 def test_auto_pingpong_timeout(self) -> None: ...
|
|
34 def test_auto_ping_got_pong(self) -> None: ...
|