diff --git a/tests/exchange/test_gateio.py b/tests/exchange/test_gateio.py index dc6089788..6f7862909 100644 --- a/tests/exchange/test_gateio.py +++ b/tests/exchange/test_gateio.py @@ -1,11 +1,8 @@ -from unittest.mock import MagicMock, PropertyMock - import pytest -from freqtrade.exceptions import InvalidOrderException, OperationalException +from freqtrade.exceptions import OperationalException from freqtrade.exchange import Gateio from freqtrade.resolvers.exchange_resolver import ExchangeResolver -from tests.conftest import get_patched_exchange def test_validate_order_types_gateio(default_conf, mocker): @@ -29,57 +26,3 @@ def test_validate_order_types_gateio(default_conf, mocker): with pytest.raises(OperationalException, match=r'Exchange .* does not support market orders.'): ExchangeResolver.load_exchange('gateio', default_conf, True) - - -def test_get_maintenance_ratio_and_amt_gateio(default_conf, mocker): - api_mock = MagicMock() - default_conf['trading_mode'] = 'futures' - default_conf['margin_mode'] = 'isolated' - type(api_mock).has = PropertyMock(return_value={'fetchLeverageTiers': False}) - exchange = get_patched_exchange(mocker, default_conf, api_mock, id="gateio") - mocker.patch( - 'freqtrade.exchange.Exchange.markets', - PropertyMock( - return_value={ - 'ETH/USDT:USDT': { - 'taker': 0.0000075, - 'maker': -0.0000025, - 'maintenanceMarginRate': 0.005, - 'info': {}, - 'id': 'ETH_USDT', - 'symbol': 'ETH/USDT:USDT', - }, - 'ADA/USDT:USDT': { - 'taker': 0.0000075, - 'maker': -0.0000025, - 'maintenanceMarginRate': 0.003, - 'info': {}, - 'id': 'ADA_USDT', - 'symbol': 'ADA/USDT:USDT', - }, - 'DOGE/USDT:USDT': { - 'taker': 0.0000075, - 'maker': -0.0000025, - 'maintenanceMarginRate': None, - 'info': {}, - 'id': 'ADA_USDT', - 'symbol': 'ADA/USDT:USDT', - }, - } - ) - ) - - assert exchange.get_maintenance_ratio_and_amt("ETH/USDT:USDT") == (0.005, None) - assert exchange.get_maintenance_ratio_and_amt("ADA/USDT:USDT") == (0.003, None) - - with pytest.raises( - InvalidOrderException, - match="Maintenance margin rate for DOGE/USDT:USDT is unavailable for Gateio", - ): - exchange.get_maintenance_ratio_and_amt('DOGE/USDT:USDT') - - with pytest.raises( - InvalidOrderException, - match="SHIB/USDT:USDT is not tradeable on Gateio futures", - ): - exchange.get_maintenance_ratio_and_amt('SHIB/USDT:USDT')