2019-06-16 08:13:24 +00:00
|
|
|
import re
|
2019-09-21 10:53:15 +00:00
|
|
|
from pathlib import Path
|
2019-08-16 13:28:11 +00:00
|
|
|
from unittest.mock import MagicMock, PropertyMock
|
2019-07-21 12:32:00 +00:00
|
|
|
|
|
|
|
import pytest
|
|
|
|
|
2019-09-21 09:24:51 +00:00
|
|
|
from freqtrade import OperationalException
|
2019-07-21 12:32:00 +00:00
|
|
|
from freqtrade.state import RunMode
|
|
|
|
from freqtrade.utils import (setup_utils_configuration, start_create_userdir,
|
2019-08-21 17:35:27 +00:00
|
|
|
start_download_data, start_list_exchanges)
|
2019-09-21 10:53:15 +00:00
|
|
|
from tests.conftest import get_args, log_has, patch_exchange
|
2019-06-16 08:13:24 +00:00
|
|
|
|
|
|
|
|
2019-06-16 18:37:59 +00:00
|
|
|
def test_setup_utils_configuration():
|
2019-06-16 08:13:24 +00:00
|
|
|
args = [
|
|
|
|
'--config', 'config.json.example',
|
|
|
|
]
|
|
|
|
|
2019-06-16 18:37:59 +00:00
|
|
|
config = setup_utils_configuration(get_args(args), RunMode.OTHER)
|
2019-06-16 08:13:24 +00:00
|
|
|
assert "exchange" in config
|
2019-06-16 18:37:59 +00:00
|
|
|
assert config['exchange']['dry_run'] is True
|
2019-06-16 08:13:24 +00:00
|
|
|
assert config['exchange']['key'] == ''
|
|
|
|
assert config['exchange']['secret'] == ''
|
|
|
|
|
|
|
|
|
|
|
|
def test_list_exchanges(capsys):
|
|
|
|
|
|
|
|
args = [
|
|
|
|
"list-exchanges",
|
|
|
|
]
|
|
|
|
|
|
|
|
start_list_exchanges(get_args(args))
|
|
|
|
captured = capsys.readouterr()
|
|
|
|
assert re.match(r"Exchanges supported by ccxt and available.*", captured.out)
|
|
|
|
assert re.match(r".*binance,.*", captured.out)
|
|
|
|
assert re.match(r".*bittrex,.*", captured.out)
|
|
|
|
|
|
|
|
# Test with --one-column
|
|
|
|
args = [
|
|
|
|
"list-exchanges",
|
|
|
|
"--one-column",
|
|
|
|
]
|
|
|
|
|
|
|
|
start_list_exchanges(get_args(args))
|
|
|
|
captured = capsys.readouterr()
|
|
|
|
assert not re.match(r"Exchanges supported by ccxt and available.*", captured.out)
|
|
|
|
assert re.search(r"^binance$", captured.out, re.MULTILINE)
|
|
|
|
assert re.search(r"^bittrex$", captured.out, re.MULTILINE)
|
2019-07-21 12:32:00 +00:00
|
|
|
|
|
|
|
|
|
|
|
def test_create_datadir_failed(caplog):
|
|
|
|
|
|
|
|
args = [
|
|
|
|
"create-userdir",
|
|
|
|
]
|
|
|
|
with pytest.raises(SystemExit):
|
|
|
|
start_create_userdir(get_args(args))
|
2019-08-18 13:09:44 +00:00
|
|
|
assert log_has("`create-userdir` requires --userdir to be set.", caplog)
|
2019-07-21 12:32:00 +00:00
|
|
|
|
|
|
|
|
|
|
|
def test_create_datadir(caplog, mocker):
|
|
|
|
cud = mocker.patch("freqtrade.utils.create_userdata_dir", MagicMock())
|
|
|
|
args = [
|
|
|
|
"create-userdir",
|
|
|
|
"--userdir",
|
|
|
|
"/temp/freqtrade/test"
|
|
|
|
]
|
|
|
|
start_create_userdir(get_args(args))
|
|
|
|
|
|
|
|
assert cud.call_count == 1
|
|
|
|
assert len(caplog.record_tuples) == 0
|
2019-08-21 17:35:27 +00:00
|
|
|
|
|
|
|
|
2019-08-25 13:02:40 +00:00
|
|
|
def test_download_data_keyboardInterrupt(mocker, caplog, markets):
|
|
|
|
dl_mock = mocker.patch('freqtrade.utils.refresh_backtest_ohlcv_data',
|
|
|
|
MagicMock(side_effect=KeyboardInterrupt))
|
2019-08-17 04:58:38 +00:00
|
|
|
patch_exchange(mocker)
|
|
|
|
mocker.patch(
|
|
|
|
'freqtrade.exchange.Exchange.markets', PropertyMock(return_value=markets)
|
|
|
|
)
|
|
|
|
args = [
|
|
|
|
"download-data",
|
|
|
|
"--exchange", "binance",
|
|
|
|
"--pairs", "ETH/BTC", "XRP/BTC",
|
|
|
|
]
|
2019-08-25 13:02:40 +00:00
|
|
|
with pytest.raises(SystemExit):
|
|
|
|
start_download_data(get_args(args))
|
2019-08-17 04:58:38 +00:00
|
|
|
|
2019-08-25 13:02:40 +00:00
|
|
|
assert dl_mock.call_count == 1
|
2019-08-17 04:58:38 +00:00
|
|
|
|
|
|
|
|
2019-08-16 13:28:11 +00:00
|
|
|
def test_download_data_no_markets(mocker, caplog):
|
2019-08-25 13:02:40 +00:00
|
|
|
dl_mock = mocker.patch('freqtrade.utils.refresh_backtest_ohlcv_data',
|
|
|
|
MagicMock(return_value=["ETH/BTC", "XRP/BTC"]))
|
2019-08-16 13:28:11 +00:00
|
|
|
patch_exchange(mocker)
|
|
|
|
mocker.patch(
|
|
|
|
'freqtrade.exchange.Exchange.markets', PropertyMock(return_value={})
|
|
|
|
)
|
|
|
|
args = [
|
|
|
|
"download-data",
|
|
|
|
"--exchange", "binance",
|
2019-08-17 04:58:38 +00:00
|
|
|
"--pairs", "ETH/BTC", "XRP/BTC",
|
2019-08-25 13:02:40 +00:00
|
|
|
"--days", "20"
|
2019-08-16 13:28:11 +00:00
|
|
|
]
|
|
|
|
start_download_data(get_args(args))
|
2019-08-25 13:02:40 +00:00
|
|
|
assert dl_mock.call_args[1]['timerange'].starttype == "date"
|
2019-08-16 13:28:11 +00:00
|
|
|
assert log_has("Pairs [ETH/BTC,XRP/BTC] not available on exchange binance.", caplog)
|
2019-09-21 09:24:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
def test_download_data_no_exchange(mocker, caplog):
|
|
|
|
mocker.patch('freqtrade.utils.refresh_backtest_ohlcv_data',
|
|
|
|
MagicMock(return_value=["ETH/BTC", "XRP/BTC"]))
|
|
|
|
patch_exchange(mocker)
|
|
|
|
mocker.patch(
|
|
|
|
'freqtrade.exchange.Exchange.markets', PropertyMock(return_value={})
|
|
|
|
)
|
|
|
|
args = [
|
2019-09-21 10:53:15 +00:00
|
|
|
"download-data",
|
2019-09-21 09:24:51 +00:00
|
|
|
]
|
2019-09-24 09:07:12 +00:00
|
|
|
pargs = get_args(args)
|
|
|
|
pargs['config'] = None
|
2019-09-21 09:24:51 +00:00
|
|
|
with pytest.raises(OperationalException,
|
|
|
|
match=r"This command requires a configured exchange.*"):
|
2019-09-24 09:07:12 +00:00
|
|
|
start_download_data(pargs)
|
2019-09-21 10:53:15 +00:00
|
|
|
|
|
|
|
|
|
|
|
def test_download_data_no_pairs(mocker, caplog):
|
2019-09-24 09:07:12 +00:00
|
|
|
|
2019-09-21 10:53:15 +00:00
|
|
|
mocker.patch.object(Path, "exists", MagicMock(return_value=False))
|
|
|
|
|
|
|
|
mocker.patch('freqtrade.utils.refresh_backtest_ohlcv_data',
|
|
|
|
MagicMock(return_value=["ETH/BTC", "XRP/BTC"]))
|
|
|
|
patch_exchange(mocker)
|
|
|
|
mocker.patch(
|
|
|
|
'freqtrade.exchange.Exchange.markets', PropertyMock(return_value={})
|
|
|
|
)
|
|
|
|
args = [
|
|
|
|
"download-data",
|
|
|
|
"--exchange",
|
|
|
|
"binance",
|
|
|
|
]
|
2019-09-24 09:07:12 +00:00
|
|
|
pargs = get_args(args)
|
|
|
|
pargs['config'] = None
|
2019-09-21 10:53:15 +00:00
|
|
|
with pytest.raises(OperationalException,
|
|
|
|
match=r"Downloading data requires a list of pairs\..*"):
|
2019-09-24 09:07:12 +00:00
|
|
|
start_download_data(pargs)
|