-
Notifications
You must be signed in to change notification settings - Fork 62
/
quoteSummary.spec.ts
225 lines (185 loc) · 5.77 KB
/
quoteSummary.spec.ts
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
import quoteSummary from "./quoteSummary.js";
import testSymbols from "../../tests/testSymbols.js";
import testYf from "../../tests/testYf.js";
const yf = testYf({ quoteSummary });
interface itValidatesOpts {
skip?: Array<string>;
}
function itValidates(name: string | "all", opts: itValidatesOpts = {}) {
let symbols = testSymbols({
add: [
// incomeStatementHistory/sellingGeneralAdministrative is null (#258)
// "Got {}->null for 'number', did you want 'number | null' ?"
"CMCOM.AS",
"CRM",
"ADA-USD", // has summaryProfile.twitter (#418),
"EREGL.IS", // null in incomeStatementHistory/operatingIncome, in some .IS (#517)
"THYAO.IS", // (#517)
"HISU-U.TO", // topHoldings: missing StockPosition, bondPosition (#639)
"EURN", // secFilings: missing some filing types (#664)
"ARMK", // secFilings: missing some filing types (#664)
],
});
if (opts.skip)
// @ts-ignore
symbols = symbols.filter((s) => !opts.skip.includes(s));
const modules = name === "all" ? "all" : [name];
it.each(symbols)("validates %s", async (symbol) => {
const devel = `quoteSummary-${name}-${symbol}.json`;
try {
await yf.quoteSummary(symbol, { modules }, { devel });
} catch (error) {
if (
// TypeScript 4.4.4 assumes errors are `unknown`, need to type guard.
error instanceof Error &&
error.message.match(/^No fundamentals data found/)
)
return;
throw error;
}
});
}
describe("quoteSummary", () => {
describe("quoteSummary", () => {
// See also common module tests in moduleExec.spec.js
if (process.env.FETCH_DEVEL !== "nocache")
it("throws on invalid result", async () => {
await expect(
yf.quoteSummary("AAPL", {}, { devel: "weirdJsonResult.fake.json" }),
).rejects.toThrow(/Unexpected result/);
});
});
describe("modules", () => {
describe("assetProfile", () => {
itValidates("assetProfile");
});
describe("balanceSheetHistory", () => {
itValidates("balanceSheetHistory");
});
describe("balanceSheetHistoryQuarterly", () => {
itValidates("balanceSheetHistoryQuarterly");
});
describe("calendarEvents", () => {
itValidates("calendarEvents");
});
describe("cashflowStatementHistory", () => {
itValidates("cashflowStatementHistory");
});
describe("cashflowStatementHistoryQuarterly", () => {
itValidates("cashflowStatementHistoryQuarterly");
});
describe("defaultKeyStatistics", () => {
itValidates("defaultKeyStatistics");
});
describe("earnings", () => {
itValidates("earnings");
});
describe("earningsHistory", () => {
itValidates("earningsHistory");
});
describe("earningsTrend", () => {
itValidates("earningsTrend");
});
describe("financialData", () => {
itValidates("financialData");
});
describe("fundOwnership", () => {
itValidates("fundOwnership");
});
describe("incomeStatementHistory", () => {
itValidates("incomeStatementHistory");
});
describe("incomeStatementHistoryQuarterly", () => {
itValidates("incomeStatementHistoryQuarterly");
});
describe("indexTrend", () => {
itValidates("indexTrend");
});
describe("industryTrend", () => {
itValidates("industryTrend");
});
describe("insiderHolders", () => {
itValidates("insiderHolders");
});
describe("insiderTransactions", () => {
itValidates("insiderTransactions");
});
describe("institutionOwnership", () => {
itValidates("institutionOwnership");
});
describe("majorDirectHolders", () => {
itValidates("majorDirectHolders");
});
describe("majorHoldersBreakdown", () => {
itValidates("majorHoldersBreakdown");
});
describe("netSharePurchaseActivity", () => {
itValidates("netSharePurchaseActivity");
});
describe("price", () => {
itValidates("price");
});
describe("quoteType", () => {
itValidates("quoteType");
});
describe("recommendationTrend", () => {
itValidates("recommendationTrend");
});
describe("secFilings", () => {
itValidates("secFilings");
it("handles AAPL's secFilings", async () => {
await yf.quoteSummary(
"AAPL",
{
modules: ["secFilings"],
},
{ devel: "quoteSummary-secFilings-AAPL-new.json" },
);
});
});
describe("summaryDetail", () => {
itValidates("summaryDetail");
});
describe("summaryProfile", () => {
itValidates("summaryProfile");
});
describe("upgradeDowngradeHistory", () => {
itValidates("upgradeDowngradeHistory");
});
}); /* modules */
describe("all modules at once", () => {
// Some modules change the output format of other modules!
// @ts-ignore
itValidates("all");
});
// Output can differ depending on the combination of modules.
describe("other combinations", () => {
it("handles BMW.DE module combinations", async () => {
await yf.quoteSummary(
"BMW.DE",
{
modules: [
"price",
"assetProfile",
"incomeStatementHistory",
"incomeStatementHistoryQuarterly",
"balanceSheetHistory",
"balanceSheetHistoryQuarterly",
"cashflowStatementHistory",
"cashflowStatementHistoryQuarterly",
"quoteType",
"financialData",
"defaultKeyStatistics",
"earnings",
"earningsHistory",
"earningsTrend",
"calendarEvents",
"summaryDetail",
"summaryProfile",
],
},
{ devel: "quoteSummary-other-BMW.DE.json" },
);
});
});
});