forked from iodbh/coingate-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_coingate.py
221 lines (206 loc) · 10.3 KB
/
test_coingate.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
import pytest
from os import environ
from coingate.client import CoinGateV2Order, CoinGateV2Client, CoinGateClientException, CoinGateAPIException
from arrow import Arrow
V2_APP_ID = environ.get('COINGATE_TEST_APP_ID', None)
V2_API_TOKEN = environ.get('COINGATE_TEST_API_TOKEN', None)
@pytest.fixture
def v2client():
if V2_APP_ID is None or V2_API_TOKEN is None:
raise Exception(
'Please provide API V2 credentials via the COINGATE_TEST_APP_ID and'
'COINGATE_TEST_APP_ID environment variables.'
)
return CoinGateV2Client(V2_APP_ID, V2_API_TOKEN, env='sandbox')
@pytest.fixture
def v2testorder():
return {
'order_id': 'test_order',
'price_amount': 10,
'price_currency': 'USD',
'receive_currency': 'USD',
'title': 'Test order title',
'description': 'Test order description',
'callback_url': 'http://www.example.com/callback',
'cancel_url': 'http://www.example.com/cancel',
'success_url': 'http://www.example.com/success',
'token': 'test-token',
}
class TestV2Order:
def test_valid_new_order(self, v2client, v2testorder):
# test the new contructor with valid data
# 1. Required arguments only
# Constructor
order = CoinGateV2Order(v2testorder['order_id'], v2testorder['price_amount'], v2testorder['price_currency'], v2testorder['receive_currency'])
assert order.order_id == v2testorder['order_id']
assert order.price_amount == v2testorder['price_amount']
assert order.price_currency == v2testorder['price_currency']
assert order.receive_currency == v2testorder['receive_currency']
# API call
response = v2client.create_order(order)
assert isinstance(response, CoinGateV2Order)
assert response.order_id == v2testorder['order_id']
assert response.price_amount == v2testorder['price_amount']
assert response.price_currency == v2testorder['price_currency']
assert response.receive_currency == v2testorder['receive_currency']
assert isinstance(response.coingate_id, int)
assert isinstance(response.payment_url, str)
assert isinstance(response.created_at, Arrow)
# 2. Using all optional arguments
order = CoinGateV2Order(**v2testorder)
# Constructor
assert order.order_id == v2testorder['order_id']
assert order.price_amount == v2testorder['price_amount']
assert order.price_currency == v2testorder['price_currency']
assert order.receive_currency == v2testorder['receive_currency']
assert order.title == v2testorder['title']
assert order.description == v2testorder['description']
assert order.callback_url == v2testorder['callback_url']
assert order.cancel_url == v2testorder['cancel_url']
assert order.success_url == v2testorder['success_url']
assert order.token == v2testorder['token']
# API call
response = v2client.create_order(order)
assert isinstance(response, CoinGateV2Order)
assert response.order_id == v2testorder['order_id']
assert response.price_amount == v2testorder['price_amount']
assert response.price_currency == v2testorder['price_currency']
assert response.receive_currency == v2testorder['receive_currency']
assert isinstance(response.coingate_id, int)
assert isinstance(response.payment_url, str)
assert isinstance(response.created_at, Arrow)
def test_invalid_new_order(self, v2client, v2testorder):
# Null amount
order = CoinGateV2Order(v2testorder['order_id'], 0, v2testorder['price_currency'], v2testorder['receive_currency'])
with pytest.raises(CoinGateAPIException):
v2client.create_order(order)
# Invalid price currency
order = CoinGateV2Order(v2testorder['order_id'], ['price_amount'], 'XXX', v2testorder['receive_currency'])
with pytest.raises(CoinGateAPIException):
v2client.create_order(order)
# Invalid receive currency
order = CoinGateV2Order(v2testorder['order_id'], ['price_amount'], v2testorder['price_currency'], 'XXX')
with pytest.raises(CoinGateAPIException):
v2client.create_order(order)
class TestV2Client:
def test_get_orders(self, v2client, v2testorder):
order = CoinGateV2Order(v2testorder['order_id'], v2testorder['price_amount'], v2testorder['price_currency'], v2testorder['receive_currency'])
result = v2client.create_order(order)
order_id = result.coingate_id
# Get order by ID
order = v2client.get_order(order_id)
assert isinstance(order, CoinGateV2Order)
# list orders
response = v2client.list_orders(per_page=100, page=1, sort_by='created_at_desc')
assert isinstance(response['orders'], list)
assert all(isinstance(i, CoinGateV2Order) for i in response['orders'])
assert response['per_page'] == 100
assert response['current_page'] == 1
assert 'total_orders' in response
assert isinstance(response['total_orders'], int)
assert 'total_pages' in response
assert isinstance(response['total_pages'], int)
# iterate all orders
all_orders = list(v2client.iterate_all_orders())
assert all(isinstance(i, CoinGateV2Order) for i in all_orders)
def test_valid_exchange_rates(self, v2client):
# All rates
rates = v2client.get_rates()
assert isinstance(rates, dict)
assert 'merchant' in rates
assert 'trader' in rates
assert isinstance(rates['merchant'], dict)
assert isinstance(rates['trader'], dict)
assert 'buy' in rates['trader']
assert 'sell' in rates['trader']
for currency in rates['merchant'].values():
assert all(isinstance(i, float) for i in currency.values())
for subcategory, currencies in rates['trader'].items():
for currency in currencies.values():
assert all(isinstance(i, float) for i in currency.values())
# merchant rates
rates = v2client.get_rates('merchant')
assert isinstance(rates, dict)
for currency in rates.values():
assert all(isinstance(i, float) for i in currency.values())
# trader rates
rates = v2client.get_rates('trader')
assert isinstance(rates, dict)
assert set(rates.keys()) == set(('buy', 'sell'))
for subcategory in ('buy', 'sell'):
for currency in rates[subcategory].values():
assert all(isinstance(i, float) for i in currency.values())
# trader rates, subcategories
for subcategory in ('buy', 'sell'):
rates = v2client.get_rates('trader', subcategory)
assert isinstance(rates, dict)
for currency in rates.values():
assert all(isinstance(i, float) for i in currency.values())
# single rate, default category
rate = v2client.get_rate('BTC', 'USD')
assert isinstance(rate, float)
# single rate, merchant category
rate = v2client.get_rate('BTC', 'USD', category='merchant')
assert isinstance(rate, float)
# single rate - trader, buy
rate = v2client.get_rate('BTC', 'USD', category='trader', subcategory='buy')
assert isinstance(rate, float)
# single rate - trader, sell
rate = v2client.get_rate('BTC', 'USD', category='trader', subcategory='sell')
assert isinstance(rate, float)
def test_invalid_exchange_rates(self, v2client):
# per-category rates
# - Invalid category
with pytest.raises(CoinGateClientException):
v2client.get_rates('XXX')
# - Invalid subcategory
with pytest.raises(CoinGateClientException):
v2client.get_rates('trader', 'xxx')
# - valid subcategory with invalid category
with pytest.raises(CoinGateClientException):
v2client.get_rates('merchant', 'buy')
# Single rate - default category
# - Invalid "from" currency
with pytest.raises(CoinGateClientException):
v2client.get_rate('XXX', 'BTC')
# - Invalid "to" currency
with pytest.raises(CoinGateClientException):
v2client.get_rate('BTC', 'XXX')
# - Invalid "to" and "from" currencies
with pytest.raises(CoinGateClientException):
v2client.get_rate('XXX', 'NOP')
# Single rate - explicit "merchant" category
# - Invalid "from" currency
with pytest.raises(CoinGateClientException):
v2client.get_rate('XXX', 'BTC', category='merchant')
# - Invalid "to" currency
with pytest.raises(CoinGateClientException):
v2client.get_rate('BTC', 'XXX', category='merchant')
# - Invalid "to" and "from" currencies
with pytest.raises(CoinGateClientException):
v2client.get_rate('XXX', 'NOP', category='merchant')
# - Subcategory incorrectly set
with pytest.raises(CoinGateClientException):
v2client.get_rate('BTC', 'USD', category='merchant', subcategory='buy')
# Single rate - "trader" category
# - Invalid "from" currency
with pytest.raises(CoinGateClientException):
v2client.get_rate('XXX', 'BTC', category='trader', subcategory='buy')
with pytest.raises(CoinGateClientException):
v2client.get_rate('XXX', 'BTC', category='trader', subcategory='sell')
# - Invalid "to" currency
with pytest.raises(CoinGateClientException):
v2client.get_rate('BTC', 'XXX', category='trader', subcategory='buy')
with pytest.raises(CoinGateClientException):
v2client.get_rate('BTC', 'XXX', category='trader', subcategory='sell')
# - Invalid "to" and "from" currencies
with pytest.raises(CoinGateClientException):
v2client.get_rate('XXX', 'NOP', category='trader', subcategory='buy')
with pytest.raises(CoinGateClientException):
v2client.get_rate('XXX', 'NOP', category='trader', subcategory='sell')
# - Incorrect subcategory
with pytest.raises(CoinGateClientException):
v2client.get_rate('BTC', 'USD', category='trader', subcategory='xxx')
# - No subcategory set
with pytest.raises(CoinGateClientException):
v2client.get_rate('BTC', 'USD', category='trader')