295 lines
11 KiB
Python
295 lines
11 KiB
Python
# pragma pylint: disable=missing-docstring, C0103, protected-access
|
|
|
|
from unittest.mock import MagicMock
|
|
|
|
import pytest
|
|
from requests import RequestException
|
|
|
|
from freqtrade.enums import RPCMessageType, SellType
|
|
from freqtrade.rpc import RPC
|
|
from freqtrade.rpc.webhook import Webhook
|
|
from tests.conftest import get_patched_freqtradebot, log_has
|
|
|
|
|
|
def get_webhook_dict() -> dict:
|
|
return {
|
|
"enabled": True,
|
|
"url": "https://maker.ifttt.com/trigger/freqtrade_test/with/key/c764udvJ5jfSlswVRukZZ2/",
|
|
"webhookbuy": {
|
|
"value1": "Buying {pair}",
|
|
"value2": "limit {limit:8f}",
|
|
"value3": "{stake_amount:8f} {stake_currency}"
|
|
},
|
|
"webhookbuycancel": {
|
|
"value1": "Cancelling Open Buy Order for {pair}",
|
|
"value2": "limit {limit:8f}",
|
|
"value3": "{stake_amount:8f} {stake_currency}"
|
|
},
|
|
"webhookbuyfill": {
|
|
"value1": "Buy Order for {pair} filled",
|
|
"value2": "at {open_rate:8f}",
|
|
"value3": "{stake_amount:8f} {stake_currency}"
|
|
},
|
|
"webhooksell": {
|
|
"value1": "Selling {pair}",
|
|
"value2": "limit {limit:8f}",
|
|
"value3": "profit: {profit_amount:8f} {stake_currency} ({profit_ratio})"
|
|
},
|
|
"webhooksellcancel": {
|
|
"value1": "Cancelling Open Sell Order for {pair}",
|
|
"value2": "limit {limit:8f}",
|
|
"value3": "profit: {profit_amount:8f} {stake_currency} ({profit_ratio})"
|
|
},
|
|
"webhooksellfill": {
|
|
"value1": "Sell Order for {pair} filled",
|
|
"value2": "at {close_rate:8f}",
|
|
"value3": ""
|
|
},
|
|
"webhookstatus": {
|
|
"value1": "Status: {status}",
|
|
"value2": "",
|
|
"value3": ""
|
|
}
|
|
}
|
|
|
|
|
|
def test__init__(mocker, default_conf):
|
|
default_conf['webhook'] = {'enabled': True, 'url': "https://DEADBEEF.com"}
|
|
webhook = Webhook(RPC(get_patched_freqtradebot(mocker, default_conf)), default_conf)
|
|
assert webhook._config == default_conf
|
|
|
|
|
|
def test_send_msg_webhook(default_conf, mocker):
|
|
default_conf["webhook"] = get_webhook_dict()
|
|
msg_mock = MagicMock()
|
|
mocker.patch("freqtrade.rpc.webhook.Webhook._send_msg", msg_mock)
|
|
webhook = Webhook(RPC(get_patched_freqtradebot(mocker, default_conf)), default_conf)
|
|
# Test buy
|
|
msg_mock = MagicMock()
|
|
mocker.patch("freqtrade.rpc.webhook.Webhook._send_msg", msg_mock)
|
|
msg = {
|
|
'type': RPCMessageType.BUY,
|
|
'exchange': 'Binance',
|
|
'pair': 'ETH/BTC',
|
|
'limit': 0.005,
|
|
'stake_amount': 0.8,
|
|
'stake_amount_fiat': 500,
|
|
'stake_currency': 'BTC',
|
|
'fiat_currency': 'EUR'
|
|
}
|
|
webhook.send_msg(msg=msg)
|
|
assert msg_mock.call_count == 1
|
|
assert (msg_mock.call_args[0][0]["value1"] ==
|
|
default_conf["webhook"]["webhookbuy"]["value1"].format(**msg))
|
|
assert (msg_mock.call_args[0][0]["value2"] ==
|
|
default_conf["webhook"]["webhookbuy"]["value2"].format(**msg))
|
|
assert (msg_mock.call_args[0][0]["value3"] ==
|
|
default_conf["webhook"]["webhookbuy"]["value3"].format(**msg))
|
|
# Test buy cancel
|
|
msg_mock.reset_mock()
|
|
|
|
msg = {
|
|
'type': RPCMessageType.BUY_CANCEL,
|
|
'exchange': 'Binance',
|
|
'pair': 'ETH/BTC',
|
|
'limit': 0.005,
|
|
'stake_amount': 0.8,
|
|
'stake_amount_fiat': 500,
|
|
'stake_currency': 'BTC',
|
|
'fiat_currency': 'EUR'
|
|
}
|
|
webhook.send_msg(msg=msg)
|
|
assert msg_mock.call_count == 1
|
|
assert (msg_mock.call_args[0][0]["value1"] ==
|
|
default_conf["webhook"]["webhookbuycancel"]["value1"].format(**msg))
|
|
assert (msg_mock.call_args[0][0]["value2"] ==
|
|
default_conf["webhook"]["webhookbuycancel"]["value2"].format(**msg))
|
|
assert (msg_mock.call_args[0][0]["value3"] ==
|
|
default_conf["webhook"]["webhookbuycancel"]["value3"].format(**msg))
|
|
# Test buy fill
|
|
msg_mock.reset_mock()
|
|
|
|
msg = {
|
|
'type': RPCMessageType.BUY_FILL,
|
|
'exchange': 'Binance',
|
|
'pair': 'ETH/BTC',
|
|
'open_rate': 0.005,
|
|
'stake_amount': 0.8,
|
|
'stake_amount_fiat': 500,
|
|
'stake_currency': 'BTC',
|
|
'fiat_currency': 'EUR'
|
|
}
|
|
webhook.send_msg(msg=msg)
|
|
assert msg_mock.call_count == 1
|
|
assert (msg_mock.call_args[0][0]["value1"] ==
|
|
default_conf["webhook"]["webhookbuyfill"]["value1"].format(**msg))
|
|
assert (msg_mock.call_args[0][0]["value2"] ==
|
|
default_conf["webhook"]["webhookbuyfill"]["value2"].format(**msg))
|
|
assert (msg_mock.call_args[0][0]["value3"] ==
|
|
default_conf["webhook"]["webhookbuyfill"]["value3"].format(**msg))
|
|
# Test sell
|
|
msg_mock.reset_mock()
|
|
msg = {
|
|
'type': RPCMessageType.SELL,
|
|
'exchange': 'Binance',
|
|
'pair': 'ETH/BTC',
|
|
'gain': "profit",
|
|
'limit': 0.005,
|
|
'amount': 0.8,
|
|
'order_type': 'limit',
|
|
'open_rate': 0.004,
|
|
'current_rate': 0.005,
|
|
'profit_amount': 0.001,
|
|
'profit_ratio': 0.20,
|
|
'stake_currency': 'BTC',
|
|
'sell_reason': SellType.STOP_LOSS.value
|
|
}
|
|
webhook.send_msg(msg=msg)
|
|
assert msg_mock.call_count == 1
|
|
assert (msg_mock.call_args[0][0]["value1"] ==
|
|
default_conf["webhook"]["webhooksell"]["value1"].format(**msg))
|
|
assert (msg_mock.call_args[0][0]["value2"] ==
|
|
default_conf["webhook"]["webhooksell"]["value2"].format(**msg))
|
|
assert (msg_mock.call_args[0][0]["value3"] ==
|
|
default_conf["webhook"]["webhooksell"]["value3"].format(**msg))
|
|
# Test sell cancel
|
|
msg_mock.reset_mock()
|
|
msg = {
|
|
'type': RPCMessageType.SELL_CANCEL,
|
|
'exchange': 'Binance',
|
|
'pair': 'ETH/BTC',
|
|
'gain': "profit",
|
|
'limit': 0.005,
|
|
'amount': 0.8,
|
|
'order_type': 'limit',
|
|
'open_rate': 0.004,
|
|
'current_rate': 0.005,
|
|
'profit_amount': 0.001,
|
|
'profit_ratio': 0.20,
|
|
'stake_currency': 'BTC',
|
|
'sell_reason': SellType.STOP_LOSS.value
|
|
}
|
|
webhook.send_msg(msg=msg)
|
|
assert msg_mock.call_count == 1
|
|
assert (msg_mock.call_args[0][0]["value1"] ==
|
|
default_conf["webhook"]["webhooksellcancel"]["value1"].format(**msg))
|
|
assert (msg_mock.call_args[0][0]["value2"] ==
|
|
default_conf["webhook"]["webhooksellcancel"]["value2"].format(**msg))
|
|
assert (msg_mock.call_args[0][0]["value3"] ==
|
|
default_conf["webhook"]["webhooksellcancel"]["value3"].format(**msg))
|
|
# Test Sell fill
|
|
msg_mock.reset_mock()
|
|
msg = {
|
|
'type': RPCMessageType.SELL_FILL,
|
|
'exchange': 'Binance',
|
|
'pair': 'ETH/BTC',
|
|
'gain': "profit",
|
|
'close_rate': 0.005,
|
|
'amount': 0.8,
|
|
'order_type': 'limit',
|
|
'open_rate': 0.004,
|
|
'current_rate': 0.005,
|
|
'profit_amount': 0.001,
|
|
'profit_ratio': 0.20,
|
|
'stake_currency': 'BTC',
|
|
'sell_reason': SellType.STOP_LOSS.value
|
|
}
|
|
webhook.send_msg(msg=msg)
|
|
assert msg_mock.call_count == 1
|
|
assert (msg_mock.call_args[0][0]["value1"] ==
|
|
default_conf["webhook"]["webhooksellfill"]["value1"].format(**msg))
|
|
assert (msg_mock.call_args[0][0]["value2"] ==
|
|
default_conf["webhook"]["webhooksellfill"]["value2"].format(**msg))
|
|
assert (msg_mock.call_args[0][0]["value3"] ==
|
|
default_conf["webhook"]["webhooksellfill"]["value3"].format(**msg))
|
|
|
|
for msgtype in [RPCMessageType.STATUS,
|
|
RPCMessageType.WARNING,
|
|
RPCMessageType.STARTUP]:
|
|
# Test notification
|
|
msg = {
|
|
'type': msgtype,
|
|
'status': 'Unfilled sell order for BTC cancelled due to timeout'
|
|
}
|
|
msg_mock = MagicMock()
|
|
mocker.patch("freqtrade.rpc.webhook.Webhook._send_msg", msg_mock)
|
|
webhook.send_msg(msg)
|
|
assert msg_mock.call_count == 1
|
|
assert (msg_mock.call_args[0][0]["value1"] ==
|
|
default_conf["webhook"]["webhookstatus"]["value1"].format(**msg))
|
|
assert (msg_mock.call_args[0][0]["value2"] ==
|
|
default_conf["webhook"]["webhookstatus"]["value2"].format(**msg))
|
|
assert (msg_mock.call_args[0][0]["value3"] ==
|
|
default_conf["webhook"]["webhookstatus"]["value3"].format(**msg))
|
|
|
|
|
|
def test_exception_send_msg(default_conf, mocker, caplog):
|
|
default_conf["webhook"] = get_webhook_dict()
|
|
del default_conf["webhook"]["webhookbuy"]
|
|
|
|
webhook = Webhook(RPC(get_patched_freqtradebot(mocker, default_conf)), default_conf)
|
|
webhook.send_msg({'type': RPCMessageType.BUY})
|
|
assert log_has(f"Message type '{RPCMessageType.BUY}' not configured for webhooks",
|
|
caplog)
|
|
|
|
default_conf["webhook"] = get_webhook_dict()
|
|
default_conf["webhook"]["webhookbuy"]["value1"] = "{DEADBEEF:8f}"
|
|
msg_mock = MagicMock()
|
|
mocker.patch("freqtrade.rpc.webhook.Webhook._send_msg", msg_mock)
|
|
webhook = Webhook(RPC(get_patched_freqtradebot(mocker, default_conf)), default_conf)
|
|
msg = {
|
|
'type': RPCMessageType.BUY,
|
|
'exchange': 'Binance',
|
|
'pair': 'ETH/BTC',
|
|
'limit': 0.005,
|
|
'order_type': 'limit',
|
|
'stake_amount': 0.8,
|
|
'stake_amount_fiat': 500,
|
|
'stake_currency': 'BTC',
|
|
'fiat_currency': 'EUR'
|
|
}
|
|
webhook.send_msg(msg)
|
|
assert log_has("Problem calling Webhook. Please check your webhook configuration. "
|
|
"Exception: 'DEADBEEF'", caplog)
|
|
|
|
msg_mock = MagicMock()
|
|
mocker.patch("freqtrade.rpc.webhook.Webhook._send_msg", msg_mock)
|
|
msg = {
|
|
'type': 'DEADBEEF',
|
|
'status': 'whatever'
|
|
}
|
|
with pytest.raises(NotImplementedError):
|
|
webhook.send_msg(msg)
|
|
|
|
|
|
def test__send_msg(default_conf, mocker, caplog):
|
|
default_conf["webhook"] = get_webhook_dict()
|
|
webhook = Webhook(RPC(get_patched_freqtradebot(mocker, default_conf)), default_conf)
|
|
msg = {'value1': 'DEADBEEF',
|
|
'value2': 'ALIVEBEEF',
|
|
'value3': 'FREQTRADE'}
|
|
post = MagicMock()
|
|
mocker.patch("freqtrade.rpc.webhook.post", post)
|
|
webhook._send_msg(msg)
|
|
|
|
assert post.call_count == 1
|
|
assert post.call_args[1] == {'data': msg}
|
|
assert post.call_args[0] == (default_conf['webhook']['url'], )
|
|
|
|
post = MagicMock(side_effect=RequestException)
|
|
mocker.patch("freqtrade.rpc.webhook.post", post)
|
|
webhook._send_msg(msg)
|
|
assert log_has('Could not call webhook url. Exception: ', caplog)
|
|
|
|
|
|
def test__send_msg_with_json_format(default_conf, mocker, caplog):
|
|
default_conf["webhook"] = get_webhook_dict()
|
|
default_conf["webhook"]["format"] = "json"
|
|
webhook = Webhook(RPC(get_patched_freqtradebot(mocker, default_conf)), default_conf)
|
|
msg = {'text': 'Hello'}
|
|
post = MagicMock()
|
|
mocker.patch("freqtrade.rpc.webhook.post", post)
|
|
webhook._send_msg(msg)
|
|
|
|
assert post.call_args[1] == {'json': msg}
|