-
Notifications
You must be signed in to change notification settings - Fork 135
Expand file tree
/
Copy pathrunner-command-retry.test.ts
More file actions
915 lines (797 loc) · 35.6 KB
/
runner-command-retry.test.ts
File metadata and controls
915 lines (797 loc) · 35.6 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
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
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
import { beforeEach, test, vi } from 'vitest';
import assert from 'node:assert/strict';
import { IOS_SIMULATOR } from '../../../__tests__/test-utils/index.ts';
import { clearRequestCanceled, markRequestCanceled } from '../../../daemon/request-cancel.ts';
import { AppError } from '../../../utils/errors.ts';
import type { RunnerSession } from '../runner-session-types.ts';
const {
mockEnsureRunnerSession,
mockExecuteRunnerCommandWithSession,
mockEmitDiagnostic,
mockInvalidateRunnerSession,
mockMarkRunnerXctestrunArtifactBadForRun,
} = vi.hoisted(() => ({
mockEnsureRunnerSession: vi.fn(),
mockExecuteRunnerCommandWithSession: vi.fn(),
mockEmitDiagnostic: vi.fn(),
mockInvalidateRunnerSession: vi.fn(),
mockMarkRunnerXctestrunArtifactBadForRun: 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,
};
});
vi.mock('../runner-xctestrun.ts', async () => {
const actual =
await vi.importActual<typeof import('../runner-xctestrun.ts')>('../runner-xctestrun.ts');
return {
...actual,
markRunnerXctestrunArtifactBadForRun: mockMarkRunnerXctestrunArtifactBadForRun,
};
});
import { prepareIosRunner, runIosRunnerCommand } from '../runner-client.ts';
import type { RunnerXctestrunArtifact } from '../runner-xctestrun.ts';
beforeEach(() => {
vi.resetAllMocks();
mockMarkRunnerXctestrunArtifactBadForRun.mockResolvedValue(undefined);
});
test('prepareIosRunner marks a bad restored artifact and rebuilds once after health failure', async () => {
const fixtures = makeBadCacheRecoveryFixtures();
mockEnsureRunnerSession
.mockResolvedValueOnce(fixtures.restoredSession)
.mockResolvedValueOnce(fixtures.rebuiltSession);
mockExecuteRunnerCommandWithSession
.mockRejectedValueOnce(new AppError('COMMAND_FAILED', 'Runner did not accept connection'))
.mockResolvedValueOnce({ uptimeMs: 42 });
const result = await prepareIosRunner(IOS_SIMULATOR, {
healthTimeoutMs: 90_000,
buildTimeoutMs: 300_000,
});
assertRecoveredPrepareResult(result);
assertBadCacheRecoverySideEffects(fixtures);
assertRecoveredPrepareDiagnostics();
});
test('prepareIosRunner invalidates rebuilt sessions when bad-cache recovery health fails', async () => {
const restoredArtifact = makeRunnerArtifact({
xctestrunPath: '/tmp/restored.xctestrun',
cache: 'restore-key',
artifact: 'valid',
});
const rebuiltArtifact = makeRunnerArtifact({
xctestrunPath: '/tmp/rebuilt.xctestrun',
cache: 'miss',
artifact: 'rebuilt',
});
const restoredSession = makeRunnerSession({
port: 8100,
xctestrunPath: restoredArtifact.xctestrunPath,
xctestrunArtifact: restoredArtifact,
});
const rebuiltSession = makeRunnerSession({
port: 8101,
xctestrunPath: rebuiltArtifact.xctestrunPath,
xctestrunArtifact: rebuiltArtifact,
});
mockEnsureRunnerSession
.mockResolvedValueOnce(restoredSession)
.mockResolvedValueOnce(rebuiltSession);
mockExecuteRunnerCommandWithSession
.mockRejectedValueOnce(new AppError('COMMAND_FAILED', 'Runner endpoint probe failed'))
.mockRejectedValueOnce(new AppError('COMMAND_FAILED', 'Runner health timed out'));
await assert.rejects(
() => prepareIosRunner(IOS_SIMULATOR, { healthTimeoutMs: 90_000 }),
(error: unknown) => {
assert.ok(error instanceof AppError);
assert.equal(error.message, 'artifact restored but runner did not connect');
assert.equal(error.details?.restoredFailureReason, 'Runner endpoint probe failed');
assert.equal(error.details?.xctestrunPath, '/tmp/rebuilt.xctestrun');
assert.equal(error.details?.artifact, 'rebuilt');
assert.equal(error.details?.cache, 'miss');
return true;
},
);
assert.deepEqual(mockInvalidateRunnerSession.mock.calls, [
[restoredSession, 'prepare_cached_runner_health_failed'],
[rebuiltSession, 'prepare_rebuilt_runner_health_failed'],
]);
assert.deepEqual(mockMarkRunnerXctestrunArtifactBadForRun.mock.calls[0], [
restoredArtifact,
'Runner endpoint probe failed',
]);
});
test('prepareIosRunner retries a fresh launch session when the health check cannot connect', async () => {
const stuckSession = makeRunnerSession({ port: 8100 });
const relaunchedSession = makeRunnerSession({ port: 8101 });
mockEnsureRunnerSession.mockResolvedValueOnce(stuckSession).mockResolvedValueOnce(relaunchedSession);
mockExecuteRunnerCommandWithSession
.mockRejectedValueOnce(new AppError('COMMAND_FAILED', 'Runner did not accept connection'))
.mockResolvedValueOnce({ uptimeMs: 42 });
const result = await prepareIosRunner(IOS_SIMULATOR, {
healthTimeoutMs: 90_000,
buildTimeoutMs: 300_000,
});
assert.deepEqual(result.runner, { uptimeMs: 42 });
assert.equal(result.recoveryReason, 'Runner did not accept connection');
assert.equal(mockEnsureRunnerSession.mock.calls[0]?.[1]?.cleanStaleBundles, undefined);
assert.deepEqual(mockInvalidateRunnerSession.mock.calls, [
[stuckSession, 'prepare_runner_health_retry'],
]);
assert.equal(mockEnsureRunnerSession.mock.calls.length, 2);
assert.equal(mockEnsureRunnerSession.mock.calls[1]?.[1]?.cleanStaleBundles, true);
assert.equal(mockEnsureRunnerSession.mock.calls[1]?.[1]?.forceRunnerXctestrunRebuild, undefined);
assert.equal(mockExecuteRunnerCommandWithSession.mock.calls[1]?.[1], relaunchedSession);
assert.deepEqual(
mockEmitDiagnostic.mock.calls.find(
([event]) => event.phase === 'ios_runner_prepare_health_retry',
)?.[0].data,
{
command: 'uptime',
commandId: mockExecuteRunnerCommandWithSession.mock.calls[0]?.[2].commandId,
sessionId: stuckSession.sessionId,
attempt: 1,
maxAttempts: 2,
reason: 'Runner did not accept connection',
},
);
});
test('prepareIosRunner does not force a rebuild when the relaunched fresh session still cannot connect', async () => {
const missArtifact = makeRunnerArtifact({
xctestrunPath: '/tmp/miss.xctestrun',
cache: 'miss',
artifact: 'valid',
});
const exactArtifact = makeRunnerArtifact({
xctestrunPath: '/tmp/exact.xctestrun',
cache: 'exact',
artifact: 'valid',
});
const stuckSession = makeRunnerSession({
port: 8100,
xctestrunPath: missArtifact.xctestrunPath,
xctestrunArtifact: missArtifact,
});
const relaunchedSession = makeRunnerSession({
port: 8101,
xctestrunPath: exactArtifact.xctestrunPath,
xctestrunArtifact: exactArtifact,
});
mockEnsureRunnerSession.mockResolvedValueOnce(stuckSession).mockResolvedValueOnce(relaunchedSession);
mockExecuteRunnerCommandWithSession
.mockRejectedValueOnce(new AppError('COMMAND_FAILED', 'Runner did not accept connection'))
.mockRejectedValueOnce(new AppError('COMMAND_FAILED', 'Runner did not accept connection'));
await assert.rejects(
() =>
prepareIosRunner(IOS_SIMULATOR, {
healthTimeoutMs: 90_000,
forceRunnerXctestrunRebuild: false,
}),
/Runner did not accept connection/,
);
assert.deepEqual(mockInvalidateRunnerSession.mock.calls, [
[stuckSession, 'prepare_runner_health_retry'],
[relaunchedSession, 'prepare_runner_health_failed'],
]);
assert.equal(mockMarkRunnerXctestrunArtifactBadForRun.mock.calls.length, 0);
assert.equal(mockEnsureRunnerSession.mock.calls.length, 2);
assert.equal(mockEnsureRunnerSession.mock.calls[0]?.[1]?.cleanStaleBundles, undefined);
assert.equal(mockEnsureRunnerSession.mock.calls[0]?.[1]?.forceRunnerXctestrunRebuild, false);
assert.equal(mockEnsureRunnerSession.mock.calls[1]?.[1]?.cleanStaleBundles, true);
assert.equal(mockEnsureRunnerSession.mock.calls[1]?.[1]?.forceRunnerXctestrunRebuild, false);
});
test('prepareIosRunner does not relaunch after non-retryable runner startup failures', async () => {
const failedSession = makeRunnerSession({ port: 8100 });
mockEnsureRunnerSession.mockResolvedValueOnce(failedSession);
mockExecuteRunnerCommandWithSession.mockRejectedValueOnce(
new AppError('COMMAND_FAILED', 'xcodebuild exited early'),
);
await assert.rejects(
() => prepareIosRunner(IOS_SIMULATOR, { healthTimeoutMs: 90_000 }),
/xcodebuild exited early/,
);
assert.equal(mockEnsureRunnerSession.mock.calls.length, 1);
assert.equal(mockInvalidateRunnerSession.mock.calls.length, 0);
assert.equal(mockMarkRunnerXctestrunArtifactBadForRun.mock.calls.length, 0);
});
test('prepareIosRunner does not relaunch after request cancellation', async () => {
const requestId = 'prepare-canceled-before-retry';
const stuckSession = makeRunnerSession({ port: 8100 });
mockEnsureRunnerSession.mockResolvedValueOnce(stuckSession);
mockExecuteRunnerCommandWithSession.mockImplementationOnce(() => {
markRequestCanceled(requestId);
throw new AppError('COMMAND_FAILED', 'Runner did not accept connection');
});
try {
await assert.rejects(
() => prepareIosRunner(IOS_SIMULATOR, { healthTimeoutMs: 90_000, requestId }),
/request canceled/,
);
} finally {
clearRequestCanceled(requestId);
}
assert.equal(mockEnsureRunnerSession.mock.calls.length, 1);
assert.equal(mockInvalidateRunnerSession.mock.calls.length, 0);
});
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(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(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 emit readiness recovery diagnostics after failed preflight restart succeeds', 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 diagnostics = await captureDiagnostics(async () => {
const result = await runIosRunnerCommand(IOS_SIMULATOR, { command: 'tap', x: 120, y: 240 });
assert.deepEqual(result, { message: 'tapped' });
});
assert.match(diagnostics, /ios_runner_readiness_preflight_recovered/);
assert.match(diagnostics, /"recovery":"session_restarted"/);
});
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(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 run status recovery after transport failure when readiness preflight was skipped', async () => {
const session = makeRunnerSession({ port: 8100, ready: true });
mockEnsureRunnerSession.mockResolvedValueOnce(session);
mockExecuteRunnerCommandWithSession
.mockRejectedValueOnce(
new AppError('COMMAND_FAILED', 'fetch failed', {
runnerReadinessPreflightSkipped: true,
runnerReadinessPreflightSkipReason: 'recent_successful_response',
}),
)
.mockResolvedValueOnce({
lifecycleState: 'completed',
lifecycleResponseJson: JSON.stringify({ ok: true, data: { message: 'tapped' } }),
});
const diagnostics = await captureDiagnostics(async () => {
const result = await runIosRunnerCommand(IOS_SIMULATOR, { command: 'tap', x: 120, y: 240 });
assert.deepEqual(result, { message: 'tapped' });
});
assert.equal(mockInvalidateRunnerSession.mock.calls.length, 0);
assert.equal(mockExecuteRunnerCommandWithSession.mock.calls.length, 2);
assert.equal(mockExecuteRunnerCommandWithSession.mock.calls[1]?.[2].command, 'status');
assert.match(diagnostics, /ios_runner_command_status_recovery/);
assert.match(diagnostics, /"readinessPreflightSkipped":true/);
assert.match(diagnostics, /"readinessPreflightSkipReason":"recent_successful_response"/);
});
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 startup commands use the session startup timeout override', async () => {
const session = makeRunnerSession({
port: 8100,
ready: false,
startupTimeoutMs: 240_000,
});
mockEnsureRunnerSession.mockResolvedValue(session);
mockExecuteRunnerCommandWithSession.mockResolvedValue({ currentUptimeMs: 42 });
const result = await runIosRunnerCommand(
IOS_SIMULATOR,
{ command: 'uptime' },
{ startupTimeoutMs: 240_000 },
);
assert.deepEqual(result, { currentUptimeMs: 42 });
assert.equal(mockExecuteRunnerCommandWithSession.mock.calls[0]?.[4], 240_000);
});
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 include skipped readiness context in lost-response guidance', async () => {
const session = makeRunnerSession({ port: 8100, ready: true });
mockEnsureRunnerSession.mockResolvedValueOnce(session);
mockExecuteRunnerCommandWithSession
.mockRejectedValueOnce(
new AppError('COMMAND_FAILED', 'fetch failed', {
runnerReadinessPreflightSkipped: true,
runnerReadinessPreflightSkipReason: 'recent_successful_response',
runnerReadinessPreflightSkippedAgeMs: 4,
}),
)
.mockResolvedValueOnce({ lifecycleState: 'completed' });
await assert.rejects(
() => runIosRunnerCommand(IOS_SIMULATOR, { command: 'tap', x: 120, y: 240 }),
(error: unknown) => {
assert.ok(error instanceof AppError);
assert.equal(error.details?.recovery, 'completed_without_retained_response');
assert.equal(error.details?.readinessPreflightSkipped, true);
assert.equal(error.details?.readinessPreflightSkipReason, 'recent_successful_response');
assert.equal(error.details?.readinessPreflightSkippedAgeMs, 4);
assert.match(String(error.details?.hint), /skipped the uptime preflight/);
assert.match(String(error.details?.hint), /status recovery confirmed/);
assert.match(String(error.details?.hint), /snapshot -i/);
return true;
},
);
});
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 makeBadCacheRecoveryFixtures() {
const restoredArtifact = makeRunnerArtifact({
xctestrunPath: '/tmp/restored.xctestrun',
cache: 'exact',
artifact: 'valid',
});
const rebuiltArtifact = makeRunnerArtifact({
xctestrunPath: '/tmp/rebuilt.xctestrun',
cache: 'miss',
artifact: 'rebuilt',
buildMs: 123,
});
const restoredSession = makeRunnerSession({
port: 8100,
xctestrunPath: restoredArtifact.xctestrunPath,
xctestrunArtifact: restoredArtifact,
});
const rebuiltSession = makeRunnerSession({
port: 8101,
xctestrunPath: rebuiltArtifact.xctestrunPath,
xctestrunArtifact: rebuiltArtifact,
});
return { restoredArtifact, restoredSession, rebuiltSession };
}
function assertRecoveredPrepareResult(result: Awaited<ReturnType<typeof prepareIosRunner>>): void {
assert.deepEqual(result, {
runner: { uptimeMs: 42 },
cache: 'miss',
artifact: 'rebuilt',
buildMs: 123,
connectMs: result.connectMs,
healthCheckMs: result.healthCheckMs,
xctestrunPath: '/tmp/rebuilt.xctestrun',
recoveryReason: 'Runner did not accept connection',
});
assert.equal(result.failureReason, undefined);
assert.equal(result.connectMs >= 0, true);
assert.equal(result.healthCheckMs >= 0, true);
}
function assertBadCacheRecoverySideEffects(
fixtures: ReturnType<typeof makeBadCacheRecoveryFixtures>,
): void {
assert.deepEqual(mockInvalidateRunnerSession.mock.calls[0], [
fixtures.restoredSession,
'prepare_cached_runner_health_failed',
]);
assert.deepEqual(mockMarkRunnerXctestrunArtifactBadForRun.mock.calls[0], [
fixtures.restoredArtifact,
'Runner did not accept connection',
]);
assert.deepEqual(mockEnsureRunnerSession.mock.calls[1]?.[1], {
healthTimeoutMs: 90_000,
buildTimeoutMs: 300_000,
cleanStaleBundles: true,
forceRunnerXctestrunRebuild: true,
});
assert.equal(mockExecuteRunnerCommandWithSession.mock.calls.length, 2);
assert.equal(mockExecuteRunnerCommandWithSession.mock.calls[0]?.[2].command, 'uptime');
assert.equal(mockExecuteRunnerCommandWithSession.mock.calls[0]?.[4], 90_000);
assert.equal(mockExecuteRunnerCommandWithSession.mock.calls[1]?.[1], fixtures.rebuiltSession);
}
function assertRecoveredPrepareDiagnostics(): void {
assert.ok(
mockEmitDiagnostic.mock.calls.some(
([event]) => event.phase === 'ios_runner_prepare_bad_cache_recovered',
),
);
const prepareDiagnostic = mockEmitDiagnostic.mock.calls.find(
([event]) => event.phase === 'apple_runner_prepare',
)?.[0];
assert.ok(prepareDiagnostic);
assert.equal(prepareDiagnostic.level, 'info');
assert.equal(prepareDiagnostic.data?.cache, 'miss');
assert.equal(prepareDiagnostic.data?.artifact, 'rebuilt');
assert.equal(prepareDiagnostic.data?.xctestrunPath, '/tmp/rebuilt.xctestrun');
assert.equal(prepareDiagnostic.data?.recoveryReason, 'Runner did not accept connection');
assert.equal(prepareDiagnostic.data?.failureReason, undefined);
}
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;
}
function makeRunnerArtifact(
overrides: Partial<RunnerXctestrunArtifact> = {},
): RunnerXctestrunArtifact {
return {
xctestrunPath: '/tmp/runner.xctestrun',
derived: '/tmp/derived',
cache: 'exact',
artifact: 'valid',
buildMs: 0,
xctestrunPathSource: 'manifest',
...overrides,
};
}
async function captureDiagnostics(callback: () => Promise<void>): Promise<string> {
await callback();
return JSON.stringify(mockEmitDiagnostic.mock.calls.map(([event]) => event));
}