-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathmarigold.test.ts
More file actions
269 lines (219 loc) · 7.91 KB
/
Copy pathmarigold.test.ts
File metadata and controls
269 lines (219 loc) · 7.91 KB
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
import { vi } from 'vitest';
import { main } from './marigold.js';
// Suppress the auto-invocation guard: when `process.argv[1]` is anything other
// than this module's file URL, the bottom of bin/marigold.ts does nothing on
// import. Vitest's argv never matches, so importing is safe.
const emitMock = vi.hoisted(() => vi.fn());
vi.mock('../lib/telemetry.js', () => ({
emit: emitMock,
}));
vi.mock('../commands/docs.js', () => ({
runDocs: vi.fn(async () => ({ output: 'docs output', cacheHit: false })),
}));
vi.mock('../commands/list.js', () => ({
runList: vi.fn(async () => ({ output: 'list output', cacheHit: false })),
}));
vi.mock('../commands/examples.js', () => ({
runExamples: vi.fn(async () => ({
output: 'examples output',
cacheHit: false,
})),
}));
vi.mock('../commands/search.js', () => ({
runSearch: vi.fn(async () => ({ output: 'search output', cacheHit: false })),
}));
vi.mock('../commands/doctor.js', () => ({
runDoctor: vi.fn(async () => ({ output: 'doctor output', hasErrors: false })),
}));
let stdoutSpy: ReturnType<typeof vi.spyOn>;
let stderrSpy: ReturnType<typeof vi.spyOn>;
beforeEach(() => {
stdoutSpy = vi.spyOn(process.stdout, 'write').mockImplementation(() => true);
stderrSpy = vi.spyOn(process.stderr, 'write').mockImplementation(() => true);
});
afterEach(() => {
emitMock.mockClear();
stdoutSpy.mockRestore();
stderrSpy.mockRestore();
});
describe('main() — telemetry on validation failure', () => {
test('emits exitCode 1 with args when --section is invalid', async () => {
const code = await main(['docs', 'Button', '--section', 'bogus']);
expect(code).toBe(1);
expect(emitMock).toHaveBeenCalledTimes(1);
const event = emitMock.mock.calls[0][0];
expect(event).toMatchObject({
command: 'docs',
exitCode: 1,
args: expect.objectContaining({
component: 'Button',
section: 'bogus',
}),
});
});
test('emits exitCode 1 when the component positional is missing', async () => {
const code = await main(['docs']);
expect(code).toBe(1);
expect(emitMock).toHaveBeenCalledTimes(1);
expect(emitMock.mock.calls[0][0]).toMatchObject({
command: 'docs',
exitCode: 1,
args: expect.objectContaining({ component: '' }),
});
});
test('emits exitCode 1 when telemetry subcommand is missing', async () => {
const code = await main(['telemetry']);
expect(code).toBe(1);
expect(emitMock).toHaveBeenCalledTimes(1);
expect(emitMock.mock.calls[0][0]).toMatchObject({
command: 'telemetry',
exitCode: 1,
});
});
test('does not emit telemetry for unknown commands', async () => {
const code = await main(['nonsense']);
expect(code).toBe(1);
expect(emitMock).not.toHaveBeenCalled();
});
});
describe('main() — examples command', () => {
test('dispatches `examples list` and emits success telemetry', async () => {
const code = await main(['examples', 'list']);
expect(code).toBe(0);
expect(emitMock).toHaveBeenCalledTimes(1);
expect(emitMock.mock.calls[0][0]).toMatchObject({
command: 'examples',
exitCode: 0,
args: expect.objectContaining({ sub: 'list' }),
});
});
test('dispatches `examples get <slug>` with the slug in telemetry', async () => {
const code = await main(['examples', 'get', 'filter']);
expect(code).toBe(0);
expect(emitMock.mock.calls[0][0]).toMatchObject({
command: 'examples',
exitCode: 0,
args: expect.objectContaining({ sub: 'get', slug: 'filter' }),
});
});
test('fails when the subcommand is missing', async () => {
const code = await main(['examples']);
expect(code).toBe(1);
expect(emitMock.mock.calls[0][0]).toMatchObject({
command: 'examples',
exitCode: 1,
});
});
test('fails when the subcommand is invalid', async () => {
const code = await main(['examples', 'bogus']);
expect(code).toBe(1);
expect(emitMock.mock.calls[0][0]).toMatchObject({ exitCode: 1 });
});
test('fails when `get` has no slug', async () => {
const code = await main(['examples', 'get']);
expect(code).toBe(1);
expect(emitMock.mock.calls[0][0]).toMatchObject({
command: 'examples',
exitCode: 1,
args: expect.objectContaining({ sub: 'get' }),
});
});
test('fails when `list` is given a trailing positional', async () => {
const code = await main(['examples', 'list', 'filter']);
expect(code).toBe(1);
expect(emitMock.mock.calls[0][0]).toMatchObject({
command: 'examples',
exitCode: 1,
args: expect.objectContaining({ sub: 'list' }),
});
});
test('fails when `get` is given an extra positional', async () => {
const code = await main(['examples', 'get', 'filter', 'extra']);
expect(code).toBe(1);
expect(emitMock.mock.calls[0][0]).toMatchObject({
command: 'examples',
exitCode: 1,
args: expect.objectContaining({ sub: 'get', slug: 'filter' }),
});
});
});
describe('main() — search command', () => {
test('dispatches a query and emits success telemetry', async () => {
const code = await main(['search', 'field', 'validation']);
expect(code).toBe(0);
expect(emitMock).toHaveBeenCalledTimes(1);
expect(emitMock.mock.calls[0][0]).toMatchObject({
command: 'search',
exitCode: 0,
// The raw query is never sent — only that one was provided.
args: expect.objectContaining({ query: 'used' }),
});
});
test('fails when the query is missing', async () => {
const code = await main(['search']);
expect(code).toBe(1);
expect(emitMock.mock.calls[0][0]).toMatchObject({
command: 'search',
exitCode: 1,
});
});
test('fails when --limit is not a positive integer', async () => {
const code = await main(['search', 'tag', '--limit', '0']);
expect(code).toBe(1);
expect(emitMock.mock.calls[0][0]).toMatchObject({
command: 'search',
exitCode: 1,
args: expect.objectContaining({ limit: '0' }),
});
});
test('fails when --format is invalid', async () => {
const code = await main(['search', 'tag', '--format', 'bogus']);
expect(code).toBe(1);
expect(emitMock.mock.calls[0][0]).toMatchObject({ exitCode: 1 });
});
});
describe('main() — doctor command', () => {
test('dispatches doctor and records the format in telemetry', async () => {
const code = await main(['doctor']);
expect(code).toBe(0);
expect(emitMock).toHaveBeenCalledTimes(1);
expect(emitMock.mock.calls[0][0]).toMatchObject({
command: 'doctor',
exitCode: 0,
args: expect.objectContaining({ format: 'text' }),
});
});
test('fails on an unexpected positional', async () => {
const code = await main(['doctor', 'foo']);
expect(code).toBe(1);
expect(emitMock.mock.calls[0][0]).toMatchObject({
command: 'doctor',
exitCode: 1,
});
});
test('clamps an invalid --format to `invalid` in telemetry', async () => {
const code = await main(['doctor', '--format', 'banana']);
expect(code).toBe(1);
// The raw string must never reach telemetry — it is clamped to an enum.
expect(emitMock.mock.calls[0][0]).toMatchObject({
command: 'doctor',
exitCode: 1,
args: expect.objectContaining({ format: 'invalid' }),
});
});
});
describe('main() — migrate command', () => {
// The version positional is optional, so a mistyped version is otherwise
// indistinguishable from a path. The hint has to be checked before the
// positional-count validation, which would reject this as "too many paths".
test('names the migration a version-ish positional probably meant', async () => {
const code = await main(['migrate', '18.1', './src']);
expect(code).toBe(1);
expect(stderrSpy.mock.calls.flat().join('')).toContain('Did you mean v18?');
expect(emitMock.mock.calls[0][0]).toMatchObject({
command: 'migrate',
exitCode: 1,
args: expect.objectContaining({ version: 'auto' }),
});
});
});