-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtestSystem.py
88 lines (71 loc) · 2.22 KB
/
testSystem.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
import unittest
from app.system import System
class TestSystem(unittest.TestCase):
cryptos = [
'bitcoin',
'ethereum',
'binance coin',
'ripple',
'cardano',
'solana',
'polkadot',
'dogecoin',
'litecoin'
]
symbols = [
'BTCUSDT',
'ETHUSDT',
'BNBUSDT',
'XRPUSDT',
'ADAUSDT',
'SOLUSDT',
'DOTUSDT',
'DOGEUSDT',
'LTCUSDT'
]
def setUp(self):
self.sys = System()
def tearDown(self):
pass
def test_get_crypto_names(self):
self.assertTrue(
self.sys.get_crypto_names() == self.cryptos
)
def test_get_crypto_symbols(self):
self.assertTrue(
self.sys.get_crypto_names() == self.cryptos
)
def aux_test_update_cryptos(self, dict_cryptos: dict)-> bool:
ret = True
for key in dict_cryptos:
number: str = dict_cryptos[key]
try:
float(number)
ret = ret and True
except:
return False
return ret
def test_update_cryptos(self):
self.sys.request_price_cryptos()
while not self.sys.is_finishing_request_price_cryptos():
pass
self.assertTrue(self.aux_test_update_cryptos(
self.sys.get_price_cryptos())
)
def aux_test_off_update_cryptos(self, dict_cryptos: dict)-> bool:
ret = True
none_value = "---"
for key in dict_cryptos:
price_crypto: str = dict_cryptos[key]
ret = ret and price_crypto == none_value
return ret
def test_off_update_cryptos(self):
self.sys.update_cryptos = False
self.sys.request_price_cryptos()
while not self.sys.is_finishing_request_price_cryptos():
pass
self.assertTrue(self.aux_test_off_update_cryptos(
self.sys.get_price_cryptos())
)
if __name__ == '__main__':
unittest.main()