Add explicit tests for ohlcv regex

This commit is contained in:
Matthias
2021-11-28 14:33:46 +01:00
parent 107e124f60
commit c096c7f5cb
4 changed files with 19 additions and 4 deletions

View File

@@ -1,6 +1,7 @@
# pragma pylint: disable=missing-docstring, protected-access, C0103
import json
import re
import uuid
from pathlib import Path
from shutil import copyfile
@@ -669,6 +670,20 @@ def test_datahandler_ohlcv_get_pairs(testdatadir):
# assert set(pairs) == {'UNITTEST/BTC'}
@pytest.mark.parametrize('filename,pair,timeframe', [
('XMR_BTC-5m.json', 'XMR_BTC', '5m'),
('XMR_USDT-1h.h5', 'XMR_USDT', '1h'),
('BTC_USDT-2h.jsongz', 'BTC_USDT', '2h'),
])
def test_datahandler_ohlcv_regex(filename, pair, timeframe):
regex = JsonDataHandler._OHLCV_REGEX
match = re.search(regex, filename)
assert len(match.groups()) > 1
assert match[1] == pair
assert match[2] == timeframe
def test_datahandler_ohlcv_get_available_data(testdatadir):
paircombs = JsonDataHandler.ohlcv_get_available_data(testdatadir)
# Convert to set to avoid failures due to sorting