1
0
crypto-seller/test/test_auto_sell.py

69 lines
1.9 KiB
Python
Raw Normal View History

2024-07-22 11:36:52 +00:00
import datetime
from decimal import Decimal
2024-07-22 11:21:41 +00:00
import fin_defs
import fin_depo
import crypto_seller
2024-07-22 11:36:52 +00:00
class SellerMock(fin_depo.data.DepoFetcher):
2024-07-22 11:21:41 +00:00
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:
2024-07-22 11:36:52 +00:00
return fin_depo.data.DepoSingle(
'TestDepo',
datetime.datetime.now(tz=datetime.UTC),
{self.asset: self.amount_left},
)
2024-07-22 11:21:41 +00:00
2024-07-22 11:36:52 +00:00
def place_market_order(
self,
input_asset: fin_defs.Asset,
input_amount: Decimal,
output_asset: fin_defs.Asset,
) -> fin_depo.data.Depo:
2024-07-22 11:21:41 +00:00
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,
2024-07-22 11:36:52 +00:00
output_amount=input_amount, # TODO?
2024-07-22 11:21:41 +00:00
fee_asset=input_asset,
fee_amount=Decimal(0),
order_id=10000000 - self.amount_left,
raw_order_details={'TEST': 1, 'DATA': 2},
)
2024-07-22 11:31:53 +00:00
class SleepMock:
def __init__(self):
self.time_slept = 0.0
def __call__(self, amount: float):
self.time_slept = self.time_slept + amount
2024-07-22 11:36:52 +00:00
def test_auto_run():
2024-07-22 11:31:53 +00:00
sleep_mock = SleepMock()
seller_mock = SellerMock(fin_defs.USDT, Decimal('1000'))
2024-07-22 11:21:41 +00:00
config = crypto_seller.AutoSellConfig(
input_amount_range=(Decimal('1'), Decimal('1')),
2024-07-22 11:31:53 +00:00
interval_range=(datetime.timedelta(seconds=1), datetime.timedelta(seconds=1)),
2024-07-22 11:21:41 +00:00
input_asset=fin_defs.USDT,
output_asset=fin_defs.USD,
exit_when_empty=True,
2024-07-22 11:36:52 +00:00
seller=seller_mock,
sleep=sleep_mock,
2024-07-22 11:21:41 +00:00
)
2024-07-22 11:31:53 +00:00
crypto_seller.run_auto_sell(config)
2024-07-22 11:21:41 +00:00
2024-07-22 11:31:53 +00:00
assert seller_mock.amount_left == 0
assert sleep_mock.time_slept == 1000