Fixing bug report #406 + unit test
This commit is contained in:
parent
a7e561b55f
commit
081d3932b6
@ -122,9 +122,10 @@ class Bittrex(Exchange):
|
|||||||
raise OperationalException('{message} params=({pair})'.format(
|
raise OperationalException('{message} params=({pair})'.format(
|
||||||
message=data['message'],
|
message=data['message'],
|
||||||
pair=pair))
|
pair=pair))
|
||||||
|
keys = ['Bid', 'Ask', 'Last']
|
||||||
if not data.get('result') or\
|
if not data.get('result') or\
|
||||||
not all(key in data.get('result', {}) for key in ['Bid', 'Ask', 'Last']):
|
not all(key in data.get('result', {}) for key in keys) or\
|
||||||
|
not all(data.get('result', {})[key] is not None for key in keys):
|
||||||
raise ContentDecodingError('{message} params=({pair})'.format(
|
raise ContentDecodingError('{message} params=({pair})'.format(
|
||||||
message='Got invalid response from bittrex',
|
message='Got invalid response from bittrex',
|
||||||
pair=pair))
|
pair=pair))
|
||||||
|
@ -232,6 +232,11 @@ def test_exchange_bittrex_get_ticker_bad():
|
|||||||
with pytest.raises(btx.OperationalException, match=r'.*gone bad.*'):
|
with pytest.raises(btx.OperationalException, match=r'.*gone bad.*'):
|
||||||
wb.get_ticker('BTC_ETH')
|
wb.get_ticker('BTC_ETH')
|
||||||
|
|
||||||
|
fb.result = {'success': True,
|
||||||
|
'result': {'Bid': 1, 'Ask': 0, 'Last': None}} # incomplete result
|
||||||
|
with pytest.raises(ContentDecodingError, match=r'.*Got invalid response from bittrex params.*'):
|
||||||
|
wb.get_ticker('BTC_ETH')
|
||||||
|
|
||||||
|
|
||||||
def test_exchange_bittrex_get_ticker_history_one():
|
def test_exchange_bittrex_get_ticker_history_one():
|
||||||
wb = make_wrap_bittrex()
|
wb = make_wrap_bittrex()
|
||||||
|
Loading…
Reference in New Issue
Block a user