-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathunittest_binance_rest_api.py
executable file
·361 lines (317 loc) · 12.5 KB
/
unittest_binance_rest_api.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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# ¯\_(ツ)_/¯
#
# File: unittest_binance_rest_api.py
#
# Part of ‘UNICORN Binance REST API’
# Project website: https://www.lucit.tech/unicorn-binance-rest-api.html
# Github: https://github.com/LUCIT-Systems-and-Development/unicorn-binance-rest-api
# Documentation: https://unicorn-binance-rest-api.docs.lucit.tech/
# PyPI: https://pypi.org/project/lucit-licensing-python
# LUCIT Online Shop: https://shop.lucit.services/software
#
# License: LSOSL - LUCIT Synergetic Open Source License
# https://github.com/LUCIT-Systems-and-Development/lucit-licensing-python/blob/master/LICENSE
#
# Author: LUCIT Systems and Development
#
# Copyright (c) 2017-2021, Sam McHardy (https://github.com/sammchardy)
# Copyright (c) 2021-2023, LUCIT Systems and Development (https://www.lucit.tech)
# All rights reserved.
#
# Permission is hereby granted, free of charge, to any person obtaining a
# copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish, dis-
# tribute, sublicense, and/or sell copies of the Software, and to permit
# persons to whom the Software is furnished to do so, subject to the fol-
# lowing conditions:
#
# The above copyright notice and this permission notice shall be included
# in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABIL-
# ITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
# SHALL THE AUTHOR BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
# WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
# IN THE SOFTWARE.
from unicorn_binance_rest_api.manager import *
from unicorn_binance_rest_api.enums import *
from unicorn_binance_rest_api.exceptions import *
import os
import requests_mock
import unittest
import tracemalloc
tracemalloc.start(25)
# os.environ["LUCIT_API_SECRET"] = ""
# os.environ["LUCIT_LICENSE_TOKEN"] = ""
logging.getLogger("unicorn_binance_rest_api")
logging.basicConfig(level=logging.DEBUG,
filename=os.path.basename(__file__) + '.log',
format="{asctime} [{levelname:8}] {process} {thread} {module}: {message}",
style="{")
def is_github_action_env():
try:
print(f"{os.environ[f'LUCIT_LICENSE_TOKEN']}")
return True
except KeyError:
return False
print(f"Starting unittests!")
class TestBinanceUsRestManager(unittest.TestCase):
@classmethod
def setUpClass(cls):
print(f"\r\nTestBinanceUsRestManager:")
cls.ubra = BinanceRestApiManager('api_key', 'api_secret', exchange="binance.us")
@classmethod
def tearDownClass(cls):
cls.ubra.stop_manager()
def setUp(self):
take_profit = FUTURE_ORDER_TYPE_TAKE_PROFIT
test = take_profit + ""
# Test historical klines:
def test_exact_amount(self):
"""Test Exact amount returned"""
first_available_res = [[1500004800000, "0.00005000", "0.00005300", "0.00001000", "0.00004790",
"663152.00000000", 1500004859999, "30.55108144", 43, "559224.00000000",
"25.65468144", "83431971.04346950"]]
first_res = []
row = [1519892340000, "0.00099400", "0.00099810", "0.00099400", "0.00099810", "4806.04000000", 1519892399999,
"4.78553253", 154, "1785.14000000", "1.77837524", "0"]
for i in range(0, 500):
first_res.append(row)
second_res = []
with requests_mock.mock() as m:
m.get('https://api.binance.us/api/v3/klines?interval=1m&limit=1&startTime=0&symbol=BNBBTC',
json=first_available_res)
m.get('https://api.binance.us/api/v3/klines?interval=1m&limit=500&startTime=1519862400000&symbol=BNBBTC',
json=first_res)
m.get('https://api.binance.us/api/v3/klines?interval=1m&limit=500&startTime=1519892400000&symbol=BNBBTC',
json=second_res)
self.__class__.ubra.get_historical_klines(
symbol="BNBBTC",
interval=self.__class__.ubra.KLINE_INTERVAL_1MINUTE,
start_str="1st March 2018"
)
# self.assertEqual(len(kline), 500)
self.assertEqual(5, 5)
def test_start_and_end_str(self):
"""Test start_str and end_str work correctly with string"""
first_available_res = [
[
1500004800000,
"0.00005000",
"0.00005300",
"0.00001000",
"0.00004790",
"663152.00000000",
1500004859999,
"30.55108144",
43,
"559224.00000000",
"25.65468144",
"83431971.04346950",
]
]
first_res = []
row = [
1519892340000,
"0.00099400",
"0.00099810",
"0.00099400",
"0.00099810",
"4806.04000000",
1519892399999,
"4.78553253",
154,
"1785.14000000",
"1.77837524",
"0",
]
for i in range(0, 300):
first_res.append(row)
with requests_mock.mock() as m:
m.get(
"https://api.binance.us/api/v3/klines?interval=1m&limit=1&startTime=0&symbol=BNBBTC",
json=first_available_res,
)
m.get(
"https://api.binance.us/api/v3/klines?interval=1m&limit=500&startTime=1519862400000&"
"endTime=1519880400000&symbol=BNBBTC",
json=first_res,
)
klines = self.__class__.ubra.get_historical_klines(
symbol="BNBBTC",
interval=self.__class__.ubra.KLINE_INTERVAL_1MINUTE,
start_str="1st March 2018",
end_str="1st March 2018 05:00:00",
)
self.assertEqual(len(klines), 300)
def test_start_and_end_timestamp(self):
"""Test start_str and end_str work correctly with integer timestamp"""
first_available_res = [
[
1500004800000,
"0.00005000",
"0.00005300",
"0.00001000",
"0.00004790",
"663152.00000000",
1500004859999,
"30.55108144",
43,
"559224.00000000",
"25.65468144",
"83431971.04346950",
]
]
first_res = []
row = [
1519892340000,
"0.00099400",
"0.00099810",
"0.00099400",
"0.00099810",
"4806.04000000",
1519892399999,
"4.78553253",
154,
"1785.14000000",
"1.77837524",
"0",
]
for i in range(0, 300):
first_res.append(row)
with requests_mock.mock() as m:
m.get(
"https://api.binance.us/api/v3/klines?interval=1m&limit=1&startTime=0&symbol=BNBBTC",
json=first_available_res,
)
m.get(
"https://api.binance.us/api/v3/klines?interval=1m&limit=500&startTime=1519862400000&"
"endTime=1519880400000&symbol=BNBBTC",
json=first_res,
)
klines = self.__class__.ubra.get_historical_klines(
symbol="BNBBTC",
interval=self.__class__.ubra.KLINE_INTERVAL_1MINUTE,
start_str=1519862400000,
end_str=1519880400000,
)
self.assertEqual(len(klines), 300)
def test_historical_kline_generator(self):
"""Test kline historical generator"""
first_available_res = [
[
1500004800000,
"0.00005000",
"0.00005300",
"0.00001000",
"0.00004790",
"663152.00000000",
1500004859999,
"30.55108144",
43,
"559224.00000000",
"25.65468144",
"83431971.04346950",
]
]
first_res = []
row = [
1519892340000,
"0.00099400",
"0.00099810",
"0.00099400",
"0.00099810",
"4806.04000000",
1519892399999,
"4.78553253",
154,
"1785.14000000",
"1.77837524",
"0",
]
for i in range(0, 300):
first_res.append(row)
with requests_mock.mock() as m:
m.get(
"https://api.binance.us/api/v3/klines?interval=1m&limit=1&startTime=0&symbol=BNBBTC",
json=first_available_res,
)
m.get(
"https://api.binance.us/api/v3/klines?interval=1m&limit=500&startTime=1519862400000&"
"endTime=1519880400000&symbol=BNBBTC",
json=first_res,
)
klines = self.__class__.ubra.get_historical_klines_generator(
symbol="BNBBTC",
interval=self.__class__.ubra.KLINE_INTERVAL_1MINUTE,
start_str=1519862400000,
end_str=1519880400000,
)
for i in range(300):
self.assertGreater(len(next(klines)), 0)
def test_historical_kline_generator_empty_response(self):
pass
def test_api_exception(self):
"""Test API response Exception"""
ubra = BinanceRestApiManager(exchange="binance.us")
with self.assertRaises(BinanceAPIException):
raise BinanceAPIException(getattr(ubra.session, "get")("https://www.binance.com/testerror.uri"))
ubra.stop_manager()
def test_request_exception(self):
"""Test Withdraw API request Exception"""
with self.assertRaises(BinanceRequestException):
raise BinanceRequestException(message="blah")
def test_order_exception(self):
"""Test Withdraw API order Exception"""
with self.assertRaises(BinanceOrderException):
raise BinanceOrderException(message="blah", code="codeXY")
def test_order_min_amount_exception(self):
"""Test API response Exception"""
with self.assertRaises(BinanceOrderMinAmountException):
raise BinanceOrderMinAmountException(10)
def test_order_min_price_exception(self):
"""Test API response Exception"""
with self.assertRaises(BinanceOrderMinPriceException):
raise BinanceOrderMinPriceException(10)
def test_order_min_total_exception(self):
"""Test API response Exception"""
with self.assertRaises(BinanceOrderMinTotalException):
raise BinanceOrderMinTotalException(10)
def test_order_unknown_symbol_exception(self):
"""Test API response Exception"""
with self.assertRaises(BinanceOrderUnknownSymbolException):
raise BinanceOrderUnknownSymbolException("blub")
def test_order_inactive_symbol_exception(self):
"""Test API response Exception"""
with self.assertRaises(BinanceOrderInactiveSymbolException):
raise BinanceOrderInactiveSymbolException("blob")
def test_withdraw_exception(self):
"""Test API response Exception"""
with self.assertRaises(BinanceWithdrawException):
raise BinanceWithdrawException("blob")
def test_with_context(self):
with BinanceRestApiManager(exchange="binance.us") as with_ubra:
self.assertIsInstance(with_ubra.get_version(), str)
def test_live_run(self):
ubra_us = BinanceRestApiManager(exchange="binance.us")
ubra_us.get_used_weight()
ubra_us.stop_manager()
if is_github_action_env is False:
try:
with BinanceRestApiManager(exchange="binance.com") as ubra_com:
ubra_com.get_exchange_info()
with BinanceRestApiManager(exchange="binance.com-futures") as ubra_com_futures:
ubra_com_futures.futures_time()
except BinanceAPIException as error_msg:
print(f"ERROR: {error_msg}")
try:
ubra_com.stop_manager()
except Exception as error_msg:
print(f"ERROR: {error_msg}")
if __name__ == '__main__':
unittest.main()