-
Notifications
You must be signed in to change notification settings - Fork 721
Expand file tree
/
Copy pathtest_authenticated_client.py
More file actions
217 lines (179 loc) · 7.65 KB
/
test_authenticated_client.py
File metadata and controls
217 lines (179 loc) · 7.65 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
import pytest
import json
import time
from itertools import islice
from cbpro.authenticated_client import AuthenticatedClient
@pytest.fixture(scope='module')
def dc():
"""Dummy client for testing."""
return AuthenticatedClient('test', 'test', 'test')
@pytest.mark.usefixtures('dc')
class TestAuthenticatedClientSyntax(object):
def test_place_order_input_1(self, dc):
with pytest.raises(ValueError):
r = dc.place_order('BTC-USD', 'buy', 'market',
overdraft_enabled='true', funding_amount=10)
def test_place_order_input_2(self, dc):
with pytest.raises(ValueError):
r = dc.place_order('BTC-USD', 'buy', 'limit',
cancel_after='123', time_in_force='ABC')
def test_place_order_input_3(self, dc):
with pytest.raises(ValueError):
r = dc.place_order('BTC-USD', 'buy', 'limit',
post_only='true', time_in_force='FOK')
def test_place_order_input_4(self, dc):
with pytest.raises(ValueError):
r = dc.place_order('BTC-USD', 'buy', 'market',
size=None, funds=None)
def test_place_order_input_5(self, dc):
with pytest.raises(ValueError):
r = dc.place_order('BTC-USD', 'buy', 'market',
size=1, funds=1)
@pytest.fixture(scope='module')
def client():
"""Client that connects to sandbox API. Relies on authentication information
provided in api_config.json"""
with open('api_config.json.example') as file:
api_config = json.load(file)
c = AuthenticatedClient(
api_url='https://api-public.sandbox.pro.coinbase.com', **api_config)
# Set up account with deposits and orders. Do this by depositing from
# the Coinbase USD wallet, which has a fixed value of > $10,000.
#
# Only deposit if the balance is below some nominal amount. The
# exchange seems to freak out if you run up your account balance.
coinbase_accounts = c.get_coinbase_accounts()
account_info = [x for x in coinbase_accounts
if x['name'] == 'USD Wallet'][0]
account_usd = account_info['id']
if float(account_info['balance']) < 70000:
c.coinbase_deposit(10000, 'USD', account_usd)
# Place some orders to generate history
c.place_limit_order('BTC-USD', 'buy', 1, 0.01)
c.place_limit_order('BTC-USD', 'buy', 2, 0.01)
c.place_limit_order('BTC-USD', 'buy', 3, 0.01)
return c
@pytest.mark.usefixtures('dc')
@pytest.mark.skip(reason="these test require authentication")
class TestAuthenticatedClient(object):
"""Test the authenticated client by validating basic behavior from the
sandbox exchange."""
def test_get_accounts(self, client):
r = client.get_accounts()
assert type(r) is list
assert 'currency' in r[0]
# Now get a single account
r = client.get_account(account_id=r[0]['id'])
assert type(r) is dict
assert 'currency' in r
def test_account_history(self, client):
accounts = client.get_accounts()
account_usd = [x for x in accounts if x['currency'] == 'USD'][0]['id']
r = list(islice(client.get_account_history(account_usd), 5))
assert type(r) is list
assert 'amount' in r[0]
assert 'details' in r[0]
# Now exercise the pagination abstraction. Setting limit to 1 means
# each record comes in a separate HTTP response.
history_gen = client.get_account_history(account_usd, limit=1)
r = list(islice(history_gen, 2))
r2 = list(islice(history_gen, 2))
assert r != r2
# Now exercise the `before` parameter.
r3 = list(client.get_account_history(account_usd, before=r2[0]['id']))
assert r3 == r
def test_get_account_holds(self, client):
accounts = client.get_accounts()
account_usd = [x for x in accounts if x['currency'] == 'USD'][0]['id']
r = list(client.get_account_holds(account_usd))
assert type(r) is list
assert 'type' in r[0]
assert 'ref' in r[0]
def test_convert_stablecoin(self, client):
r = client.convert_stablecoin('10.0', 'USD', 'USDC')
assert type(r) is dict
assert 'id' in r
assert r['amount'] == '10.00000000'
assert r['from'] == 'USD'
assert r['to'] == 'USDC'
def test_place_order(self, client):
r = client.place_order('BTC-USD', 'buy', 'limit',
price=0.62, size=0.0144)
assert type(r) is dict
assert r['stp'] == 'dc'
def test_place_limit_order(self, client):
r = client.place_limit_order('BTC-USD', 'buy', 4.43, 0.01232)
assert type(r) is dict
assert 'executed_value' in r
assert not r['post_only']
client.cancel_order(r['id'])
def test_place_market_order(self, client):
r = client.place_market_order('BTC-USD', 'buy', size=0.01)
assert 'status' in r
assert r['type'] == 'market'
client.cancel_order(r['id'])
# This one probably won't go through
r = client.place_market_order('BTC-USD', 'buy', funds=100000)
assert type(r) is dict
@pytest.mark.parametrize('stop_type', ['entry', 'loss'])
def test_place_stop_order(self, client, stop_type):
client.cancel_all()
r = client.place_stop_order('BTC-USD', stop_type, 100, 0.01)
assert type(r) is dict
assert r['stop'] == stop_type
assert r['stop_price'] == '100'
assert r['type'] == 'limit'
client.cancel_order(r['id'])
def test_place_invalid_stop_order(self, client):
client.cancel_all()
with pytest.raises(ValueError):
client.place_stop_order('BTC-USD', 'fake_stop_type', 5.65, 0.01)
def test_cancel_order(self, client):
r = client.place_limit_order('BTC-USD', 'buy', 4.43, 0.01232)
time.sleep(0.2)
r2 = client.cancel_order(r['id'])
assert r2[0] == r['id']
def test_cancel_all(self, client):
r = client.cancel_all()
assert type(r) is list
def test_get_order(self, client):
r = client.place_limit_order('BTC-USD', 'buy', 4.43, 0.01232)
time.sleep(0.2)
r2 = client.get_order(r['id'])
assert r2['id'] == r['id']
def test_get_orders(self, client):
r = list(islice(client.get_orders(), 10))
assert type(r) is list
assert 'created_at' in r[0]
def test_get_fills(self, client):
r = list(islice(client.get_orders(), 10))
assert type(r) is list
assert 'fill_fees' in r[0]
def test_get_fundings(self, client):
r = list(islice(client.get_fundings(), 10))
assert type(r) is list
def test_repay_funding(self, client):
# This request gets denied
r = client.repay_funding(2.1, 'USD')
def test_get_position(self, client):
r = client.get_position()
assert 'accounts' in r
def test_get_payment_methods(self, client):
r = client.get_payment_methods()
assert type(r) is list
def test_get_coinbase_accounts(self, client):
r = client.get_coinbase_accounts()
assert type(r) is list
def test_get_trailing_volume(self, client):
r = client.get_trailing_volume()
assert type(r) is list
def test_get_fees(self, client):
r = client.get_fees()
assert type(r) is dict
def test_get_profiles(self, client):
r = client.get_profiles()
assert type(r) is list
def test_get_profile_by_id(self, client):
# Took the id from the docs as the sample response.
r = client.get_profile('86602c68-306a-4500-ac73-4ce56a91d83c')
assert type(r) is dict