Passed
Pull Request — main (#21)
by
unknown
02:37
created

tests.test_ws_subscribe_balance   A

Complexity

Total Complexity 4

Size/Duplication

Total Lines 70
Duplicated Lines 87.14 %

Importance

Changes 0
Metric Value
eloc 43
dl 61
loc 70
rs 10
c 0
b 0
f 0
wmc 4

1 Method

Rating   Name   Duplication   Size   Complexity  
A TestWSSubscribeBalance.test_subscribe_balance_structure() 59 59 4

How to fix   Duplicated Code   

Duplicated Code

Duplicate code is one of the most pungent code smells. A rule that is often used is to re-structure code once it is duplicated in three or more places.

Common duplication problems, and corresponding solutions are:

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):
0 ignored issues
show
Duplication introduced by
This code seems to be duplicated in your project.
Loading history...
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