1
|
|
|
import asyncio |
2
|
|
|
import concurrent |
3
|
|
|
from typing import Optional, List |
4
|
|
|
|
5
|
|
|
from tests import APITestCase, DEVEL_AND_CO_SENTRY, WALLET_SWTH_ETH1_AMM, WEBSOCKET_TIMEOUT_SUBSCRIPTION |
6
|
|
|
from tradehub.websocket_client import DemexWebsocket |
7
|
|
|
|
8
|
|
|
|
9
|
|
View Code Duplication |
class TestWSSubscribeBalance(APITestCase): |
|
|
|
|
10
|
|
|
|
11
|
|
|
def test_subscribe_balance_structure(self): |
12
|
|
|
""" |
13
|
|
|
Check if response match expected dict structure. |
14
|
|
|
:return: |
15
|
|
|
""" |
16
|
|
|
expect_subscription: dict = { |
17
|
|
|
'id': str, |
18
|
|
|
'result': [str] |
19
|
|
|
} |
20
|
|
|
|
21
|
|
|
balance: dict = { |
22
|
|
|
'available': str, |
23
|
|
|
'order': str, |
24
|
|
|
'position': str, |
25
|
|
|
'denom': str |
26
|
|
|
} |
27
|
|
|
|
28
|
|
|
expect: dict = { |
29
|
|
|
'channel': str, |
30
|
|
|
'result': { |
31
|
|
|
'eth1': balance, |
32
|
|
|
'eth1-80-swth-20-lp1': balance, |
33
|
|
|
'swth': balance |
34
|
|
|
} |
35
|
|
|
} |
36
|
|
|
|
37
|
|
|
# connect to websocket |
38
|
|
|
client = DemexWebsocket(f"ws://{DEVEL_AND_CO_SENTRY}:5000/ws") |
39
|
|
|
# little work around to save the response |
40
|
|
|
self.response: List[dict] = [] |
41
|
|
|
|
42
|
|
|
async def on_connect(): |
43
|
|
|
# use AMM to be sure deterministic of which tokens the wallet holds |
44
|
|
|
await client.subscribe_balances('balance', WALLET_SWTH_ETH1_AMM) |
45
|
|
|
|
46
|
|
|
async def on_message(message: dict): |
47
|
|
|
# save response into self |
48
|
|
|
self.response.append(message) |
49
|
|
|
|
50
|
|
|
try: |
51
|
|
|
loop = asyncio.get_event_loop() |
52
|
|
|
loop.run_until_complete(asyncio.wait_for(client.connect(on_connect_callback=on_connect, |
53
|
|
|
on_receive_message_callback=on_message), |
54
|
|
|
WEBSOCKET_TIMEOUT_SUBSCRIPTION)) |
55
|
|
|
except concurrent.futures._base.TimeoutError: |
56
|
|
|
loop = asyncio.get_event_loop() |
57
|
|
|
loop.run_until_complete(client.disconnect()) |
58
|
|
|
|
59
|
|
|
if not self.response: |
60
|
|
|
raise RuntimeError("Did not receive a response.") |
61
|
|
|
|
62
|
|
|
self.assertTrue(len(self.response) >= 2, msg=f"Expected at least 2 messages: channel subscription and and first update message") |
63
|
|
|
|
64
|
|
|
channel_subscription: dict = self.response[0] |
65
|
|
|
self.assertDictStructure(expect_subscription, channel_subscription) |
66
|
|
|
|
67
|
|
|
for message in self.response[1:]: |
68
|
|
|
# if this fails, check if the AMM wallet own other tokens as expected |
69
|
|
|
self.assertDictStructure(expect, message) |
70
|
|
|
|
71
|
|
|
|