|
|
@ -2,7 +2,6 @@ from functools import wraps |
|
|
|
import threading |
|
|
|
import time |
|
|
|
from unittest import mock |
|
|
|
import unittest |
|
|
|
import pytest |
|
|
|
try: |
|
|
|
from engineio.async_socket import AsyncSocket as EngineIOSocket |
|
|
@ -38,13 +37,13 @@ def with_instrumented_server(auth=False, **ikwargs): |
|
|
|
pass |
|
|
|
|
|
|
|
async def shutdown(): |
|
|
|
await instrumented_server.shutdown() |
|
|
|
await self.isvr.shutdown() |
|
|
|
await sio.shutdown() |
|
|
|
|
|
|
|
if 'server_stats_interval' not in ikwargs: |
|
|
|
ikwargs['server_stats_interval'] = 0.25 |
|
|
|
|
|
|
|
instrumented_server = sio.instrument(auth=auth, **ikwargs) |
|
|
|
self.isvr = sio.instrument(auth=auth, **ikwargs) |
|
|
|
server = SocketIOWebServer(sio, on_shutdown=shutdown) |
|
|
|
server.start() |
|
|
|
|
|
|
@ -56,10 +55,11 @@ def with_instrumented_server(auth=False, **ikwargs): |
|
|
|
EngineIOSocket.schedule_ping = mock.MagicMock() |
|
|
|
|
|
|
|
try: |
|
|
|
ret = f(self, instrumented_server, *args, **kwargs) |
|
|
|
ret = f(self, *args, **kwargs) |
|
|
|
finally: |
|
|
|
server.stop() |
|
|
|
instrumented_server.uninstrument() |
|
|
|
self.isvr.uninstrument() |
|
|
|
self.isvr = None |
|
|
|
|
|
|
|
EngineIOSocket.schedule_ping = original_schedule_ping |
|
|
|
|
|
|
@ -80,12 +80,12 @@ async def _async_custom_auth(auth): |
|
|
|
return auth == {'foo': 'bar'} |
|
|
|
|
|
|
|
|
|
|
|
class TestAsyncAdmin(unittest.TestCase): |
|
|
|
def setUp(self): |
|
|
|
class TestAsyncAdmin: |
|
|
|
def setup_method(self): |
|
|
|
print('threads at start:', threading.enumerate()) |
|
|
|
self.thread_count = threading.active_count() |
|
|
|
|
|
|
|
def tearDown(self): |
|
|
|
def teardown_method(self): |
|
|
|
print('threads at end:', threading.enumerate()) |
|
|
|
assert self.thread_count == threading.active_count() |
|
|
|
|
|
|
@ -107,7 +107,7 @@ class TestAsyncAdmin(unittest.TestCase): |
|
|
|
sio.instrument() |
|
|
|
|
|
|
|
@with_instrumented_server(auth=False) |
|
|
|
def test_admin_connect_with_no_auth(self, isvr): |
|
|
|
def test_admin_connect_with_no_auth(self): |
|
|
|
with socketio.SimpleClient() as admin_client: |
|
|
|
admin_client.connect('http://localhost:8900', namespace='/admin') |
|
|
|
with socketio.SimpleClient() as admin_client: |
|
|
@ -115,7 +115,7 @@ class TestAsyncAdmin(unittest.TestCase): |
|
|
|
auth={'foo': 'bar'}) |
|
|
|
|
|
|
|
@with_instrumented_server(auth={'foo': 'bar'}) |
|
|
|
def test_admin_connect_with_dict_auth(self, isvr): |
|
|
|
def test_admin_connect_with_dict_auth(self): |
|
|
|
with socketio.SimpleClient() as admin_client: |
|
|
|
admin_client.connect('http://localhost:8900', namespace='/admin', |
|
|
|
auth={'foo': 'bar'}) |
|
|
@ -131,7 +131,7 @@ class TestAsyncAdmin(unittest.TestCase): |
|
|
|
|
|
|
|
@with_instrumented_server(auth=[{'foo': 'bar'}, |
|
|
|
{'u': 'admin', 'p': 'secret'}]) |
|
|
|
def test_admin_connect_with_list_auth(self, isvr): |
|
|
|
def test_admin_connect_with_list_auth(self): |
|
|
|
with socketio.SimpleClient() as admin_client: |
|
|
|
admin_client.connect('http://localhost:8900', namespace='/admin', |
|
|
|
auth={'foo': 'bar'}) |
|
|
@ -148,7 +148,7 @@ class TestAsyncAdmin(unittest.TestCase): |
|
|
|
namespace='/admin') |
|
|
|
|
|
|
|
@with_instrumented_server(auth=_custom_auth) |
|
|
|
def test_admin_connect_with_function_auth(self, isvr): |
|
|
|
def test_admin_connect_with_function_auth(self): |
|
|
|
with socketio.SimpleClient() as admin_client: |
|
|
|
admin_client.connect('http://localhost:8900', namespace='/admin', |
|
|
|
auth={'foo': 'bar'}) |
|
|
@ -162,7 +162,7 @@ class TestAsyncAdmin(unittest.TestCase): |
|
|
|
namespace='/admin') |
|
|
|
|
|
|
|
@with_instrumented_server(auth=_async_custom_auth) |
|
|
|
def test_admin_connect_with_async_function_auth(self, isvr): |
|
|
|
def test_admin_connect_with_async_function_auth(self): |
|
|
|
with socketio.SimpleClient() as admin_client: |
|
|
|
admin_client.connect('http://localhost:8900', namespace='/admin', |
|
|
|
auth={'foo': 'bar'}) |
|
|
@ -176,7 +176,7 @@ class TestAsyncAdmin(unittest.TestCase): |
|
|
|
namespace='/admin') |
|
|
|
|
|
|
|
@with_instrumented_server() |
|
|
|
def test_admin_connect_only_admin(self, isvr): |
|
|
|
def test_admin_connect_only_admin(self): |
|
|
|
with socketio.SimpleClient() as admin_client: |
|
|
|
admin_client.connect('http://localhost:8900', namespace='/admin') |
|
|
|
sid = admin_client.sid |
|
|
@ -201,7 +201,7 @@ class TestAsyncAdmin(unittest.TestCase): |
|
|
|
events['server_stats']['namespaces'] |
|
|
|
|
|
|
|
@with_instrumented_server() |
|
|
|
def test_admin_connect_with_others(self, isvr): |
|
|
|
def test_admin_connect_with_others(self): |
|
|
|
with socketio.SimpleClient() as client1, \ |
|
|
|
socketio.SimpleClient() as client2, \ |
|
|
|
socketio.SimpleClient() as client3, \ |
|
|
@ -210,12 +210,12 @@ class TestAsyncAdmin(unittest.TestCase): |
|
|
|
client1.emit('enter_room', 'room') |
|
|
|
sid1 = client1.sid |
|
|
|
|
|
|
|
saved_check_for_upgrade = isvr._check_for_upgrade |
|
|
|
isvr._check_for_upgrade = AsyncMock() |
|
|
|
saved_check_for_upgrade = self.isvr._check_for_upgrade |
|
|
|
self.isvr._check_for_upgrade = AsyncMock() |
|
|
|
client2.connect('http://localhost:8900', namespace='/foo', |
|
|
|
transports=['polling']) |
|
|
|
sid2 = client2.sid |
|
|
|
isvr._check_for_upgrade = saved_check_for_upgrade |
|
|
|
self.isvr._check_for_upgrade = saved_check_for_upgrade |
|
|
|
|
|
|
|
client3.connect('http://localhost:8900', namespace='/admin') |
|
|
|
sid3 = client3.sid |
|
|
@ -251,7 +251,7 @@ class TestAsyncAdmin(unittest.TestCase): |
|
|
|
assert socket['rooms'] == [sid3] |
|
|
|
|
|
|
|
@with_instrumented_server(mode='production', read_only=True) |
|
|
|
def test_admin_connect_production(self, isvr): |
|
|
|
def test_admin_connect_production(self): |
|
|
|
with socketio.SimpleClient() as admin_client: |
|
|
|
admin_client.connect('http://localhost:8900', namespace='/admin') |
|
|
|
events = self._expect({'config': 1, 'server_stats': 2}, |
|
|
@ -272,7 +272,7 @@ class TestAsyncAdmin(unittest.TestCase): |
|
|
|
events['server_stats']['namespaces'] |
|
|
|
|
|
|
|
@with_instrumented_server() |
|
|
|
def test_admin_features(self, isvr): |
|
|
|
def test_admin_features(self): |
|
|
|
with socketio.SimpleClient() as client1, \ |
|
|
|
socketio.SimpleClient() as client2, \ |
|
|
|
socketio.SimpleClient() as admin_client: |
|
|
|