Display verison of installed FreqUI

This commit is contained in:
Matthias
2021-07-06 07:20:05 +02:00
parent baf6bca34e
commit dec523eef0
2 changed files with 20 additions and 0 deletions

View File

@@ -105,6 +105,15 @@ def test_api_ui_fallback(botclient):
assert rc.status_code == 200
def test_api_ui_version(botclient, mocker):
ftbot, client = botclient
mocker.patch('freqtrade.commands.deploy_commands.read_ui_version', return_value='0.1.2')
rc = client_get(client, "/ui_version")
assert rc.status_code == 200
assert rc.json()['version'] == '0.1.2'
def test_api_auth():
with pytest.raises(ValueError):
create_token({'identity': {'u': 'Freqtrade'}}, 'secret1234', token_type="NotATokenType")