forked from sammchardy/python-binance
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_ids.py
More file actions
349 lines (289 loc) · 11.8 KB
/
Copy pathtest_ids.py
File metadata and controls
349 lines (289 loc) · 11.8 KB
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
import re
import requests_mock
import pytest
from aioresponses import aioresponses
from binance import Client, AsyncClient
client = Client(api_key="api_key", api_secret="api_secret", ping=False)
def test_spot_id():
with requests_mock.mock() as m:
m.post("https://api.binance.com/api/v3/order", json={}, status_code=200)
client.create_order(symbol="LTCUSDT", side="BUY", type="MARKET", quantity=0.1)
url_dict = dict(pair.split("=") for pair in m.last_request.text.split("&"))
assert url_dict["symbol"] == "LTCUSDT"
assert url_dict["side"] == "BUY"
assert url_dict["type"] == "MARKET"
assert url_dict["quantity"] == "0.1"
assert url_dict["newClientOrderId"].startswith("x-HNA2TXFJ")
def test_spot_limit_id():
with requests_mock.mock() as m:
m.post("https://api.binance.com/api/v3/order", json={}, status_code=200)
client.order_limit_buy(
symbol="LTCUSDT", side="BUY", type="MARKET", quantity=0.1
)
url_dict = dict(pair.split("=") for pair in m.last_request.text.split("&"))
assert url_dict["newClientOrderId"].startswith("x-HNA2TXFJ")
def test_spot_market_id():
with requests_mock.mock() as m:
m.post("https://api.binance.com/api/v3/order", json={}, status_code=200)
client.order_market_buy(
symbol="LTCUSDT", side="BUY", type="MARKET", quantity=0.1
)
url_dict = dict(pair.split("=") for pair in m.last_request.text.split("&"))
assert url_dict["newClientOrderId"].startswith("x-HNA2TXFJ")
def test_spot_cancel_replace_id():
with requests_mock.mock() as m:
m.post(
"https://api.binance.com/api/v3/order/cancelReplace",
json={},
status_code=200,
)
client.cancel_replace_order(
cancelOrderId="orderId",
symbol="LTCUSDT",
side="BUY",
type="MARKET",
quantity=0.1,
)
url_dict = dict(pair.split("=") for pair in m.last_request.text.split("&"))
assert url_dict["newClientOrderId"].startswith("x-HNA2TXFJ")
def test_spot_oco_order_id():
with requests_mock.mock() as m:
m.post("https://api.binance.com/api/v3/orderList/oco", json={}, status_code=200)
client.create_oco_order(
symbol="LTCUSDT", side="BUY", aboveType="MARKET", quantity=0.1
)
url_dict = dict(pair.split("=") for pair in m.last_request.text.split("&"))
assert url_dict["listClientOrderId"].startswith("x-HNA2TXFJ")
def test_swap_id():
with requests_mock.mock() as m:
m.post("https://fapi.binance.com/fapi/v1/order", json={}, status_code=200)
client.futures_create_order(
symbol="LTCUSDT", side="BUY", type="MARKET", quantity=0.1
)
url_dict = dict(pair.split("=") for pair in m.last_request.text.split("&"))
# why lowercase? check this later
assert url_dict["symbol"] == "LTCUSDT"
assert url_dict["side"] == "BUY"
assert url_dict["type"] == "MARKET"
assert url_dict["quantity"] == "0.1"
assert url_dict["newClientOrderId"].startswith("x-Cb7ytekJ")
def test_swap_batch_id():
with requests_mock.mock() as m:
m.post("https://fapi.binance.com/fapi/v1/batchOrders", json={}, status_code=200)
order = {"symbol": "LTCUSDT", "side": "BUY", "type": "MARKET", "quantity": 0.1}
orders = [order, order]
client.futures_place_batch_order(batchOrders=orders)
text = m.last_request.text
assert "x-Cb7ytekJ" in text
def test_coin_id():
with requests_mock.mock() as m:
m.post("https://dapi.binance.com/dapi/v1/order", json={}, status_code=200)
client.futures_coin_create_order(
symbol="LTCUSD_PERP", side="BUY", type="MARKET", quantity=0.1
)
url_dict = dict(pair.split("=") for pair in m.last_request.text.split("&"))
# why lowercase? check this later
assert url_dict["symbol"] == "LTCUSD_PERP"
assert url_dict["side"] == "BUY"
assert url_dict["type"] == "MARKET"
assert url_dict["quantity"] == "0.1"
assert url_dict["newClientOrderId"].startswith("x-Cb7ytekJ")
def test_coin_batch_id():
with requests_mock.mock() as m:
m.post("https://dapi.binance.com/dapi/v1/batchOrders", json={}, status_code=200)
order = {
"symbol": "BTCUSD_PERP",
"side": "BUY",
"type": "MARKET",
"quantity": 0.1,
}
orders = [order, order]
client.futures_coin_place_batch_order(batchOrders=orders)
text = m.last_request.text
assert "x-Cb7ytekJ" in text
def test_papi_um_id():
with requests_mock.mock() as m:
m.post("https://papi.binance.com/papi/v1/um/order", json={}, status_code=200)
client.papi_create_um_order(
symbol="LTCUSDT", side="BUY", type="MARKET", quantity=0.1
)
url_dict = dict(pair.split("=") for pair in m.last_request.text.split("&"))
# why lowercase? check this later
assert url_dict["symbol"] == "LTCUSDT"
assert url_dict["side"] == "BUY"
assert url_dict["type"] == "MARKET"
assert url_dict["quantity"] == "0.1"
assert url_dict["newClientOrderId"].startswith("x-Cb7ytekJ")
def test_papi_cm_id():
with requests_mock.mock() as m:
m.post("https://papi.binance.com/papi/v1/cm/order", json={}, status_code=200)
client.papi_create_cm_order(
symbol="LTCUSDT", side="BUY", type="MARKET", quantity=0.1
)
url_dict = dict(pair.split("=") for pair in m.last_request.text.split("&"))
# why lowercase? check this later
assert url_dict["symbol"] == "LTCUSDT"
assert url_dict["side"] == "BUY"
assert url_dict["type"] == "MARKET"
assert url_dict["quantity"] == "0.1"
assert url_dict["newClientOrderId"].startswith("x-Cb7ytekJ")
@pytest.mark.asyncio()
async def test_spot_id_async():
clientAsync = AsyncClient(
api_key="api_key", api_secret="api_secret"
) # reuse client later
with aioresponses() as m:
def handler(url, **kwargs):
client_order_id = kwargs["data"][0][1]
assert client_order_id.startswith("x-HNA2TXFJ")
m.post(
"https://api.binance.com/api/v3/order",
payload={"id": 1},
status=200,
callback=handler,
)
await clientAsync.create_order(
symbol="LTCUSDT", side="BUY", type="MARKET", quantity=0.1
)
await clientAsync.close_connection()
@pytest.mark.asyncio()
async def test_spot_cancel_replace_id_async():
clientAsync = AsyncClient(
api_key="api_key", api_secret="api_secret"
) # reuse client later
with aioresponses() as m:
def handler(url, **kwargs):
client_order_id = kwargs["data"][0][1]
assert client_order_id.startswith("x-HNA2TXFJ")
m.post(
"https://api.binance.com/api/v3/order/cancelReplace",
payload={"id": 1},
status=200,
callback=handler,
)
await clientAsync.cancel_replace_order(
orderId="id", symbol="LTCUSDT", side="BUY", type="MARKET", quantity=0.1
)
await clientAsync.close_connection()
@pytest.mark.asyncio()
async def test_swap_id_async():
clientAsync = AsyncClient(api_key="api_key", api_secret="api_secret")
with aioresponses() as m:
def handler(url, **kwargs):
assert "x-Cb7ytekJ" in kwargs["data"][0][1]
url_pattern = re.compile(r"https://fapi\.binance\.com/fapi/v1/order")
m.post(
url_pattern,
payload={"id": 1},
status=200,
callback=handler,
)
await clientAsync.futures_create_order(
symbol="LTCUSDT", side="BUY", type="MARKET", quantity=0.1
)
await clientAsync.close_connection()
@pytest.mark.asyncio()
async def test_papi_um_id_async():
clientAsync = AsyncClient(api_key="api_key", api_secret="api_secret")
with aioresponses() as m:
def handler(url, **kwargs):
client_order_id = kwargs["data"][0][1]
assert client_order_id.startswith("x-Cb7ytekJ")
m.post(
"https://papi.binance.com/papi/v1/um/order",
payload={"id": 1},
status=200,
callback=handler,
)
await clientAsync.papi_create_um_order(
symbol="LTCUSDT", side="BUY", type="MARKET", quantity=0.1
)
await clientAsync.close_connection()
@pytest.mark.asyncio()
async def test_papi_cm_id_async():
clientAsync = AsyncClient(api_key="api_key", api_secret="api_secret")
with aioresponses() as m:
def handler(url, **kwargs):
client_order_id = kwargs["data"][0][1]
assert client_order_id.startswith("x-Cb7ytekJ")
m.post(
"https://papi.binance.com/papi/v1/cm/order",
payload={"id": 1},
status=200,
callback=handler,
)
await clientAsync.papi_create_cm_order(
symbol="LTCUSDT", side="BUY", type="MARKET", quantity=0.1
)
await clientAsync.close_connection()
@pytest.mark.asyncio()
async def test_coin_id_async():
clientAsync = AsyncClient(api_key="api_key", api_secret="api_secret")
with aioresponses() as m:
def handler(url, **kwargs):
client_order_id = kwargs["data"][0][1]
assert client_order_id.startswith("x-Cb7ytekJ")
m.post(
"https://dapi.binance.com/dapi/v1/order",
payload={"id": 1},
status=200,
callback=handler,
)
await clientAsync.futures_coin_create_order(
symbol="LTCUSD_PERP", side="BUY", type="MARKET", quantity=0.1
)
await clientAsync.close_connection()
@pytest.mark.asyncio()
async def test_spot_oco_id():
clientAsync = AsyncClient(api_key="api_key", api_secret="api_secret")
with aioresponses() as m:
def handler(url, **kwargs):
client_order_id = kwargs["data"][0][1]
assert client_order_id.startswith("x-HNA2TXFJ")
m.post(
"https://api.binance.com/api/v3/orderList/oco",
payload={"id": 1},
status=200,
callback=handler,
)
await clientAsync.create_oco_order(
symbol="BTCUSDT", side="BUY", type="MARKET", quantity=0.1
)
await clientAsync.close_connection()
@pytest.mark.asyncio()
async def test_swap_batch_id_async():
with aioresponses() as m:
clientAsync = AsyncClient(api_key="api_key", api_secret="api_secret")
def handler(url, **kwargs):
assert "x-Cb7ytekJ" in kwargs["data"]
m.post(
"https://fapi.binance.com/fapi/v1/batchOrders",
payload={"id": 1},
status=200,
callback=handler,
)
order = {"symbol": "LTCUSDT", "side": "BUY", "type": "MARKET", "quantity": 0.1}
orders = [order, order]
await clientAsync.futures_place_batch_order(batchOrders=orders)
await clientAsync.close_connection()
@pytest.mark.asyncio()
async def test_coin_batch_id_async():
with aioresponses() as m:
clientAsync = AsyncClient(api_key="api_key", api_secret="api_secret")
def handler(url, **kwargs):
assert "x-Cb7ytekJ" in kwargs["data"][0][1]
m.post(
"https://dapi.binance.com/dapi/v1/batchOrders",
payload={"id": 1},
status=200,
callback=handler,
)
order = {
"symbol": "LTCUSD_PERP",
"side": "BUY",
"type": "MARKET",
"quantity": 0.1,
}
orders = [order, order]
await clientAsync.futures_coin_place_batch_order(batchOrders=orders)
await clientAsync.close_connection()