2018-02-12 08:37:19 +00:00
|
|
|
# pragma pylint: disable=missing-docstring,C0103,protected-access
|
2018-01-28 07:38:41 +00:00
|
|
|
|
2019-03-05 18:46:03 +00:00
|
|
|
from unittest.mock import MagicMock, PropertyMock
|
2017-12-28 14:58:02 +00:00
|
|
|
|
2018-11-30 19:08:50 +00:00
|
|
|
from freqtrade import OperationalException
|
2018-12-03 19:48:51 +00:00
|
|
|
from freqtrade.constants import AVAILABLE_PAIRLISTS
|
2018-12-05 19:45:11 +00:00
|
|
|
from freqtrade.resolvers import PairListResolver
|
2019-09-08 07:54:15 +00:00
|
|
|
from tests.conftest import get_patched_freqtradebot
|
2018-09-19 17:40:32 +00:00
|
|
|
import pytest
|
2018-07-04 07:31:35 +00:00
|
|
|
|
2018-11-30 06:06:02 +00:00
|
|
|
# whitelist, blacklist
|
2017-12-28 14:58:02 +00:00
|
|
|
|
|
|
|
|
2018-09-19 17:40:32 +00:00
|
|
|
@pytest.fixture(scope="function")
|
|
|
|
def whitelist_conf(default_conf):
|
|
|
|
default_conf['stake_currency'] = 'BTC'
|
|
|
|
default_conf['exchange']['pair_whitelist'] = [
|
2018-03-24 19:42:51 +00:00
|
|
|
'ETH/BTC',
|
|
|
|
'TKN/BTC',
|
|
|
|
'TRST/BTC',
|
|
|
|
'SWT/BTC',
|
|
|
|
'BCC/BTC'
|
2018-02-12 08:37:19 +00:00
|
|
|
]
|
2018-09-19 17:40:32 +00:00
|
|
|
default_conf['exchange']['pair_blacklist'] = [
|
2018-03-24 19:42:51 +00:00
|
|
|
'BLK/BTC'
|
2018-02-12 08:37:19 +00:00
|
|
|
]
|
2018-12-04 19:23:03 +00:00
|
|
|
default_conf['pairlist'] = {'method': 'StaticPairList',
|
|
|
|
'config': {'number_assets': 3}
|
|
|
|
}
|
2018-02-12 08:37:19 +00:00
|
|
|
|
2018-09-19 17:40:32 +00:00
|
|
|
return default_conf
|
2017-12-28 14:58:02 +00:00
|
|
|
|
2017-12-28 19:05:33 +00:00
|
|
|
|
2018-12-05 19:45:11 +00:00
|
|
|
def test_load_pairlist_noexist(mocker, markets, default_conf):
|
|
|
|
freqtradebot = get_patched_freqtradebot(mocker, default_conf)
|
2019-03-10 14:26:55 +00:00
|
|
|
mocker.patch('freqtrade.exchange.Exchange.markets', PropertyMock(return_value=markets))
|
2019-07-12 20:45:49 +00:00
|
|
|
with pytest.raises(OperationalException,
|
|
|
|
match=r"Impossible to load Pairlist 'NonexistingPairList'. "
|
|
|
|
r"This class does not exist or contains Python code errors."):
|
2018-12-05 19:45:11 +00:00
|
|
|
PairListResolver('NonexistingPairList', freqtradebot, default_conf).pairlist
|
|
|
|
|
|
|
|
|
2018-09-19 17:40:32 +00:00
|
|
|
def test_refresh_market_pair_not_in_whitelist(mocker, markets, whitelist_conf):
|
2018-02-12 08:37:19 +00:00
|
|
|
|
2018-09-19 17:40:32 +00:00
|
|
|
freqtradebot = get_patched_freqtradebot(mocker, whitelist_conf)
|
2018-02-12 08:37:19 +00:00
|
|
|
|
2019-03-05 18:46:03 +00:00
|
|
|
mocker.patch('freqtrade.exchange.Exchange.markets', PropertyMock(return_value=markets))
|
2018-12-05 19:45:11 +00:00
|
|
|
freqtradebot.pairlists.refresh_pairlist()
|
2018-01-02 12:42:10 +00:00
|
|
|
# List ordered by BaseVolume
|
2018-03-24 19:42:51 +00:00
|
|
|
whitelist = ['ETH/BTC', 'TKN/BTC']
|
2018-01-02 12:42:10 +00:00
|
|
|
# Ensure all except those in whitelist are removed
|
2018-11-30 19:08:50 +00:00
|
|
|
assert set(whitelist) == set(freqtradebot.pairlists.whitelist)
|
2018-11-30 06:02:08 +00:00
|
|
|
# Ensure config dict hasn't been changed
|
|
|
|
assert (whitelist_conf['exchange']['pair_whitelist'] ==
|
|
|
|
freqtradebot.config['exchange']['pair_whitelist'])
|
2017-12-28 19:05:33 +00:00
|
|
|
|
2018-01-02 12:46:16 +00:00
|
|
|
|
2018-11-30 06:06:02 +00:00
|
|
|
def test_refresh_pairlists(mocker, markets, whitelist_conf):
|
2018-09-19 17:40:32 +00:00
|
|
|
freqtradebot = get_patched_freqtradebot(mocker, whitelist_conf)
|
2018-02-12 08:37:19 +00:00
|
|
|
|
2019-03-05 18:46:03 +00:00
|
|
|
mocker.patch('freqtrade.exchange.Exchange.markets', PropertyMock(return_value=markets))
|
2018-12-05 19:45:11 +00:00
|
|
|
freqtradebot.pairlists.refresh_pairlist()
|
2018-01-02 12:42:10 +00:00
|
|
|
# List ordered by BaseVolume
|
2018-03-24 19:42:51 +00:00
|
|
|
whitelist = ['ETH/BTC', 'TKN/BTC']
|
2017-12-28 14:58:02 +00:00
|
|
|
# Ensure all except those in whitelist are removed
|
2018-12-03 18:29:35 +00:00
|
|
|
assert set(whitelist) == set(freqtradebot.pairlists.whitelist)
|
2018-11-30 06:06:02 +00:00
|
|
|
assert whitelist_conf['exchange']['pair_blacklist'] == freqtradebot.pairlists.blacklist
|
2017-12-28 14:58:02 +00:00
|
|
|
|
2017-12-28 19:05:33 +00:00
|
|
|
|
2018-12-05 19:45:11 +00:00
|
|
|
def test_refresh_pairlist_dynamic(mocker, markets, tickers, whitelist_conf):
|
2018-12-04 19:23:03 +00:00
|
|
|
whitelist_conf['pairlist'] = {'method': 'VolumePairList',
|
|
|
|
'config': {'number_assets': 5}
|
|
|
|
}
|
2018-03-26 09:24:20 +00:00
|
|
|
mocker.patch.multiple(
|
2018-06-17 17:54:51 +00:00
|
|
|
'freqtrade.exchange.Exchange',
|
2019-03-05 18:46:03 +00:00
|
|
|
markets=PropertyMock(return_value=markets),
|
2018-03-26 09:24:20 +00:00
|
|
|
get_tickers=tickers,
|
|
|
|
exchange_has=MagicMock(return_value=True)
|
|
|
|
)
|
2018-12-03 19:31:25 +00:00
|
|
|
freqtradebot = get_patched_freqtradebot(mocker, whitelist_conf)
|
2018-02-12 08:37:19 +00:00
|
|
|
|
2017-12-28 14:58:02 +00:00
|
|
|
# argument: use the whitelist dynamically by exchange-volume
|
2019-03-02 17:53:42 +00:00
|
|
|
whitelist = ['ETH/BTC', 'TKN/BTC', 'BTT/BTC']
|
2018-12-05 19:45:11 +00:00
|
|
|
freqtradebot.pairlists.refresh_pairlist()
|
2018-02-12 08:37:19 +00:00
|
|
|
|
2018-11-30 05:54:20 +00:00
|
|
|
assert whitelist == freqtradebot.pairlists.whitelist
|
2017-12-28 14:58:02 +00:00
|
|
|
|
2018-12-06 18:36:33 +00:00
|
|
|
whitelist_conf['pairlist'] = {'method': 'VolumePairList',
|
|
|
|
'config': {}
|
|
|
|
}
|
|
|
|
with pytest.raises(OperationalException,
|
|
|
|
match=r'`number_assets` not specified. Please check your configuration '
|
|
|
|
r'for "pairlist.config.number_assets"'):
|
|
|
|
PairListResolver('VolumePairList', freqtradebot, whitelist_conf).pairlist
|
|
|
|
|
2017-12-28 19:05:33 +00:00
|
|
|
|
2018-12-04 06:16:34 +00:00
|
|
|
def test_VolumePairList_refresh_empty(mocker, markets_empty, whitelist_conf):
|
2018-09-19 17:40:32 +00:00
|
|
|
freqtradebot = get_patched_freqtradebot(mocker, whitelist_conf)
|
2019-03-05 18:46:03 +00:00
|
|
|
mocker.patch('freqtrade.exchange.Exchange.markets', PropertyMock(return_value=markets_empty))
|
2018-02-12 08:37:19 +00:00
|
|
|
|
2017-12-28 14:58:02 +00:00
|
|
|
# argument: use the whitelist dynamically by exchange-volume
|
|
|
|
whitelist = []
|
2018-09-19 17:40:32 +00:00
|
|
|
whitelist_conf['exchange']['pair_whitelist'] = []
|
2018-12-05 19:45:11 +00:00
|
|
|
freqtradebot.pairlists.refresh_pairlist()
|
2018-09-19 17:40:32 +00:00
|
|
|
pairslist = whitelist_conf['exchange']['pair_whitelist']
|
2018-02-12 08:37:19 +00:00
|
|
|
|
2017-12-30 10:55:23 +00:00
|
|
|
assert set(whitelist) == set(pairslist)
|
2018-11-30 19:08:50 +00:00
|
|
|
|
|
|
|
|
2019-03-17 17:18:44 +00:00
|
|
|
@pytest.mark.parametrize("precision_filter,base_currency,key,whitelist_result", [
|
|
|
|
(False, "BTC", "quoteVolume", ['ETH/BTC', 'TKN/BTC', 'BTT/BTC']),
|
|
|
|
(False, "BTC", "bidVolume", ['BTT/BTC', 'TKN/BTC', 'ETH/BTC']),
|
|
|
|
(False, "USDT", "quoteVolume", ['ETH/USDT', 'LTC/USDT']),
|
|
|
|
(False, "ETH", "quoteVolume", []), # this replaces tests that were removed from test_exchange
|
|
|
|
(True, "BTC", "quoteVolume", ["ETH/BTC", "TKN/BTC"]),
|
|
|
|
(True, "BTC", "bidVolume", ["TKN/BTC", "ETH/BTC"])
|
|
|
|
])
|
|
|
|
def test_VolumePairList_whitelist_gen(mocker, whitelist_conf, markets, tickers, base_currency, key,
|
|
|
|
whitelist_result, precision_filter) -> None:
|
2018-12-04 19:23:03 +00:00
|
|
|
whitelist_conf['pairlist']['method'] = 'VolumePairList'
|
2018-11-30 19:08:50 +00:00
|
|
|
mocker.patch('freqtrade.exchange.Exchange.exchange_has', MagicMock(return_value=True))
|
2018-12-04 06:16:34 +00:00
|
|
|
freqtrade = get_patched_freqtradebot(mocker, whitelist_conf)
|
2019-03-05 18:46:03 +00:00
|
|
|
mocker.patch('freqtrade.exchange.Exchange.markets', PropertyMock(return_value=markets))
|
2018-12-04 06:16:34 +00:00
|
|
|
mocker.patch('freqtrade.exchange.Exchange.get_tickers', tickers)
|
2019-03-03 14:31:48 +00:00
|
|
|
mocker.patch('freqtrade.exchange.Exchange.symbol_price_prec', lambda s, p, r: round(r, 8))
|
2018-11-30 19:08:50 +00:00
|
|
|
|
2019-03-17 17:18:44 +00:00
|
|
|
freqtrade.pairlists._precision_filter = precision_filter
|
|
|
|
freqtrade.config['stake_currency'] = base_currency
|
|
|
|
whitelist = freqtrade.pairlists._gen_pair_whitelist(base_currency=base_currency, key=key)
|
|
|
|
assert whitelist == whitelist_result
|
2019-03-03 14:31:48 +00:00
|
|
|
|
2018-11-30 19:08:50 +00:00
|
|
|
|
|
|
|
def test_gen_pair_whitelist_not_supported(mocker, default_conf, tickers) -> None:
|
2018-12-04 19:23:03 +00:00
|
|
|
default_conf['pairlist'] = {'method': 'VolumePairList',
|
|
|
|
'config': {'number_assets': 10}
|
|
|
|
}
|
2018-11-30 19:08:50 +00:00
|
|
|
mocker.patch('freqtrade.exchange.Exchange.get_tickers', tickers)
|
|
|
|
mocker.patch('freqtrade.exchange.Exchange.exchange_has', MagicMock(return_value=False))
|
|
|
|
|
|
|
|
with pytest.raises(OperationalException):
|
2018-12-03 19:00:18 +00:00
|
|
|
get_patched_freqtradebot(mocker, default_conf)
|
2018-12-03 19:48:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.parametrize("pairlist", AVAILABLE_PAIRLISTS)
|
2018-12-04 06:16:34 +00:00
|
|
|
def test_pairlist_class(mocker, whitelist_conf, markets, pairlist):
|
2018-12-04 19:23:03 +00:00
|
|
|
whitelist_conf['pairlist']['method'] = pairlist
|
2019-03-05 18:46:03 +00:00
|
|
|
mocker.patch('freqtrade.exchange.Exchange.markets', PropertyMock(return_value=markets))
|
2018-12-04 06:16:34 +00:00
|
|
|
mocker.patch('freqtrade.exchange.Exchange.exchange_has', MagicMock(return_value=True))
|
2018-12-03 19:48:51 +00:00
|
|
|
freqtrade = get_patched_freqtradebot(mocker, whitelist_conf)
|
2018-12-04 06:16:34 +00:00
|
|
|
|
2018-12-03 19:48:51 +00:00
|
|
|
assert freqtrade.pairlists.name == pairlist
|
2018-12-04 06:16:34 +00:00
|
|
|
assert pairlist in freqtrade.pairlists.short_desc()
|
|
|
|
assert isinstance(freqtrade.pairlists.whitelist, list)
|
|
|
|
assert isinstance(freqtrade.pairlists.blacklist, list)
|
|
|
|
|
|
|
|
|
2019-03-17 17:18:44 +00:00
|
|
|
@pytest.mark.parametrize("pairlist", AVAILABLE_PAIRLISTS)
|
|
|
|
@pytest.mark.parametrize("whitelist,log_message", [
|
|
|
|
(['ETH/BTC', 'TKN/BTC'], ""),
|
|
|
|
(['ETH/BTC', 'TKN/BTC', 'TRX/ETH'], "is not compatible with exchange"), # TRX/ETH wrong stake
|
|
|
|
(['ETH/BTC', 'TKN/BTC', 'BCH/BTC'], "is not compatible with exchange"), # BCH/BTC not available
|
|
|
|
(['ETH/BTC', 'TKN/BTC', 'BLK/BTC'], "is not compatible with exchange"), # BLK/BTC in blacklist
|
|
|
|
(['ETH/BTC', 'TKN/BTC', 'LTC/BTC'], "Market is not active") # LTC/BTC is inactive
|
|
|
|
])
|
|
|
|
def test_validate_whitelist(mocker, whitelist_conf, markets, pairlist, whitelist, caplog,
|
|
|
|
log_message):
|
|
|
|
whitelist_conf['pairlist']['method'] = pairlist
|
|
|
|
mocker.patch('freqtrade.exchange.Exchange.markets', PropertyMock(return_value=markets))
|
|
|
|
mocker.patch('freqtrade.exchange.Exchange.exchange_has', MagicMock(return_value=True))
|
|
|
|
freqtrade = get_patched_freqtradebot(mocker, whitelist_conf)
|
|
|
|
caplog.clear()
|
2018-12-04 06:16:34 +00:00
|
|
|
|
|
|
|
new_whitelist = freqtrade.pairlists._validate_whitelist(whitelist)
|
|
|
|
|
2019-03-17 17:18:44 +00:00
|
|
|
assert set(new_whitelist) == set(['ETH/BTC', 'TKN/BTC'])
|
|
|
|
assert log_message in caplog.text
|