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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
|
import pandas as pd
import pytest
from fastapi import HTTPException
from app import main
from app.services import data_service
def clear_service_caches() -> None:
data_service.INFO_CACHE.clear()
data_service.FAST_INFO_CACHE.clear()
data_service.PRICE_CACHE.clear()
data_service.HISTORY_CACHE.clear()
data_service.STATEMENT_CACHE.clear()
data_service.INCOME_CACHE.clear()
data_service.BALANCE_CACHE.clear()
data_service.CF_CACHE.clear()
data_service.SHARES_CACHE.clear()
data_service.RATIO_CACHE.clear()
data_service.FINANCIALS_CACHE.clear()
data_service.VALUATION_CACHE.clear()
def quarterly_frame(rows: dict[str, list[float]]) -> pd.DataFrame:
columns = pd.to_datetime(["2025-12-31", "2025-09-30", "2025-06-30", "2025-03-31"])
return pd.DataFrame(rows, index=columns).T
def annual_frame(rows: dict[str, list[float]]) -> pd.DataFrame:
columns = pd.to_datetime(["2024-09-30", "2023-09-30", "2022-09-30", "2021-09-30"])
return pd.DataFrame(rows, index=columns).T
def test_health() -> None:
assert main.health() == {"status": "ok"}
def test_search_smoke(monkeypatch) -> None:
monkeypatch.setattr(main.data_service, "search_tickers", lambda q: [{"symbol": "AAPL", "name": "Apple Inc.", "exchange": "NASDAQ"}])
assert main.search("apple")[0]["symbol"] == "AAPL"
def test_watchlist_smoke(tmp_path, monkeypatch) -> None:
monkeypatch.setattr(main, "DB_PATH", tmp_path / "prism.db")
monkeypatch.setattr(main.data_service, "get_company_info", lambda symbol: {"currentPrice": 100.0, "previousClose": 95.0})
res = main.add_watchlist_symbol("aapl")
assert res["items"][0]["symbol"] == "AAPL"
def test_mocked_ticker_overview(monkeypatch) -> None:
monkeypatch.setattr(
main.data_service,
"get_ticker_overview",
lambda symbol: {
"profile": {"symbol": "AAPL", "name": "Apple Inc.", "sector": None, "industry": None, "exchange": "NASDAQ", "website": None, "summary": None},
"quote": {"price": 100.0, "prev_close": 98.0, "change": 2.0, "change_pct": 0.0204},
"signals": [],
"stats": {"market_cap": None, "trailing_pe": None, "trailing_eps": None, "volume": None, "average_volume": None, "beta": None},
"ratios": {
"price_to_book": None,
"price_to_sales": None,
"ev_to_sales": None,
"ev_to_ebitda": None,
"gross_margin_ttm": None,
"operating_margin_ttm": None,
"net_margin_ttm": None,
"roe_ttm": None,
"roa_ttm": None,
"roic_ttm": None,
"debt_to_equity": None,
"current_ratio": None,
"dividend_yield_ttm": None,
"dividend_payout_ratio_ttm": None,
},
"range_52w": {"low": None, "high": None, "price": 100.0},
"short_interest": {"short_percent_of_float": None, "short_ratio": None, "shares_short": None, "shares_short_prior_month": None, "shares_short_delta_pct": None},
"meta": {"status": "partial", "is_partial": True, "field_availability": {}, "sources": {}},
},
)
assert main.ticker_overview("AAPL")["profile"]["symbol"] == "AAPL"
def test_service_overview_prefers_info_fields(monkeypatch) -> None:
clear_service_caches()
monkeypatch.setattr(
data_service,
"get_company_info",
lambda symbol: {
"longName": "Apple Inc.",
"exchange": "NMS",
"currentPrice": 190.0,
"previousClose": 188.0,
"marketCap": 2_900_000_000_000,
"trailingPE": 31.2,
"trailingEps": 6.08,
"volume": 50_000_000,
"averageVolume": 60_000_000,
"beta": 1.18,
"fiftyTwoWeekHigh": 199.0,
"fiftyTwoWeekLow": 164.0,
},
)
monkeypatch.setattr(data_service, "get_fast_info", lambda symbol: {"lastPrice": 1.0, "exchange": "NYQ"})
monkeypatch.setattr(data_service, "get_price_history", lambda symbol, period="1m": [])
monkeypatch.setattr(data_service, "_pick_search_match", lambda symbol: {"symbol": "AAPL", "name": "Wrong", "exchange": "NYSE"})
monkeypatch.setattr(data_service, "get_profile_enrichment", lambda symbol: {})
overview = data_service.get_ticker_overview("AAPL")
assert overview is not None
assert overview["profile"]["name"] == "Apple Inc."
assert overview["profile"]["exchange"] == "NASDAQ"
assert overview["quote"]["price"] == 190.0
assert overview["stats"]["market_cap"] == 2_900_000_000_000
assert overview["meta"]["sources"]["profile.name"] == "info"
assert overview["meta"]["sources"]["quote.price"] == "info"
def test_service_overview_falls_back_to_fast_info(monkeypatch) -> None:
clear_service_caches()
monkeypatch.setattr(data_service, "get_company_info", lambda symbol: {})
monkeypatch.setattr(
data_service,
"get_fast_info",
lambda symbol: {
"lastPrice": 100.0,
"previousClose": 98.0,
"marketCap": 2_000_000_000,
"lastVolume": 1_500_000,
"threeMonthAverageVolume": 1_250_000,
"yearHigh": 130.0,
"yearLow": 90.0,
"exchange": "NMS",
},
)
monkeypatch.setattr(data_service, "get_price_history", lambda symbol, period="1m": [])
monkeypatch.setattr(data_service, "_pick_search_match", lambda symbol: {"symbol": "AAPL", "name": "Apple Inc.", "exchange": "NASDAQ"})
monkeypatch.setattr(data_service, "get_profile_enrichment", lambda symbol: {})
overview = data_service.get_ticker_overview("AAPL")
assert overview is not None
assert overview["quote"]["price"] == 100.0
assert overview["quote"]["prev_close"] == 98.0
assert overview["stats"]["average_volume"] == 1_250_000
assert overview["meta"]["sources"]["quote.price"] == "fast_info"
assert overview["meta"]["sources"]["range_52w.high"] == "fast_info"
def test_service_overview_falls_back_to_search_and_history(monkeypatch) -> None:
clear_service_caches()
month_history = [
{"date": "2026-01-01", "close": 98.0, "volume": 1000.0},
{"date": "2026-01-02", "close": 100.0, "volume": 1200.0},
]
year_history = month_history + [{"date": "2026-04-02", "close": 120.0, "volume": 900.0}]
monkeypatch.setattr(data_service, "get_company_info", lambda symbol: {})
monkeypatch.setattr(data_service, "get_fast_info", lambda symbol: {})
monkeypatch.setattr(data_service, "_pick_search_match", lambda symbol: {"symbol": "AAPL", "name": "Apple Inc.", "exchange": "NMS"})
monkeypatch.setattr(data_service, "get_profile_enrichment", lambda symbol: {})
monkeypatch.setattr(data_service, "get_price_history", lambda symbol, period="1m": month_history if period == "1m" else year_history)
overview = data_service.get_ticker_overview("AAPL")
assert overview is not None
assert overview["profile"]["name"] == "Apple Inc."
assert overview["quote"]["price"] == 100.0
assert overview["range_52w"]["high"] == 120.0
assert overview["meta"]["sources"]["profile.name"] == "search"
assert overview["meta"]["sources"]["quote.price"] == "history_recent"
def test_service_overview_invalid_symbol(monkeypatch) -> None:
clear_service_caches()
monkeypatch.setattr(data_service, "get_company_info", lambda symbol: {})
monkeypatch.setattr(data_service, "get_fast_info", lambda symbol: {})
monkeypatch.setattr(data_service, "_pick_search_match", lambda symbol: {})
monkeypatch.setattr(data_service, "get_profile_enrichment", lambda symbol: {})
monkeypatch.setattr(data_service, "get_price_history", lambda symbol, period="1m": [])
assert data_service.get_ticker_overview("BAD") is None
def test_ticker_overview_404(monkeypatch) -> None:
monkeypatch.setattr(main.data_service, "get_ticker_overview", lambda symbol: None)
with pytest.raises(HTTPException) as exc:
main.ticker_overview("INVALID")
assert exc.value.status_code == 404
assert exc.value.detail == "ticker data unavailable"
def test_ticker_overview_partial_response(monkeypatch) -> None:
monkeypatch.setattr(
main.data_service,
"get_ticker_overview",
lambda symbol: {
"profile": {"symbol": "AAPL", "name": "Apple Inc.", "exchange": "NASDAQ", "sector": None, "industry": None, "website": None, "summary": None},
"quote": {"price": 100.0, "prev_close": 98.0, "change": 2.0, "change_pct": 0.0204},
"signals": [],
"stats": {"market_cap": None, "trailing_pe": None, "trailing_eps": None, "volume": 1000.0, "average_volume": None, "beta": None},
"ratios": {
"price_to_book": None,
"price_to_sales": None,
"ev_to_sales": None,
"ev_to_ebitda": None,
"gross_margin_ttm": None,
"operating_margin_ttm": None,
"net_margin_ttm": None,
"roe_ttm": None,
"roa_ttm": None,
"roic_ttm": None,
"debt_to_equity": None,
"current_ratio": None,
"dividend_yield_ttm": None,
"dividend_payout_ratio_ttm": None,
},
"range_52w": {"low": None, "high": None, "price": 100.0},
"short_interest": {"short_percent_of_float": None, "short_ratio": None, "shares_short": None, "shares_short_prior_month": None, "shares_short_delta_pct": None},
"meta": {"status": "partial", "is_partial": True, "field_availability": {"stats.market_cap": False}, "sources": {"profile.name": "search"}},
},
)
body = main.ticker_overview("AAPL")
assert body["meta"]["is_partial"] is True
assert body["profile"]["name"] == "Apple Inc."
def test_ticker_history_period_mapping(monkeypatch) -> None:
data_service.HISTORY_CACHE.clear()
captured: list[str] = []
class DummyTicker:
def __init__(self, symbol: str) -> None:
self.symbol = symbol
def history(self, period: str):
captured.append(period)
return pd.DataFrame(
[{"Open": 1.0, "High": 1.0, "Low": 1.0, "Close": 1.0, "Volume": 1.0}],
index=[pd.Timestamp("2026-01-01")],
)
monkeypatch.setattr(data_service.yf, "Ticker", DummyTicker)
assert len(data_service.get_price_history("AAPL", period="1m")) == 1
assert len(data_service.get_price_history("AAPL", period="3m")) == 1
assert len(data_service.get_price_history("AAPL", period="6m")) == 1
assert captured == ["1mo", "3mo", "6mo"]
def test_compute_ttm_ratios_populates_overlapping_stats(monkeypatch) -> None:
clear_service_caches()
monkeypatch.setattr(data_service, "get_company_info", lambda symbol: {})
monkeypatch.setattr(data_service, "get_fast_info", lambda symbol: {})
monkeypatch.setattr(data_service, "get_latest_price", lambda symbol: 50.0)
monkeypatch.setattr(data_service, "get_shares_outstanding", lambda symbol: 100.0)
monkeypatch.setattr(
data_service,
"get_income_statement",
lambda symbol, quarterly=False: quarterly_frame(
{
"Total Revenue": [1_000.0, 1_000.0, 1_000.0, 1_000.0],
"Gross Profit": [500.0, 500.0, 500.0, 500.0],
"Operating Income": [250.0, 250.0, 250.0, 250.0],
"Net Income": [100.0, 100.0, 100.0, 100.0],
"EBIT": [150.0, 150.0, 150.0, 150.0],
"EBITDA": [200.0, 200.0, 200.0, 200.0],
"Tax Provision": [20.0, 20.0, 20.0, 20.0],
"Pretax Income": [120.0, 120.0, 120.0, 120.0],
}
),
)
monkeypatch.setattr(
data_service,
"get_balance_sheet",
lambda symbol, quarterly=False: quarterly_frame(
{
"Stockholders Equity": [500.0, 0.0, 0.0, 0.0],
"Total Assets": [1_200.0, 0.0, 0.0, 0.0],
"Total Debt": [150.0, 0.0, 0.0, 0.0],
"Current Assets": [300.0, 0.0, 0.0, 0.0],
"Current Liabilities": [100.0, 0.0, 0.0, 0.0],
"Cash And Cash Equivalents": [50.0, 0.0, 0.0, 0.0],
}
),
)
monkeypatch.setattr(
data_service,
"get_cash_flow",
lambda symbol, quarterly=False: quarterly_frame({"Cash Dividends Paid": [-10.0, -10.0, -10.0, -10.0]}),
)
ratios = data_service.compute_ttm_ratios("AAPL")
assert ratios["market_cap"] == 5_000.0
assert ratios["trailing_eps"] == 4.0
assert ratios["trailing_pe"] == 12.5
assert ratios["price_to_book"] == 10.0
assert ratios["price_to_sales"] == 1.25
assert ratios["ev_to_sales"] == 1.275
assert ratios["gross_margin_ttm"] == 0.5
assert ratios["operating_margin_ttm"] == 0.25
assert ratios["net_margin_ttm"] == 0.1
assert ratios["roe_ttm"] == 0.8
assert round(ratios["roic_ttm"], 6) == round((600.0 * (1 - (80.0 / 480.0))) / 600.0, 6)
assert ratios["debt_to_equity"] == 0.3
assert ratios["current_ratio"] == 3.0
assert ratios["dividend_yield_ttm"] == 0.008
assert ratios["dividend_payout_ratio_ttm"] == 0.1
def test_compute_ttm_ratios_guardrails_suppress_outliers(monkeypatch) -> None:
clear_service_caches()
monkeypatch.setattr(data_service, "get_company_info", lambda symbol: {})
monkeypatch.setattr(data_service, "get_fast_info", lambda symbol: {})
monkeypatch.setattr(data_service, "get_latest_price", lambda symbol: 1_000.0)
monkeypatch.setattr(data_service, "get_shares_outstanding", lambda symbol: 100.0)
monkeypatch.setattr(
data_service,
"get_income_statement",
lambda symbol, quarterly=False: quarterly_frame(
{
"Total Revenue": [1.0, 1.0, 1.0, 1.0],
"Net Income": [1.0, 1.0, 1.0, 1.0],
"EBIT": [1.0, 1.0, 1.0, 1.0],
"EBITDA": [100_000.0, 100_000.0, 100_000.0, 100_000.0],
"Tax Provision": [0.0, 0.0, 0.0, 0.0],
"Pretax Income": [1.0, 1.0, 1.0, 1.0],
}
),
)
monkeypatch.setattr(
data_service,
"get_balance_sheet",
lambda symbol, quarterly=False: quarterly_frame(
{
"Stockholders Equity": [1.0, 0.0, 0.0, 0.0],
"Total Assets": [10.0, 0.0, 0.0, 0.0],
"Total Debt": [1_000.0, 0.0, 0.0, 0.0],
"Cash And Cash Equivalents": [0.0, 0.0, 0.0, 0.0],
}
),
)
monkeypatch.setattr(data_service, "get_cash_flow", lambda symbol, quarterly=False: pd.DataFrame())
ratios = data_service.compute_ttm_ratios("AAPL")
assert ratios["trailing_pe"] == 25_000.0
assert "price_to_book" not in ratios
assert "price_to_sales" not in ratios
assert "ev_to_sales" not in ratios
assert "ev_to_ebitda" not in ratios
def test_financials_schema_structure() -> None:
from app.schemas import FinancialRow, FinancialStatement, FinancialsResponse
row = FinancialRow(label="Revenue", indent=0, is_total=True, values=[1.0, 2.0, None])
assert row.label == "Revenue"
assert row.is_total is True
assert row.values[2] is None
stmt = FinancialStatement(columns=["FY 2024", "TTM"], rows=[row])
assert len(stmt.columns) == 2
resp = FinancialsResponse(
period="annual",
income=stmt,
balance=FinancialStatement(columns=[], rows=[]),
cash_flow=FinancialStatement(columns=[], rows=[]),
)
assert resp.period == "annual"
def test_overview_uses_computed_sources_and_ratios(monkeypatch) -> None:
clear_service_caches()
monkeypatch.setattr(
data_service,
"get_company_info",
lambda symbol: {
"longName": "Apple Inc.",
"exchange": "NMS",
"currentPrice": 120.0,
"previousClose": 118.0,
},
)
monkeypatch.setattr(data_service, "get_fast_info", lambda symbol: {})
monkeypatch.setattr(data_service, "get_price_history", lambda symbol, period="1m": [])
monkeypatch.setattr(data_service, "_pick_search_match", lambda symbol: {"symbol": "AAPL", "name": "Apple Inc.", "exchange": "NASDAQ"})
monkeypatch.setattr(data_service, "get_profile_enrichment", lambda symbol: {})
monkeypatch.setattr(
data_service,
"compute_ttm_ratios",
lambda symbol: {
"market_cap": 1_500_000_000.0,
"trailing_pe": 24.5,
"trailing_eps": 4.9,
"price_to_book": 8.0,
"price_to_sales": 6.2,
"ev_to_sales": 6.8,
"ev_to_ebitda": 22.1,
"gross_margin_ttm": 0.44,
"operating_margin_ttm": 0.27,
"net_margin_ttm": 0.18,
"roe_ttm": 0.31,
"roa_ttm": 0.12,
"roic_ttm": 0.19,
"debt_to_equity": 0.42,
"current_ratio": 1.8,
"dividend_yield_ttm": 0.005,
"dividend_payout_ratio_ttm": 0.12,
},
)
overview = data_service.get_ticker_overview("AAPL")
assert overview is not None
assert overview["stats"]["trailing_pe"] == 24.5
assert overview["stats"]["market_cap"] == 1_500_000_000.0
assert overview["ratios"]["price_to_book"] == 8.0
assert overview["meta"]["sources"]["stats.trailing_pe"] == "computed"
assert overview["meta"]["sources"]["stats.market_cap"] == "computed"
assert overview["meta"]["sources"]["ratios.price_to_book"] == "computed"
assert overview["meta"]["field_availability"]["ratios.ev_to_ebitda"] is True
assert any(signal["key"] == "Valuation" and "24.5x" in signal["value"] for signal in overview["signals"])
def test_build_income_annual_columns_and_ttm(monkeypatch) -> None:
data_service.STATEMENT_CACHE.clear()
data_service.INCOME_CACHE.clear()
data_service.BALANCE_CACHE.clear()
data_service.CF_CACHE.clear()
data_service.FINANCIALS_CACHE.clear()
inc_annual = annual_frame({
"Total Revenue": [391_000.0, 383_300.0, 394_300.0, 365_800.0],
"Gross Profit": [180_700.0, 169_100.0, 170_800.0, 152_800.0],
"Net Income": [ 93_700.0, 97_000.0, 99_800.0, 94_700.0],
})
inc_q = quarterly_frame({
"Total Revenue": [100_000.0, 95_000.0, 98_000.0, 97_000.0],
"Gross Profit": [ 46_000.0, 44_000.0, 45_000.0, 43_000.0],
"Net Income": [ 24_000.0, 23_000.0, 24_000.0, 22_000.0],
})
monkeypatch.setattr(data_service, "get_income_statement",
lambda sym, quarterly=False: inc_q if quarterly else inc_annual)
monkeypatch.setattr(data_service, "get_balance_sheet",
lambda sym, quarterly=False: pd.DataFrame())
monkeypatch.setattr(data_service, "get_cash_flow",
lambda sym, quarterly=False: pd.DataFrame())
result = data_service.get_financials("AAPL", "annual")
income = result["income"]
assert income["columns"] == ["FY 2024", "FY 2023", "FY 2022", "FY 2021", "TTM"]
rev_row = next(r for r in income["rows"] if r["label"] == "Total Revenue")
assert rev_row["is_total"] is True
assert rev_row["values"][4] == 390_000.0 # sum of 4 quarters
margin_row = next(r for r in income["rows"] if r["label"] == "gross margin")
assert margin_row["is_margin"] is True
assert margin_row["values"][0] is not None # FY 2024 gross margin computed
def test_build_income_quarterly_eight_columns(monkeypatch) -> None:
data_service.STATEMENT_CACHE.clear()
data_service.INCOME_CACHE.clear()
data_service.BALANCE_CACHE.clear()
data_service.CF_CACHE.clear()
data_service.FINANCIALS_CACHE.clear()
cols = pd.to_datetime([
"2025-12-31","2025-09-30","2025-06-30","2025-03-31",
"2024-12-31","2024-09-30","2024-06-30","2024-03-31",
])
inc_q8 = pd.DataFrame(
{"Total Revenue": [100_000.0]*8, "Net Income": [25_000.0]*8},
index=cols,
).T
monkeypatch.setattr(data_service, "get_income_statement",
lambda sym, quarterly=False: inc_q8)
monkeypatch.setattr(data_service, "get_balance_sheet",
lambda sym, quarterly=False: pd.DataFrame())
monkeypatch.setattr(data_service, "get_cash_flow",
lambda sym, quarterly=False: pd.DataFrame())
result = data_service.get_financials("AAPL", "quarterly")
income = result["income"]
assert len(income["columns"]) == 8
assert income["columns"][0] == "Q4 2025"
assert "TTM" not in income["columns"]
def test_build_balance_mrq_column(monkeypatch) -> None:
data_service.STATEMENT_CACHE.clear()
data_service.INCOME_CACHE.clear()
data_service.BALANCE_CACHE.clear()
data_service.CF_CACHE.clear()
data_service.FINANCIALS_CACHE.clear()
bal_annual = annual_frame({"Total Assets": [364_900.0, 335_000.0, 352_800.0, 351_000.0]})
bal_q = quarterly_frame({"Total Assets": [371_900.0, 368_000.0, 360_000.0, 355_000.0]})
monkeypatch.setattr(data_service, "get_income_statement",
lambda sym, quarterly=False: pd.DataFrame())
monkeypatch.setattr(data_service, "get_balance_sheet",
lambda sym, quarterly=False: bal_q if quarterly else bal_annual)
monkeypatch.setattr(data_service, "get_cash_flow",
lambda sym, quarterly=False: pd.DataFrame())
result = data_service.get_financials("AAPL", "annual")
balance = result["balance"]
assert balance["columns"][-1] == "MRQ"
assets_row = next(r for r in balance["rows"] if r["label"] == "Total Assets")
assert assets_row["values"][-1] == 371_900.0 # MRQ value
def test_build_cash_flow_fcf(monkeypatch) -> None:
data_service.STATEMENT_CACHE.clear()
data_service.INCOME_CACHE.clear()
data_service.BALANCE_CACHE.clear()
data_service.CF_CACHE.clear()
data_service.FINANCIALS_CACHE.clear()
cf_annual = annual_frame({
"Operating Cash Flow": [118_300.0, 110_500.0, 122_200.0, 104_000.0],
"Capital Expenditure": [ -9_500.0, -10_900.0, -10_700.0, -8_600.0],
})
cf_q = quarterly_frame({
"Operating Cash Flow": [30_000.0, 29_000.0, 31_000.0, 28_000.0],
"Capital Expenditure": [-2_500.0, -2_400.0, -2_500.0, -2_400.0],
})
inc_annual = annual_frame({"Total Revenue": [391_000.0, 383_300.0, 394_300.0, 365_800.0]})
inc_q = quarterly_frame({"Total Revenue": [100_000.0, 95_000.0, 98_000.0, 97_000.0]})
def mock_cf(sym, quarterly=False):
return cf_q if quarterly else cf_annual
def mock_inc(sym, quarterly=False):
return inc_q if quarterly else inc_annual
monkeypatch.setattr(data_service, "get_income_statement", mock_inc)
monkeypatch.setattr(data_service, "get_balance_sheet", lambda sym, quarterly=False: pd.DataFrame())
monkeypatch.setattr(data_service, "get_cash_flow", mock_cf)
result = data_service.get_financials("AAPL", "annual")
cf = result["cash_flow"]
fcf_row = next(r for r in cf["rows"] if r["label"] == "Free Cash Flow")
assert fcf_row["is_total"] is True
# FY 2024: 118300 + (-9500) = 108800
assert fcf_row["values"][0] == 108_800.0
fcf_margin = next(r for r in cf["rows"] if r["label"] == "FCF margin")
assert fcf_margin["is_margin"] is True
assert fcf_margin["values"][0] is not None
def test_get_financials_empty_statements(monkeypatch) -> None:
data_service.STATEMENT_CACHE.clear()
data_service.INCOME_CACHE.clear()
data_service.BALANCE_CACHE.clear()
data_service.CF_CACHE.clear()
data_service.FINANCIALS_CACHE.clear()
monkeypatch.setattr(data_service, "get_income_statement", lambda sym, quarterly=False: pd.DataFrame())
monkeypatch.setattr(data_service, "get_balance_sheet", lambda sym, quarterly=False: pd.DataFrame())
monkeypatch.setattr(data_service, "get_cash_flow", lambda sym, quarterly=False: pd.DataFrame())
result = data_service.get_financials("AAPL", "annual")
assert result["income"]["columns"] == []
assert result["income"]["rows"] == []
assert result["balance"]["columns"] == []
assert result["cash_flow"]["columns"] == []
def test_financials_route_returns_structure(monkeypatch) -> None:
monkeypatch.setattr(
main.data_service,
"get_financials",
lambda symbol, period="annual": {
"period": "annual",
"income": {"columns": ["FY 2024", "TTM"], "rows": [
{"label": "Total Revenue", "indent": 0, "is_total": True,
"is_section": False, "is_margin": False, "values": [391_000.0, 394_500.0]},
]},
"balance": {"columns": [], "rows": []},
"cash_flow": {"columns": [], "rows": []},
},
)
result = main.ticker_financials("AAPL", period="annual")
assert result["period"] == "annual"
assert result["income"]["columns"][0] == "FY 2024"
assert result["income"]["rows"][0]["label"] == "Total Revenue"
def test_financials_route_period_param(monkeypatch) -> None:
captured: list[str] = []
def mock_get_financials(symbol, period="annual"):
captured.append(period)
return {
"period": period,
"income": {"columns": [], "rows": []},
"balance": {"columns": [], "rows": []},
"cash_flow": {"columns": [], "rows": []},
}
monkeypatch.setattr(main.data_service, "get_financials", mock_get_financials)
main.ticker_financials("AAPL", period="quarterly")
assert captured == ["quarterly"]
def test_valuation_schema_structure() -> None:
from app.schemas import DcfResult, MultipleResult, ValuationResponse
dcf_unavail = DcfResult(available=False)
assert dcf_unavail.available is False
assert dcf_unavail.wacc == 0.10
assert dcf_unavail.terminal_growth == 0.03
assert dcf_unavail.error is None
assert dcf_unavail.intrinsic_value_per_share is None
mult_unavail = MultipleResult(available=False)
assert mult_unavail.available is False
assert mult_unavail.implied_price_per_share is None
resp = ValuationResponse(
symbol="AAPL",
current_price=150.0,
shares_outstanding=15_000_000_000.0,
dcf=DcfResult(available=True, intrinsic_value_per_share=182.0, growth_rate_used=0.082),
ev_ebitda=MultipleResult(available=True, implied_price_per_share=178.0, multiple_used=20.0),
ev_revenue=MultipleResult(available=False),
price_to_book=MultipleResult(available=False),
)
assert resp.symbol == "AAPL"
assert resp.dcf.intrinsic_value_per_share == 182.0
assert resp.ev_ebitda.multiple_used == 20.0
assert resp.ev_revenue.available is False
def test_build_fcf_series_happy_path() -> None:
cf = annual_frame({
"Operating Cash Flow": [100.0, 90.0, 80.0, 70.0],
"Capital Expenditure": [-10.0, -9.0, -8.0, -7.0],
})
result = data_service._build_fcf_series(cf)
assert result is not None
assert len(result) == 4
# most recent year FCF = 100 + (-10) = 90
assert result.iloc[-1] == 90.0
def test_build_fcf_series_empty_df() -> None:
result = data_service._build_fcf_series(pd.DataFrame())
assert result is None
def test_build_fcf_series_missing_capex() -> None:
cf = annual_frame({"Operating Cash Flow": [100.0, 90.0, 80.0, 70.0]})
result = data_service._build_fcf_series(cf)
assert result is None
def test_build_multiple_result_empty() -> None:
result = data_service._build_multiple_result({})
assert result == {"available": False}
def test_build_multiple_result_valid() -> None:
raw = {
"implied_price_per_share": 178.0,
"implied_ev": 1_000.0,
"equity_value": 900.0,
"net_debt": 100.0,
"target_multiple_used": 20.0,
}
result = data_service._build_multiple_result(raw)
assert result["available"] is True
assert result["implied_price_per_share"] == 178.0
assert result["multiple_used"] == 20.0
def test_dcf_capped_growth_rate_caps_extremes() -> None:
# growth of 200% should be capped at 50%
series = pd.Series([10.0, 30.0], index=pd.to_datetime(["2022", "2023"]))
result = data_service._dcf_capped_growth_rate(series)
assert result == 0.50
def test_dcf_capped_growth_rate_skips_sign_flip() -> None:
# negative to positive is a sign flip — should skip and return None (no usable periods)
series = pd.Series([-10.0, 20.0], index=pd.to_datetime(["2022", "2023"]))
result = data_service._dcf_capped_growth_rate(series)
assert result is None
def test_run_dcf_happy_path() -> None:
import pandas as pd
fcf = pd.Series(
[70.0, 80.0, 90.0, 100.0],
index=pd.to_datetime(["2021", "2022", "2023", "2024"]),
)
result = data_service._run_dcf(fcf, shares_outstanding=1_000_000_000.0)
assert "intrinsic_value_per_share" in result
assert result["intrinsic_value_per_share"] > 0
assert "growth_rate_used" in result
assert "enterprise_value" in result
assert "net_debt" in result
def test_run_dcf_negative_base_fcf() -> None:
import pandas as pd
# last (most recent) FCF is negative
fcf = pd.Series(
[100.0, 90.0, 80.0, -50.0],
index=pd.to_datetime(["2021", "2022", "2023", "2024"]),
)
result = data_service._run_dcf(fcf, shares_outstanding=1_000_000_000.0)
assert "error" in result
assert result["error"]
def test_run_dcf_insufficient_history() -> None:
import pandas as pd
fcf = pd.Series([100.0], index=pd.to_datetime(["2024"]))
result = data_service._run_dcf(fcf, shares_outstanding=1_000_000_000.0)
assert result == {}
def test_run_dcf_zero_shares() -> None:
import pandas as pd
fcf = pd.Series([100.0, 110.0], index=pd.to_datetime(["2023", "2024"]))
result = data_service._run_dcf(fcf, shares_outstanding=0.0)
assert result == {}
def test_run_ev_ebitda_happy_path() -> None:
result = data_service._run_ev_ebitda(
ebitda=100.0,
total_debt=50.0,
total_cash=20.0,
preferred_equity=0.0,
minority_interest=0.0,
shares_outstanding=10.0,
target_multiple=15.0,
)
# implied_ev = 100 * 15 = 1500; net_debt = 50-20 = 30; equity = 1470; per_share = 147
assert result["implied_price_per_share"] == 147.0
assert result["implied_ev"] == 1500.0
assert result["net_debt"] == 30.0
def test_run_ev_ebitda_zero_ebitda() -> None:
result = data_service._run_ev_ebitda(
ebitda=0.0, total_debt=0.0, total_cash=0.0,
preferred_equity=0.0, minority_interest=0.0,
shares_outstanding=10.0, target_multiple=15.0,
)
assert result == {}
def test_run_ev_revenue_happy_path() -> None:
result = data_service._run_ev_revenue(
revenue=500.0,
total_debt=50.0,
total_cash=20.0,
preferred_equity=0.0,
minority_interest=0.0,
shares_outstanding=10.0,
target_multiple=5.0,
)
# implied_ev = 500*5 = 2500; net_debt = 30; equity = 2470; per_share = 247
assert result["implied_price_per_share"] == 247.0
def test_run_ev_revenue_zero_revenue() -> None:
result = data_service._run_ev_revenue(
revenue=0.0, total_debt=0.0, total_cash=0.0,
preferred_equity=0.0, minority_interest=0.0,
shares_outstanding=10.0, target_multiple=5.0,
)
assert result == {}
def test_run_price_to_book_happy_path() -> None:
result = data_service._run_price_to_book(
book_value_per_share=20.0, target_multiple=3.0
)
assert result["implied_price_per_share"] == 60.0
assert result["target_multiple_used"] == 3.0
assert result["book_value_per_share"] == 20.0
def test_run_price_to_book_zero_bvps() -> None:
result = data_service._run_price_to_book(
book_value_per_share=0.0, target_multiple=3.0
)
assert result == {}
|