* Refactor project structure "api" * fix bug conversione delle valute fiat in stablecoin in BinanceWrapper * Refactor: WrapperHandler for managing API wrappers with retry logic; update related modules and tests * Refactor: Update ProductInfo and Price classes to include aggregation methods; remove standalone aggregation functions * fix docs
57 lines
1.9 KiB
Python
57 lines
1.9 KiB
Python
import pytest
|
|
from app.api.markets import YFinanceWrapper
|
|
|
|
@pytest.mark.market
|
|
@pytest.mark.api
|
|
class TestYFinance:
|
|
|
|
def test_yfinance_init(self):
|
|
market = YFinanceWrapper()
|
|
assert market is not None
|
|
assert hasattr(market, 'currency')
|
|
assert market.currency == "USD"
|
|
assert hasattr(market, 'tool')
|
|
assert market.tool is not None
|
|
|
|
def test_yfinance_get_crypto_product(self):
|
|
market = YFinanceWrapper()
|
|
product = market.get_product("BTC")
|
|
assert product is not None
|
|
assert hasattr(product, 'symbol')
|
|
# BTC verrà convertito in BTC-USD dal formattatore
|
|
assert product.symbol in ["BTC", "BTC-USD"]
|
|
assert hasattr(product, 'price')
|
|
assert product.price > 0
|
|
|
|
def test_yfinance_get_products(self):
|
|
market = YFinanceWrapper()
|
|
products = market.get_products(["BTC", "ETH"])
|
|
assert products is not None
|
|
assert isinstance(products, list)
|
|
assert len(products) == 2
|
|
symbols = [p.symbol for p in products]
|
|
assert "BTC" in symbols
|
|
assert "ETH" in symbols
|
|
for product in products:
|
|
assert hasattr(product, 'price')
|
|
assert product.price > 0
|
|
|
|
def test_yfinance_invalid_product(self):
|
|
market = YFinanceWrapper()
|
|
with pytest.raises(Exception):
|
|
_ = market.get_product("INVALIDSYMBOL123")
|
|
|
|
def test_yfinance_crypto_history(self):
|
|
market = YFinanceWrapper()
|
|
history = market.get_historical_prices("BTC", limit=5)
|
|
assert history is not None
|
|
assert isinstance(history, list)
|
|
assert len(history) == 5
|
|
for entry in history:
|
|
assert hasattr(entry, 'timestamp')
|
|
assert hasattr(entry, 'close')
|
|
assert hasattr(entry, 'high')
|
|
assert entry.close > 0
|
|
assert entry.high > 0
|
|
assert entry.timestamp != ''
|