-
Notifications
You must be signed in to change notification settings - Fork 162
Expand file tree
/
Copy pathrunner-command-retry.test.ts
More file actions
504 lines (433 loc) · 20 KB
/
Copy pathrunner-command-retry.test.ts
File metadata and controls
504 lines (433 loc) · 20 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
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
import { beforeEach, test, vi } from 'vitest';
import assert from 'node:assert/strict';
import { IOS_SIMULATOR } from '../../../__tests__/test-utils/index.ts';
import { AppError } from '../../../utils/errors.ts';
import type { RunnerSession } from '../runner-session-types.ts';
const {
mockEnsureRunnerSession,
mockExecuteRunnerCommandWithSession,
mockEmitDiagnostic,
mockInvalidateRunnerSession,
mockStopRunnerSession,
} = vi.hoisted(() => ({
mockEnsureRunnerSession: vi.fn(),
mockExecuteRunnerCommandWithSession: vi.fn(),
mockEmitDiagnostic: vi.fn(),
mockInvalidateRunnerSession: vi.fn(),
mockStopRunnerSession: vi.fn(),
}));
vi.mock('../../../utils/diagnostics.ts', async () => {
const actual = await vi.importActual<typeof import('../../../utils/diagnostics.ts')>(
'../../../utils/diagnostics.ts',
);
return {
...actual,
emitDiagnostic: mockEmitDiagnostic,
};
});
vi.mock('../runner-session.ts', async () => {
const actual =
await vi.importActual<typeof import('../runner-session.ts')>('../runner-session.ts');
return {
...actual,
ensureRunnerSession: mockEnsureRunnerSession,
executeRunnerCommandWithSession: mockExecuteRunnerCommandWithSession,
invalidateRunnerSession: mockInvalidateRunnerSession,
stopRunnerSession: mockStopRunnerSession,
};
});
import { runIosRunnerCommand } from '../runner-client.ts';
beforeEach(() => {
vi.resetAllMocks();
});
test('mutating commands restart stale ready sessions when the preflight probe never reaches the runner', async () => {
const staleSession = makeRunnerSession({ port: 8100, ready: true });
const freshSession = makeRunnerSession({ port: 8101, ready: false });
mockEnsureRunnerSession.mockResolvedValueOnce(staleSession).mockResolvedValueOnce(freshSession);
mockExecuteRunnerCommandWithSession
.mockRejectedValueOnce(new AppError('COMMAND_FAILED', 'Runner did not accept connection'))
.mockResolvedValueOnce({ message: 'tapped' });
const result = await runIosRunnerCommand(IOS_SIMULATOR, { command: 'tap', x: 120, y: 240 });
assert.deepEqual(result, { message: 'tapped' });
assert.equal(mockEnsureRunnerSession.mock.calls.length, 2);
assert.equal(mockEnsureRunnerSession.mock.calls[1]?.[1]?.cleanStaleBundles, true);
assert.deepEqual(mockInvalidateRunnerSession.mock.calls[0], [
staleSession,
'runner_connect_failed_before_command_send',
]);
assert.equal(mockStopRunnerSession.mock.calls.length, 0);
assert.equal(mockExecuteRunnerCommandWithSession.mock.calls.length, 2);
assert.equal(mockExecuteRunnerCommandWithSession.mock.calls[0]?.[2].command, 'tap');
assert.equal(mockExecuteRunnerCommandWithSession.mock.calls[1]?.[1], freshSession);
});
test('mutating commands retry startup sessions with stale bundle cleanup', async () => {
const startupSession = makeRunnerSession({ port: 8100, ready: false });
const freshSession = makeRunnerSession({ port: 8101, ready: false });
mockEnsureRunnerSession.mockResolvedValueOnce(startupSession).mockResolvedValueOnce(freshSession);
mockExecuteRunnerCommandWithSession
.mockRejectedValueOnce(new AppError('COMMAND_FAILED', 'Runner did not accept connection'))
.mockResolvedValueOnce({ message: 'tapped' });
const result = await runIosRunnerCommand(IOS_SIMULATOR, { command: 'tap', x: 120, y: 240 });
assert.deepEqual(result, { message: 'tapped' });
assert.equal(mockEnsureRunnerSession.mock.calls.length, 2);
assert.equal(mockEnsureRunnerSession.mock.calls[1]?.[1]?.cleanStaleBundles, true);
assert.deepEqual(mockInvalidateRunnerSession.mock.calls[0], [
startupSession,
'runner_connect_failed_before_command_send',
]);
assert.equal(mockStopRunnerSession.mock.calls.length, 0);
assert.equal(mockExecuteRunnerCommandWithSession.mock.calls.length, 2);
assert.equal(mockExecuteRunnerCommandWithSession.mock.calls[1]?.[1], freshSession);
});
test('mutating commands restart stale sessions when readiness preflight fails before command send', async () => {
const staleSession = makeRunnerSession({ port: 8100, ready: true });
const freshSession = makeRunnerSession({ port: 8101, ready: false });
mockEnsureRunnerSession.mockResolvedValueOnce(staleSession).mockResolvedValueOnce(freshSession);
mockExecuteRunnerCommandWithSession
.mockRejectedValueOnce(
new AppError('COMMAND_FAILED', 'fetch failed', {
runnerReadinessPreflightFailed: true,
}),
)
.mockResolvedValueOnce({ message: 'tapped' });
const result = await runIosRunnerCommand(IOS_SIMULATOR, { command: 'tap', x: 120, y: 240 });
assert.deepEqual(result, { message: 'tapped' });
assert.equal(mockEnsureRunnerSession.mock.calls.length, 2);
assert.deepEqual(mockInvalidateRunnerSession.mock.calls[0], [
staleSession,
'runner_readiness_preflight_failed_before_command_send',
]);
assert.equal(mockExecuteRunnerCommandWithSession.mock.calls.length, 2);
assert.equal(mockExecuteRunnerCommandWithSession.mock.calls[1]?.[1], freshSession);
});
test('mutating commands restart stale sessions when readiness preflight times out before command send', async () => {
const staleSession = makeRunnerSession({ port: 8100, ready: true });
const freshSession = makeRunnerSession({ port: 8101, ready: false });
mockEnsureRunnerSession.mockResolvedValueOnce(staleSession).mockResolvedValueOnce(freshSession);
mockExecuteRunnerCommandWithSession
.mockRejectedValueOnce(
new AppError('COMMAND_FAILED', 'Runner readiness timed out', {
runnerReadinessPreflightFailed: true,
}),
)
.mockResolvedValueOnce({ message: 'tapped' });
const result = await runIosRunnerCommand(IOS_SIMULATOR, { command: 'tap', x: 120, y: 240 });
assert.deepEqual(result, { message: 'tapped' });
assert.equal(mockEnsureRunnerSession.mock.calls.length, 2);
assert.deepEqual(mockInvalidateRunnerSession.mock.calls[0], [
staleSession,
'runner_readiness_preflight_failed_before_command_send',
]);
assert.equal(mockExecuteRunnerCommandWithSession.mock.calls.length, 2);
assert.equal(mockExecuteRunnerCommandWithSession.mock.calls[1]?.[1], freshSession);
});
test('mutating commands do not restart or replay after command send failure', async () => {
const session = makeRunnerSession({ port: 8100, ready: true });
mockEnsureRunnerSession.mockResolvedValueOnce(session);
mockExecuteRunnerCommandWithSession
.mockRejectedValueOnce(new AppError('COMMAND_FAILED', 'fetch failed'))
.mockResolvedValueOnce({ lifecycleState: 'notAccepted' });
await assert.rejects(() =>
runIosRunnerCommand(IOS_SIMULATOR, { command: 'tap', x: 120, y: 240 }),
);
assert.equal(mockEnsureRunnerSession.mock.calls.length, 1);
assert.equal(mockInvalidateRunnerSession.mock.calls.length, 1);
assert.deepEqual(mockInvalidateRunnerSession.mock.calls[0], [
session,
'transport_error_after_command_send',
]);
assert.equal(mockStopRunnerSession.mock.calls.length, 0);
assert.equal(mockExecuteRunnerCommandWithSession.mock.calls.length, 2);
assertDiagnosticDecision({
decision: 'retained',
reason: 'unknown_lifecycle_state',
lifecycleState: 'notAccepted',
});
});
test('mutating commands recover cached responses before invalidating after command send failure', async () => {
const session = makeRunnerSession({ port: 8100, ready: true });
mockEnsureRunnerSession.mockResolvedValueOnce(session);
mockExecuteRunnerCommandWithSession
.mockRejectedValueOnce(new AppError('COMMAND_FAILED', 'fetch failed'))
.mockResolvedValueOnce({
lifecycleState: 'completed',
lifecycleResponseJson: JSON.stringify({ ok: true, data: { message: 'tapped' } }),
});
const result = await runIosRunnerCommand(IOS_SIMULATOR, { command: 'tap', x: 120, y: 240 });
assert.deepEqual(result, { message: 'tapped' });
assert.equal(mockInvalidateRunnerSession.mock.calls.length, 0);
assertDiagnosticDecision({
decision: 'skipped',
reason: 'completed_with_retained_response',
lifecycleState: 'completed',
});
assert.equal(mockExecuteRunnerCommandWithSession.mock.calls.length, 2);
const sentCommand = mockExecuteRunnerCommandWithSession.mock.calls[0]?.[2];
const statusCommand = mockExecuteRunnerCommandWithSession.mock.calls[1]?.[2];
assert.equal(statusCommand.command, 'status');
assert.equal(statusCommand.statusCommandId, sentCommand.commandId);
});
test('mutating commands keep invalidating when status cannot find the command', async () => {
const session = makeRunnerSession({ port: 8100, ready: true });
mockEnsureRunnerSession.mockResolvedValueOnce(session);
mockExecuteRunnerCommandWithSession
.mockRejectedValueOnce(new AppError('COMMAND_FAILED', 'fetch failed'))
.mockResolvedValueOnce({
lifecycleState: 'notAccepted',
});
await assert.rejects(() =>
runIosRunnerCommand(IOS_SIMULATOR, { command: 'tap', x: 120, y: 240 }),
);
assert.deepEqual(mockInvalidateRunnerSession.mock.calls, [
[session, 'transport_error_after_command_send'],
]);
assert.equal(mockExecuteRunnerCommandWithSession.mock.calls.length, 2);
assertDiagnosticDecision({
decision: 'retained',
reason: 'unknown_lifecycle_state',
lifecycleState: 'notAccepted',
});
});
test('mutating commands keep invalidating when status recovery probe fails', async () => {
const session = makeRunnerSession({ port: 8100, ready: true });
mockEnsureRunnerSession.mockResolvedValueOnce(session);
mockExecuteRunnerCommandWithSession
.mockRejectedValueOnce(new AppError('COMMAND_FAILED', 'fetch failed'))
.mockRejectedValueOnce(new AppError('COMMAND_FAILED', 'status probe failed'));
await assert.rejects(() =>
runIosRunnerCommand(IOS_SIMULATOR, { command: 'tap', x: 120, y: 240 }),
);
assert.deepEqual(mockInvalidateRunnerSession.mock.calls, [
[session, 'transport_error_after_command_send'],
]);
assert.equal(mockExecuteRunnerCommandWithSession.mock.calls.length, 2);
assertDiagnosticDecision({
decision: 'retained',
reason: 'status_probe_failed',
});
});
test('mutating commands keep invalidating when status reports an unknown lifecycle state', async () => {
const session = makeRunnerSession({ port: 8100, ready: true });
mockEnsureRunnerSession.mockResolvedValueOnce(session);
mockExecuteRunnerCommandWithSession
.mockRejectedValueOnce(new AppError('COMMAND_FAILED', 'fetch failed'))
.mockResolvedValueOnce({
lifecycleState: 'paused',
});
await assert.rejects(
() => runIosRunnerCommand(IOS_SIMULATOR, { command: 'tap', x: 120, y: 240 }),
(error: unknown) => {
assert.ok(error instanceof AppError);
assert.match(error.message, /lifecycle status was "paused"/);
assert.equal(error.details?.recovery, 'lifecycle_state_not_recoverable');
assert.match(String(error.details?.hint), /conservative invalidation path/);
return true;
},
);
assert.deepEqual(mockInvalidateRunnerSession.mock.calls, [
[session, 'transport_error_after_command_send'],
]);
assert.equal(mockExecuteRunnerCommandWithSession.mock.calls.length, 2);
assertDiagnosticDecision({
decision: 'retained',
reason: 'unknown_lifecycle_state',
lifecycleState: 'paused',
});
});
test('read-only commands retry when completed status has no retained response', async () => {
const session = makeRunnerSession({ port: 8100, ready: true });
mockEnsureRunnerSession.mockResolvedValue(session);
mockExecuteRunnerCommandWithSession
.mockRejectedValueOnce(new AppError('COMMAND_FAILED', 'fetch failed'))
.mockResolvedValueOnce({ lifecycleState: 'completed' })
.mockResolvedValueOnce({ nodes: [], truncated: false });
const result = await runIosRunnerCommand(IOS_SIMULATOR, { command: 'snapshot' });
assert.deepEqual(result, { nodes: [], truncated: false });
assert.equal(mockInvalidateRunnerSession.mock.calls.length, 0);
assert.equal(mockExecuteRunnerCommandWithSession.mock.calls.length, 3);
assert.equal(mockExecuteRunnerCommandWithSession.mock.calls[1]?.[2].command, 'status');
assert.equal(mockExecuteRunnerCommandWithSession.mock.calls[2]?.[2].command, 'snapshot');
assertDiagnosticDecision({
decision: 'skipped',
reason: 'read_only_completed_without_retained_response',
lifecycleState: 'completed',
});
});
test('read-only commands retry when status shows in-flight work', async () => {
const session = makeRunnerSession({ port: 8100, ready: true });
mockEnsureRunnerSession.mockResolvedValue(session);
mockExecuteRunnerCommandWithSession
.mockRejectedValueOnce(new AppError('COMMAND_FAILED', 'fetch failed'))
.mockResolvedValueOnce({ lifecycleState: 'started' })
.mockResolvedValueOnce({ nodes: [], truncated: false });
const result = await runIosRunnerCommand(IOS_SIMULATOR, { command: 'snapshot' });
assert.deepEqual(result, { nodes: [], truncated: false });
assert.equal(mockInvalidateRunnerSession.mock.calls.length, 0);
assert.equal(mockExecuteRunnerCommandWithSession.mock.calls.length, 3);
assert.equal(mockExecuteRunnerCommandWithSession.mock.calls[1]?.[2].command, 'status');
assert.equal(mockExecuteRunnerCommandWithSession.mock.calls[2]?.[2].command, 'snapshot');
});
test('mutating commands report recovery guidance when completed status has no retained response', async () => {
const session = makeRunnerSession({ port: 8100, ready: true });
mockEnsureRunnerSession.mockResolvedValueOnce(session);
mockExecuteRunnerCommandWithSession
.mockRejectedValueOnce(new AppError('COMMAND_FAILED', 'fetch failed'))
.mockResolvedValueOnce({ lifecycleState: 'completed' });
await assert.rejects(
() => runIosRunnerCommand(IOS_SIMULATOR, { command: 'tap', x: 120, y: 240 }),
(error: unknown) => {
assert.ok(error instanceof AppError);
assert.match(error.message, /"tap" completed after the transport response was lost/);
assert.equal(error.details?.recovery, 'completed_without_retained_response');
assert.match(String(error.details?.hint), /kept the session open/);
assert.match(String(error.details?.hint), /will not replay/);
assert.match(String(error.details?.hint), /snapshot -i/);
assert.equal(error.details?.transportError, 'fetch failed');
return true;
},
);
assert.equal(mockInvalidateRunnerSession.mock.calls.length, 0);
assert.equal(mockExecuteRunnerCommandWithSession.mock.calls.length, 2);
assertDiagnosticDecision({
decision: 'skipped',
reason: 'completed_without_retained_response',
lifecycleState: 'completed',
});
});
test('mutating commands preserve runner failure details from status recovery', async () => {
const session = makeRunnerSession({ port: 8100, ready: true });
mockEnsureRunnerSession.mockResolvedValueOnce(session);
mockExecuteRunnerCommandWithSession
.mockRejectedValueOnce(new AppError('COMMAND_FAILED', 'fetch failed'))
.mockResolvedValueOnce({
lifecycleState: 'failed',
lifecycleErrorCode: 'AMBIGUOUS_MATCH',
lifecycleErrorMessage: 'Found 2 matching buttons',
lifecycleErrorHint: 'Use a more specific selector.',
});
await assert.rejects(
() => runIosRunnerCommand(IOS_SIMULATOR, { command: 'tap', x: 120, y: 240 }),
(error: unknown) => {
assert.ok(error instanceof AppError);
assert.equal(error.code, 'AMBIGUOUS_MATCH');
assert.equal(error.message, 'Found 2 matching buttons');
assert.equal(error.details?.recovery, 'runner_reported_failure');
assert.equal(error.details?.hint, 'Use a more specific selector.');
assert.equal(error.details?.transportError, 'fetch failed');
return true;
},
);
assert.equal(mockInvalidateRunnerSession.mock.calls.length, 0);
assert.equal(mockExecuteRunnerCommandWithSession.mock.calls.length, 2);
assertDiagnosticDecision({
decision: 'skipped',
reason: 'runner_reported_failure',
lifecycleState: 'failed',
});
});
test('mutating commands use recovery guidance when failed status has no runner hint', async () => {
const session = makeRunnerSession({ port: 8100, ready: true });
mockEnsureRunnerSession.mockResolvedValueOnce(session);
mockExecuteRunnerCommandWithSession
.mockRejectedValueOnce(new AppError('COMMAND_FAILED', 'fetch failed'))
.mockResolvedValueOnce({
lifecycleState: 'failed',
lifecycleErrorMessage: 'Runner command failed after dispatch',
});
await assert.rejects(
() => runIosRunnerCommand(IOS_SIMULATOR, { command: 'tap', x: 120, y: 240 }),
(error: unknown) => {
assert.ok(error instanceof AppError);
assert.equal(error.message, 'Runner command failed after dispatch');
assert.match(String(error.details?.hint), /kept the session open/);
assert.match(String(error.details?.hint), /did not replay/);
return true;
},
);
assert.equal(mockInvalidateRunnerSession.mock.calls.length, 0);
assertDiagnosticDecision({
decision: 'skipped',
reason: 'runner_reported_failure',
lifecycleState: 'failed',
});
});
test('mutating commands report wait-and-inspect guidance when status shows in-flight work', async () => {
const session = makeRunnerSession({ port: 8100, ready: true });
mockEnsureRunnerSession.mockResolvedValueOnce(session);
mockExecuteRunnerCommandWithSession
.mockRejectedValueOnce(new AppError('COMMAND_FAILED', 'fetch failed'))
.mockResolvedValueOnce({ lifecycleState: 'started' });
await assert.rejects(
() => runIosRunnerCommand(IOS_SIMULATOR, { command: 'tap', x: 120, y: 240 }),
(error: unknown) => {
assert.ok(error instanceof AppError);
assert.match(error.message, /"tap" is still started/);
assert.equal(error.details?.recovery, 'command_still_in_flight');
assert.match(String(error.details?.hint), /kept the session open/);
assert.match(String(error.details?.hint), /snapshot -i/);
assert.equal(error.details?.transportError, 'fetch failed');
return true;
},
);
assert.equal(mockInvalidateRunnerSession.mock.calls.length, 0);
assert.equal(mockExecuteRunnerCommandWithSession.mock.calls.length, 2);
assertDiagnosticDecision({
decision: 'skipped',
reason: 'command_still_in_flight',
lifecycleState: 'started',
});
});
test('mutating commands invalidate the retry session without replaying again', async () => {
const staleSession = makeRunnerSession({ port: 8100, ready: true });
const freshSession = makeRunnerSession({ port: 8101, ready: false });
mockEnsureRunnerSession.mockResolvedValueOnce(staleSession).mockResolvedValueOnce(freshSession);
mockExecuteRunnerCommandWithSession
.mockRejectedValueOnce(new AppError('COMMAND_FAILED', 'Runner did not accept connection'))
.mockRejectedValueOnce(new AppError('COMMAND_FAILED', 'fetch failed'))
.mockResolvedValueOnce({ lifecycleState: 'notAccepted' });
await assert.rejects(() =>
runIosRunnerCommand(IOS_SIMULATOR, { command: 'tap', x: 120, y: 240 }),
);
assert.equal(mockEnsureRunnerSession.mock.calls.length, 2);
assert.deepEqual(mockInvalidateRunnerSession.mock.calls, [
[staleSession, 'runner_connect_failed_before_command_send'],
[freshSession, 'transport_error_after_retry_command_send'],
]);
assert.equal(mockExecuteRunnerCommandWithSession.mock.calls.length, 3);
assertDiagnosticDecision({
decision: 'retained',
reason: 'unknown_lifecycle_state',
lifecycleState: 'notAccepted',
});
});
function assertDiagnosticDecision(expected: {
decision: 'skipped' | 'retained';
reason: string;
lifecycleState?: string;
}): void {
assert.ok(
mockEmitDiagnostic.mock.calls.some(([event]) => {
return (
event.phase === 'ios_runner_command_invalidation_decision' &&
event.data?.decision === expected.decision &&
event.data?.reason === expected.reason &&
event.data?.lifecycleState === expected.lifecycleState
);
}),
`missing invalidation decision diagnostic ${JSON.stringify(expected)}`,
);
}
function makeRunnerSession(overrides: Partial<RunnerSession> = {}): RunnerSession {
return {
sessionId: `session-${overrides.port ?? 8100}`,
device: IOS_SIMULATOR,
deviceId: IOS_SIMULATOR.id,
port: 8100,
xctestrunPath: '/tmp/runner.xctestrun',
jsonPath: '/tmp/runner.json',
testPromise: Promise.resolve({ exitCode: 0, stdout: '', stderr: '' }),
child: { pid: 1234, exitCode: null },
ready: true,
...overrides,
} as RunnerSession;
}