stable/tests/test_misc.py

72 lines
2.7 KiB
Python
Raw Normal View History

# pragma pylint: disable=missing-docstring,C0103
2018-02-04 07:33:54 +00:00
import datetime
from pathlib import Path
2018-02-04 07:33:54 +00:00
from unittest.mock import MagicMock
2018-03-17 21:44:47 +00:00
2018-12-12 19:16:03 +00:00
from freqtrade.data.converter import parse_ticker_dataframe
2019-06-30 11:15:41 +00:00
from freqtrade.data.history import pair_data_filename
from freqtrade.misc import (datesarray_to_datetimearray, file_dump_json,
file_load_json, format_ms_time, shorten_date)
2018-02-04 07:33:54 +00:00
def test_shorten_date() -> None:
str_data = '1 day, 2 hours, 3 minutes, 4 seconds ago'
str_shorten_data = '1 d, 2 h, 3 min, 4 sec ago'
assert shorten_date(str_data) == str_shorten_data
def test_datesarray_to_datetimearray(ticker_history_list):
dataframes = parse_ticker_dataframe(ticker_history_list, "5m", pair="UNITTEST/BTC",
fill_missing=True)
dates = datesarray_to_datetimearray(dataframes['date'])
assert isinstance(dates[0], datetime.datetime)
assert dates[0].year == 2017
assert dates[0].month == 11
assert dates[0].day == 26
assert dates[0].hour == 8
assert dates[0].minute == 50
date_len = len(dates)
assert date_len == 2
2018-02-04 07:33:54 +00:00
def test_file_dump_json(mocker) -> None:
2018-02-04 07:33:54 +00:00
file_open = mocker.patch('freqtrade.misc.open', MagicMock())
2018-12-28 09:01:16 +00:00
json_dump = mocker.patch('rapidjson.dump', MagicMock())
file_dump_json(Path('somefile'), [1, 2, 3])
2018-02-04 07:33:54 +00:00
assert file_open.call_count == 1
assert json_dump.call_count == 1
2018-03-30 21:30:23 +00:00
file_open = mocker.patch('freqtrade.misc.gzip.open', MagicMock())
2018-12-28 09:01:16 +00:00
json_dump = mocker.patch('rapidjson.dump', MagicMock())
file_dump_json(Path('somefile'), [1, 2, 3], True)
2018-03-30 21:30:23 +00:00
assert file_open.call_count == 1
assert json_dump.call_count == 1
2018-04-10 18:09:14 +00:00
2019-09-07 18:56:03 +00:00
def test_file_load_json(mocker, testdatadir) -> None:
# 7m .json does not exist
2019-09-07 18:56:03 +00:00
ret = file_load_json(pair_data_filename(testdatadir, 'UNITTEST/BTC', '7m'))
assert not ret
# 1m json exists (but no .gz exists)
2019-09-07 18:56:03 +00:00
ret = file_load_json(pair_data_filename(testdatadir, 'UNITTEST/BTC', '1m'))
assert ret
# 8 .json is empty and will fail if it's loaded. .json.gz is a copy of 1.json
2019-09-07 18:56:03 +00:00
ret = file_load_json(pair_data_filename(testdatadir, 'UNITTEST/BTC', '8m'))
assert ret
2018-04-10 18:09:14 +00:00
def test_format_ms_time() -> None:
# Date 2018-04-10 18:02:01
date_in_epoch_ms = 1523383321000
date = format_ms_time(date_in_epoch_ms)
2018-04-10 18:09:14 +00:00
assert type(date) is str
2018-04-11 18:19:13 +00:00
res = datetime.datetime(2018, 4, 10, 18, 2, 1, tzinfo=datetime.timezone.utc)
assert date == res.astimezone(None).strftime('%Y-%m-%dT%H:%M:%S')
res = datetime.datetime(2017, 12, 13, 8, 2, 1, tzinfo=datetime.timezone.utc)
# Date 2017-12-13 08:02:01
date_in_epoch_ms = 1513152121000
assert format_ms_time(date_in_epoch_ms) == res.astimezone(None).strftime('%Y-%m-%dT%H:%M:%S')