1
0
crypto-seller/test/test_auto_sell.py
2024-07-22 13:36:52 +02:00

69 lines
1.9 KiB
Python

import datetime
from decimal import Decimal
import fin_defs
import fin_depo
import crypto_seller
class SellerMock(fin_depo.data.DepoFetcher):
def __init__(self, asset: fin_defs.Asset, initial_amount: Decimal):
self.asset = asset
self.amount_left = initial_amount
def get_depo(self) -> fin_depo.data.Depo:
return fin_depo.data.DepoSingle(
'TestDepo',
datetime.datetime.now(tz=datetime.UTC),
{self.asset: self.amount_left},
)
def place_market_order(
self,
input_asset: fin_defs.Asset,
input_amount: Decimal,
output_asset: fin_defs.Asset,
) -> fin_depo.data.Depo:
assert input_amount <= self.amount_left, 'Attempt to sell too much'
self.amount_left -= input_amount
return fin_depo.data.TradeOrderDetails(
input_asset=input_asset,
input_amount=input_amount,
output_asset=output_asset,
output_amount=input_amount, # TODO?
fee_asset=input_asset,
fee_amount=Decimal(0),
order_id=10000000 - self.amount_left,
raw_order_details={'TEST': 1, 'DATA': 2},
)
class SleepMock:
def __init__(self):
self.time_slept = 0.0
def __call__(self, amount: float):
self.time_slept = self.time_slept + amount
def test_auto_run():
sleep_mock = SleepMock()
seller_mock = SellerMock(fin_defs.USDT, Decimal('1000'))
config = crypto_seller.AutoSellConfig(
input_amount_range=(Decimal('1'), Decimal('1')),
interval_range=(datetime.timedelta(seconds=1), datetime.timedelta(seconds=1)),
input_asset=fin_defs.USDT,
output_asset=fin_defs.USD,
exit_when_empty=True,
seller=seller_mock,
sleep=sleep_mock,
)
crypto_seller.run_auto_sell(config)
assert seller_mock.amount_left == 0
assert sleep_mock.time_slept == 1000