2017-12-28 19:05:33 +00:00
|
|
|
from freqtrade.main import refresh_whitelist
|
2017-12-28 14:58:02 +00:00
|
|
|
|
|
|
|
# whitelist, blacklist, filtering, all of that will
|
|
|
|
# eventually become some rules to run on a generic ACL engine
|
|
|
|
# perhaps try to anticipate that by using some python package
|
|
|
|
|
|
|
|
|
|
|
|
def whitelist_conf():
|
|
|
|
return {
|
2017-12-28 19:05:33 +00:00
|
|
|
"stake_currency": "BTC",
|
2017-12-28 14:58:02 +00:00
|
|
|
"exchange": {
|
|
|
|
"pair_whitelist": [
|
|
|
|
"BTC_ETH",
|
|
|
|
"BTC_TKN",
|
|
|
|
"BTC_TRST",
|
|
|
|
"BTC_SWT",
|
|
|
|
"BTC_BCC"
|
|
|
|
],
|
2018-01-02 12:46:16 +00:00
|
|
|
"pair_blacklist": [
|
2018-01-02 12:42:10 +00:00
|
|
|
"BTC_BLK"
|
2018-01-02 12:46:16 +00:00
|
|
|
],
|
2017-12-28 14:58:02 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2017-12-28 19:05:33 +00:00
|
|
|
|
2017-12-28 14:58:02 +00:00
|
|
|
def get_health():
|
|
|
|
return [{'Currency': 'ETH',
|
2018-01-02 11:18:26 +00:00
|
|
|
'IsActive': True,
|
|
|
|
'BaseVolume': 42
|
2017-12-28 19:05:33 +00:00
|
|
|
},
|
2017-12-28 14:58:02 +00:00
|
|
|
{'Currency': 'TKN',
|
2018-01-02 11:04:47 +00:00
|
|
|
'IsActive': True,
|
2018-01-02 11:18:26 +00:00
|
|
|
'BaseVolume': 1664
|
2018-01-02 12:42:10 +00:00
|
|
|
},
|
|
|
|
{'Currency': 'BLK',
|
|
|
|
'IsActive': True,
|
|
|
|
'BaseVolume': 4096
|
|
|
|
}
|
2018-01-02 12:46:16 +00:00
|
|
|
]
|
2017-12-28 19:05:33 +00:00
|
|
|
|
2017-12-28 14:58:02 +00:00
|
|
|
|
|
|
|
def get_health_empty():
|
|
|
|
return []
|
|
|
|
|
2018-01-02 12:46:16 +00:00
|
|
|
|
2018-01-02 12:42:10 +00:00
|
|
|
def test_refresh_market_pair_not_in_whitelist(mocker):
|
|
|
|
conf = whitelist_conf()
|
|
|
|
mocker.patch.dict('freqtrade.main._CONF', conf)
|
|
|
|
mocker.patch.multiple('freqtrade.main.exchange',
|
|
|
|
get_wallet_health=get_health)
|
2018-01-02 12:46:16 +00:00
|
|
|
refreshedwhitelist = refresh_whitelist(conf['exchange']['pair_whitelist'] + ['BTC_XXX'])
|
2018-01-02 12:42:10 +00:00
|
|
|
# List ordered by BaseVolume
|
|
|
|
whitelist = ['BTC_ETH', 'BTC_TKN']
|
|
|
|
# Ensure all except those in whitelist are removed
|
|
|
|
assert whitelist == refreshedwhitelist
|
2017-12-28 19:05:33 +00:00
|
|
|
|
2018-01-02 12:46:16 +00:00
|
|
|
|
2017-12-28 14:58:02 +00:00
|
|
|
def test_refresh_whitelist(mocker):
|
|
|
|
conf = whitelist_conf()
|
|
|
|
mocker.patch.dict('freqtrade.main._CONF', conf)
|
|
|
|
mocker.patch.multiple('freqtrade.main.exchange',
|
|
|
|
get_wallet_health=get_health)
|
2017-12-30 13:15:07 +00:00
|
|
|
refreshedwhitelist = refresh_whitelist(conf['exchange']['pair_whitelist'])
|
2018-01-02 12:42:10 +00:00
|
|
|
# List ordered by BaseVolume
|
2017-12-28 14:58:02 +00:00
|
|
|
whitelist = ['BTC_ETH', 'BTC_TKN']
|
|
|
|
# Ensure all except those in whitelist are removed
|
2018-01-02 11:04:47 +00:00
|
|
|
assert whitelist == refreshedwhitelist
|
2017-12-28 14:58:02 +00:00
|
|
|
|
2017-12-28 19:05:33 +00:00
|
|
|
|
2017-12-28 14:58:02 +00:00
|
|
|
def test_refresh_whitelist_dynamic(mocker):
|
|
|
|
conf = whitelist_conf()
|
|
|
|
mocker.patch.dict('freqtrade.main._CONF', conf)
|
|
|
|
mocker.patch.multiple('freqtrade.main.exchange',
|
|
|
|
get_wallet_health=get_health)
|
|
|
|
# argument: use the whitelist dynamically by exchange-volume
|
2018-01-02 11:04:47 +00:00
|
|
|
whitelist = ['BTC_TKN', 'BTC_ETH']
|
2017-12-30 13:15:07 +00:00
|
|
|
refreshedwhitelist = refresh_whitelist(whitelist)
|
2018-01-02 11:04:47 +00:00
|
|
|
assert whitelist == refreshedwhitelist
|
2017-12-28 14:58:02 +00:00
|
|
|
|
2017-12-28 19:05:33 +00:00
|
|
|
|
2017-12-28 14:58:02 +00:00
|
|
|
def test_refresh_whitelist_dynamic_empty(mocker):
|
|
|
|
conf = whitelist_conf()
|
|
|
|
mocker.patch.dict('freqtrade.main._CONF', conf)
|
|
|
|
mocker.patch.multiple('freqtrade.main.exchange',
|
|
|
|
get_wallet_health=get_health_empty)
|
|
|
|
# argument: use the whitelist dynamically by exchange-volume
|
|
|
|
whitelist = []
|
|
|
|
conf['exchange']['pair_whitelist'] = []
|
|
|
|
refresh_whitelist(whitelist)
|
|
|
|
pairslist = conf['exchange']['pair_whitelist']
|
2017-12-30 10:55:23 +00:00
|
|
|
assert set(whitelist) == set(pairslist)
|