-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtest_bot.py
30 lines (26 loc) · 1006 Bytes
/
test_bot.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import unittest
from bot import BreadBot
from config.settings import INFURA_URL, WALLETS, EXCHANGES, API_BASE_URL, API_KEY
from util.market_analysis import MarketAnalysisTools
from util.risk_management import EnhancedRiskManagement
from util.exchange_api import ExchangeAPI
class TestBreadBot(unittest.TestCase):
def setUp(self):
self.breadbot = BreadBot(
INFURA_URL,
WALLETS,
EXCHANGES,
MarketAnalysisTools(),
EnhancedRiskManagement(0.2, 0.1, 100000),
ExchangeAPI(API_BASE_URL, API_KEY)
)
def test_should_buy(self):
# Example test case for should_buy method
result = self.breadbot.should_buy("BTC/USD", 45000)
self.assertIsInstance(result, bool)
def test_should_sell(self):
# Example test case for should_sell method
result = self.breadbot.should_sell("BTC/USD", 45000)
self.assertIsInstance(result, bool)
if __name__ == '__main__':
unittest.main()