from __future__ import annotations from decimal import Decimal from broker_sync.models import AccountType, ActivityType from broker_sync.providers.parsers.schwab import parse_schwab_email _SELL = """
DateJan 23, 2025
ActionSold
Quantity100.0
TickerMETA
Price$612.34
""" _BUY = """
2024-11-15
Bought
5.5
AAPL
$225.00
""" _MALFORMED = "no transaction here" _MISSING_CELLS = """
Jan 23, 2025
Sold
""" def test_sell_email_parses_to_one_sell_activity() -> None: acts = parse_schwab_email(_SELL) assert len(acts) == 1 a = acts[0] assert a.activity_type is ActivityType.SELL assert a.symbol == "META" assert a.quantity == Decimal("100.0") assert a.unit_price == Decimal("612.34") assert a.currency == "USD" assert a.account_id == "schwab-workplace" assert a.account_type is AccountType.GIA assert a.date.date().isoformat() == "2025-01-23" def test_buy_email_becomes_buy_activity() -> None: acts = parse_schwab_email(_BUY) assert len(acts) == 1 a = acts[0] assert a.activity_type is ActivityType.BUY assert a.symbol == "AAPL" assert a.quantity == Decimal("5.5") assert a.unit_price == Decimal("225.00") def test_malformed_email_returns_empty_list() -> None: # No matching td cells at all. assert parse_schwab_email(_MALFORMED) == [] def test_missing_cells_returns_empty_list() -> None: # Only 2 of the 5 required cells — parser must bail cleanly. assert parse_schwab_email(_MISSING_CELLS) == [] def test_external_id_is_stable_across_reruns() -> None: # Same email → same external_id (deterministic, not timestamp-based). a1 = parse_schwab_email(_SELL)[0] a2 = parse_schwab_email(_SELL)[0] assert a1.external_id == a2.external_id def test_price_with_commas_parses() -> None: html = _SELL.replace("$612.34", "$1,612.34") a = parse_schwab_email(html)[0] assert a.unit_price == Decimal("1612.34")