ralph-workflow 0.7.18

PROMPT-driven multi-agent orchestrator for git repos
Documentation
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
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
//! Basic execution and error classification tests
//!
//! Tests core fault-tolerant execution behavior:
//! - Timeout handling when saving prompts
//! - Basic error classification for agent errors (signals, network, auth, rate limit)
//! - I/O error classification (timeout, filesystem, network)

use super::*;

#[test]
fn test_extracted_stdout_error_debug_log_is_gated_by_verbosity() {
    let colors = Colors { enabled: false };

    // Capture file logs via a workspace-backed logger so we can assert on emitted lines.
    let workspace = Arc::new(ReadHijackWorkspace::new(
        MemoryWorkspace::new_test(),
        PathBuf::from(".agent/logs/test.log"),
        // Simulate a structured OpenCode error event in the agent logfile.
        "{\"type\":\"error\",\"error\":{\"code\":\"usage_limit_exceeded\"}}\n".to_string(),
    ));
    let logger = Logger::new(colors).with_workspace_log(
        Arc::clone(&workspace) as Arc<dyn Workspace>,
        ".agent/logs/pipeline.log",
    );

    let mut timer = Timer::new();
    let config = Config::default().with_verbosity(crate::config::Verbosity::Normal);

    // Force a non-zero agent exit so the executor attempts stdout error extraction.
    let executor = Arc::new(
        crate::executor::MockProcessExecutor::new().with_agent_result(
            "claude",
            Ok(crate::executor::AgentCommandResult::failure(1, "")),
        ),
    );
    let executor_arc: Arc<dyn crate::executor::ProcessExecutor> = executor;
    let workspace_arc = Arc::clone(&workspace) as Arc<dyn crate::workspace::Workspace>;

    let mut runtime = PipelineRuntime {
        timer: &mut timer,
        logger: &logger,
        colors: &colors,
        config: &config,
        executor: executor_arc.as_ref(),
        executor_arc: Arc::clone(&executor_arc),
        workspace: workspace.as_ref(),
        workspace_arc: Arc::clone(&workspace_arc),
    };

    let env_vars: HashMap<String, String> = HashMap::new();
    let exec_config = AgentExecutionConfig {
        role: AgentRole::Developer,
        agent_name: "opencode",
        cmd_str: "claude -p",
        parser_type: JsonParserType::OpenCode,
        env_vars: &env_vars,
        prompt: "hello",
        display_name: "opencode",
        log_prefix: ".agent/logs/test",
        model_index: 0,
        attempt: 0,
        logfile: ".agent/logs/test.log",
        completion_output_path: None,
    };

    let _ = execute_agent_fault_tolerantly(exec_config, &mut runtime)
        .expect("executor should never return Err");

    let logs = workspace
        .read(Path::new(".agent/logs/pipeline.log"))
        .expect("pipeline log should be readable");

    // Debug-only diagnostics must not be emitted at Normal verbosity.
    assert!(!logs.contains("[DEBUG] [OpenCode] Extracted error from logfile"));
}

#[test]
fn test_io_timeout_from_run_with_prompt_err_arm_returns_invocation_failed() {
    // TIMEOUT CONTRACT: only `timeout_context: Some(_)` (set by the idle-timeout monitor in the
    // Ok path) constitutes definitive timeout evidence. An I/O error of kind `TimedOut` from the
    // infrastructure layer (e.g., filesystem write to save the prompt) is NOT a wall-clock idle
    // timeout — it never carries `timeout_context`. The Err arm must always emit InvocationFailed,
    // never TimedOut.
    let colors = Colors { enabled: false };
    let logger = Logger::new(colors);
    let mut timer = Timer::new();
    let config = Config::default();

    // Use a workspace that times out when saving the prompt.
    let inner_ws = MemoryWorkspace::new_test();
    let workspace = TimedOutWriteWorkspace::new(inner_ws, PathBuf::from(".agent/last_prompt.txt"));

    let executor = Arc::new(crate::executor::MockProcessExecutor::new());
    let executor_arc: Arc<dyn crate::executor::ProcessExecutor> = executor;

    let mut runtime = PipelineRuntime {
        timer: &mut timer,
        logger: &logger,
        colors: &colors,
        config: &config,
        executor: executor_arc.as_ref(),
        executor_arc: Arc::clone(&executor_arc),
        workspace: &workspace,
        workspace_arc: std::sync::Arc::new(workspace.clone()),
    };

    let env_vars: HashMap<String, String> = HashMap::new();
    let exec_config = AgentExecutionConfig {
        role: AgentRole::Developer,
        agent_name: "claude",
        cmd_str: "claude -p",
        parser_type: JsonParserType::Claude,
        env_vars: &env_vars,
        prompt: "hello",
        display_name: "claude",
        log_prefix: ".agent/logs/test",
        model_index: 0,
        attempt: 0,
        logfile: ".agent/logs/test.log",
        completion_output_path: None,
    };

    let result = execute_agent_fault_tolerantly(exec_config, &mut runtime)
        .expect("executor should never return Err");

    // Must NOT be a timeout event — infrastructure I/O errors (TimedOut write) must
    // NOT produce AgentEvent::TimedOut; only the idle-timeout monitor (timeout_context)
    // can produce that event.
    assert!(
        !matches!(
            result.event,
            PipelineEvent::Agent(AgentEvent::TimedOut { .. })
        ),
        "I/O timeout from run_with_prompt Err arm must NOT emit TimedOut; got: {:?}",
        result.event
    );

    // Must be InvocationFailed — the Err arm is an infrastructure failure, not a
    // wall-clock agent timeout.
    assert!(
        matches!(
            result.event,
            PipelineEvent::Agent(AgentEvent::InvocationFailed { .. })
        ),
        "I/O timeout from run_with_prompt Err arm must emit InvocationFailed; got: {:?}",
        result.event
    );
}

#[test]
fn test_classify_agent_error_sigsegv() {
    let error_kind = classify_agent_error(139, "", None);
    assert_eq!(error_kind, AgentErrorKind::InternalError);
}

#[test]
fn test_classify_agent_error_sigabrt() {
    let error_kind = classify_agent_error(134, "", None);
    assert_eq!(error_kind, AgentErrorKind::InternalError);
}

#[test]
fn test_classify_agent_error_sigterm() {
    let error_kind = classify_agent_error(143, "", None);
    assert_eq!(error_kind, AgentErrorKind::Timeout);
}

#[test]
fn test_classify_agent_error_timeout_from_stderr() {
    let error_kind = classify_agent_error(1, "Connection timeout", None);
    assert_eq!(error_kind, AgentErrorKind::Timeout);
}

#[test]
fn test_classify_agent_error_network_connection_reset() {
    let error_kind = classify_agent_error(1, "Connection reset by peer", None);
    assert_eq!(error_kind, AgentErrorKind::Network);
}

#[test]
fn test_classify_agent_error_rate_limit() {
    let error_kind = classify_agent_error(1, "Rate limit exceeded", None);
    assert_eq!(error_kind, AgentErrorKind::RateLimit);
}

#[test]
fn test_classify_agent_error_rate_limit_matches_http_429() {
    let error_kind = classify_agent_error(1, "HTTP 429: Rate limit reached for requests", None);
    assert_eq!(error_kind, AgentErrorKind::RateLimit);
}

#[test]
fn test_classify_agent_error_rate_limit_matches_bare_http_429() {
    // Providers sometimes emit a bare status without additional wording.
    let error_kind = classify_agent_error(1, "HTTP 429", None);
    assert_eq!(error_kind, AgentErrorKind::RateLimit);
}

#[test]
fn test_classify_agent_error_rate_limit_matches_bare_status_429() {
    // Alternative "status" phrasing seen across SDKs.
    let error_kind = classify_agent_error(1, "status 429", None);
    assert_eq!(error_kind, AgentErrorKind::RateLimit);
}

#[test]
fn test_classify_agent_error_rate_limit_overrides_auth_for_403_forbidden_rate_limit() {
    // Some providers return 403 for quota/rate-limit conditions; in those cases we must
    // treat it as RateLimit to preserve the intended fallback semantics.
    let error_kind = classify_agent_error(1, "HTTP 403 Forbidden: rate limit exceeded", None);
    assert_eq!(error_kind, AgentErrorKind::RateLimit);
}

#[test]
fn test_classify_agent_error_rate_limit_overrides_auth_for_403_forbidden_quota_exceeded() {
    // Quota exhaustion can also surface as 403. It should be treated as RateLimit.
    let error_kind =
        classify_agent_error(1, "HTTP 403 Forbidden: exceeded your current quota", None);
    assert_eq!(error_kind, AgentErrorKind::RateLimit);
}

#[test]
fn test_classify_agent_error_rate_limit_from_opencode_json_error() {
    let stderr = r#"✗ Error: {"type":"error","sequence_number":2,"error":{"type":"tokens","code":"rate_limit_exceeded","message":"Rate limit reached"}}"#;
    let error_kind = classify_agent_error(1, stderr, None);
    assert_eq!(error_kind, AgentErrorKind::RateLimit);
}

#[test]
fn test_classify_agent_error_does_not_treat_429_token_count_as_rate_limit() {
    let error_kind = classify_agent_error(1, "Parse error: expected 429 tokens", None);
    assert_eq!(error_kind, AgentErrorKind::ParsingError);
}

#[test]
fn test_classify_agent_error_does_not_treat_quota_word_as_rate_limit() {
    let error_kind = classify_agent_error(1, "quota.rs:1:1: syntax error", None);
    assert_ne!(error_kind, AgentErrorKind::RateLimit);
}

#[test]
fn test_classify_agent_error_authentication() {
    let error_kind = classify_agent_error(1, "Invalid API key", None);
    assert_eq!(error_kind, AgentErrorKind::Authentication);
}

#[test]
fn test_classify_agent_error_model_unavailable() {
    let error_kind = classify_agent_error(1, "Model not found", None);
    assert_eq!(error_kind, AgentErrorKind::ModelUnavailable);
}

#[test]
fn test_is_retriable_agent_error() {
    // Network, ModelUnavailable are retriable (model fallback)
    assert!(is_retriable_agent_error(&AgentErrorKind::Network));
    assert!(is_retriable_agent_error(&AgentErrorKind::ModelUnavailable));
    // Timeout is NOT retriable - it is handled via reducer policy
    // (retry same agent first, then switch agents after budget exhaustion).
    assert!(!is_retriable_agent_error(&AgentErrorKind::Timeout));
    // RateLimit is NOT retriable - it triggers immediate agent fallback
    assert!(!is_retriable_agent_error(&AgentErrorKind::RateLimit));
    // Non-retriable errors trigger agent fallback
    assert!(!is_retriable_agent_error(&AgentErrorKind::Authentication));
    assert!(!is_retriable_agent_error(&AgentErrorKind::ParsingError));
    assert!(!is_retriable_agent_error(&AgentErrorKind::FileSystem));
    assert!(!is_retriable_agent_error(&AgentErrorKind::InternalError));
}

#[test]
fn test_is_timeout_error() {
    // Only Timeout should match
    assert!(is_timeout_error(&AgentErrorKind::Timeout));
    // All others should NOT be timeout errors
    assert!(!is_timeout_error(&AgentErrorKind::Network));
    assert!(!is_timeout_error(&AgentErrorKind::RateLimit));
    assert!(!is_timeout_error(&AgentErrorKind::ModelUnavailable));
    assert!(!is_timeout_error(&AgentErrorKind::Authentication));
    assert!(!is_timeout_error(&AgentErrorKind::ParsingError));
    assert!(!is_timeout_error(&AgentErrorKind::FileSystem));
    assert!(!is_timeout_error(&AgentErrorKind::InternalError));
}

#[test]
fn test_is_rate_limit_error() {
    // Only RateLimit should match
    assert!(is_rate_limit_error(&AgentErrorKind::RateLimit));
    // All others should NOT be rate limit errors
    assert!(!is_rate_limit_error(&AgentErrorKind::Network));
    assert!(!is_rate_limit_error(&AgentErrorKind::Timeout));
    assert!(!is_rate_limit_error(&AgentErrorKind::ModelUnavailable));
    assert!(!is_rate_limit_error(&AgentErrorKind::Authentication));
    assert!(!is_rate_limit_error(&AgentErrorKind::ParsingError));
    assert!(!is_rate_limit_error(&AgentErrorKind::FileSystem));
    assert!(!is_rate_limit_error(&AgentErrorKind::InternalError));
}

#[test]
fn test_error_preview_truncates_on_char_boundary() {
    let message = "Error 🚫: usage limit reached";
    let preview = build_error_preview(message, 10);

    assert!(message.starts_with(&preview));
    assert!(preview.chars().count() <= 10);
}

#[test]
fn test_is_auth_error() {
    // Only Authentication should match
    assert!(is_auth_error(&AgentErrorKind::Authentication));
    // All others should NOT be auth errors
    assert!(!is_auth_error(&AgentErrorKind::RateLimit));
    assert!(!is_auth_error(&AgentErrorKind::Network));
    assert!(!is_auth_error(&AgentErrorKind::Timeout));
    assert!(!is_auth_error(&AgentErrorKind::ModelUnavailable));
    assert!(!is_auth_error(&AgentErrorKind::ParsingError));
    assert!(!is_auth_error(&AgentErrorKind::FileSystem));
    assert!(!is_auth_error(&AgentErrorKind::InternalError));
}

#[test]
fn test_classify_agent_error_auth_401() {
    let error_kind = classify_agent_error(1, "HTTP 401 Unauthorized", None);
    assert_eq!(error_kind, AgentErrorKind::Authentication);
}

#[test]
fn test_classify_agent_error_auth_403_forbidden() {
    let error_kind = classify_agent_error(1, "HTTP 403 Forbidden", None);
    assert_eq!(error_kind, AgentErrorKind::Authentication);
}

#[test]
fn test_classify_agent_error_auth_invalid_token() {
    let error_kind = classify_agent_error(1, "Error: Invalid token provided", None);
    assert_eq!(error_kind, AgentErrorKind::Authentication);
}

#[test]
fn test_classify_agent_error_auth_credential() {
    let error_kind = classify_agent_error(1, "Error: This credential is not authorized", None);
    assert_eq!(error_kind, AgentErrorKind::Authentication);
}

#[test]
fn test_classify_agent_error_auth_access_denied() {
    let error_kind = classify_agent_error(1, "Access denied: insufficient permissions", None);
    assert_eq!(error_kind, AgentErrorKind::Authentication);
}

#[test]
fn test_classify_io_error_timeout() {
    let error = io::Error::new(io::ErrorKind::TimedOut, "Operation timeout");
    let error_kind = classify_io_error(&error);
    assert_eq!(error_kind, AgentErrorKind::Timeout);
}

#[test]
fn test_classify_io_error_timeout_timed_out_message() {
    // Common OS phrasing is "timed out" (not "timeout"). We must classify
    // based on `io::ErrorKind::TimedOut`, not substring matching.
    let error = io::Error::new(io::ErrorKind::TimedOut, "Operation timed out");
    let error_kind = classify_io_error(&error);
    assert_eq!(error_kind, AgentErrorKind::Timeout);
}

#[test]
fn test_classify_io_error_filesystem() {
    let error = io::Error::new(io::ErrorKind::PermissionDenied, "Permission denied");
    let error_kind = classify_io_error(&error);
    assert_eq!(error_kind, AgentErrorKind::FileSystem);
}

#[test]
fn test_classify_io_error_network() {
    let error = io::Error::new(io::ErrorKind::BrokenPipe, "Broken pipe");
    let error_kind = classify_io_error(&error);
    assert_eq!(error_kind, AgentErrorKind::Network);
}

// ========================================================================
// Timeout output detection tests (AC-2)
// ========================================================================

#[test]
fn test_timeout_with_empty_logfile_emits_no_output() {
    // SIGTERM (143) without explicit timeout_context → InvocationFailed.
    // The mock executor exits immediately (monitor never fires), so timeout_context is None.
    // Under the explicit-timeout contract, SIGTERM alone is not sufficient evidence
    // for a TimedOut event — only monitor-generated timeout_context is.

    let colors = Colors { enabled: false };
    // Use ReadHijackWorkspace to simulate an empty logfile read
    let workspace = Arc::new(ReadHijackWorkspace::new(
        MemoryWorkspace::new_test(),
        PathBuf::from(".agent/logs/test.log"),
        String::new(), // Empty logfile content
    ));

    let logger = Logger::new(colors);
    let mut timer = Timer::new();
    let config = Config::default();

    // Force a timeout exit code (143 = SIGTERM)
    let executor = Arc::new(
        crate::executor::MockProcessExecutor::new().with_agent_result(
            "claude",
            Ok(crate::executor::AgentCommandResult::failure(143, "")),
        ),
    );
    let executor_arc: Arc<dyn crate::executor::ProcessExecutor> = executor;
    let workspace_arc = Arc::clone(&workspace) as Arc<dyn crate::workspace::Workspace>;

    let mut runtime = PipelineRuntime {
        timer: &mut timer,
        logger: &logger,
        colors: &colors,
        config: &config,
        executor: executor_arc.as_ref(),
        executor_arc: Arc::clone(&executor_arc),
        workspace: workspace.as_ref(),
        workspace_arc: Arc::clone(&workspace_arc),
    };

    let env_vars: HashMap<String, String> = HashMap::new();
    let exec_config = AgentExecutionConfig {
        role: AgentRole::Developer,
        agent_name: "claude",
        cmd_str: "claude -p",
        parser_type: JsonParserType::Claude,
        env_vars: &env_vars,
        prompt: "hello",
        display_name: "claude",
        log_prefix: ".agent/logs/test",
        model_index: 0,
        attempt: 0,
        logfile: ".agent/logs/test.log",
        completion_output_path: None,
    };

    let result = execute_agent_fault_tolerantly(exec_config, &mut runtime)
        .expect("executor should never return Err");

    assert!(
        matches!(
            result.event,
            PipelineEvent::Agent(AgentEvent::InvocationFailed { .. })
        ),
        "SIGTERM without timeout_context must return InvocationFailed; got {:?}",
        result.event
    );
}

#[test]
fn test_timeout_with_nonempty_logfile_emits_partial_output() {
    // SIGTERM (143) without explicit timeout_context → InvocationFailed.
    // Logfile content does not affect event type when timeout_context is absent.

    let colors = Colors { enabled: false };
    // Use ReadHijackWorkspace to simulate a non-empty logfile read
    let workspace = Arc::new(ReadHijackWorkspace::new(
        MemoryWorkspace::new_test(),
        PathBuf::from(".agent/logs/test.log"),
        "Some partial output\n".to_string(), // Non-empty logfile content
    ));

    let logger = Logger::new(colors);
    let mut timer = Timer::new();
    let config = Config::default();

    // Force a timeout exit code (143 = SIGTERM)
    let executor = Arc::new(
        crate::executor::MockProcessExecutor::new().with_agent_result(
            "claude",
            Ok(crate::executor::AgentCommandResult::failure(143, "")),
        ),
    );
    let executor_arc: Arc<dyn crate::executor::ProcessExecutor> = executor;
    let workspace_arc = Arc::clone(&workspace) as Arc<dyn crate::workspace::Workspace>;

    let mut runtime = PipelineRuntime {
        timer: &mut timer,
        logger: &logger,
        colors: &colors,
        config: &config,
        executor: executor_arc.as_ref(),
        executor_arc: Arc::clone(&executor_arc),
        workspace: workspace.as_ref(),
        workspace_arc: Arc::clone(&workspace_arc),
    };

    let env_vars: HashMap<String, String> = HashMap::new();
    let exec_config = AgentExecutionConfig {
        role: AgentRole::Developer,
        agent_name: "claude",
        cmd_str: "claude -p",
        parser_type: JsonParserType::Claude,
        env_vars: &env_vars,
        prompt: "hello",
        display_name: "claude",
        log_prefix: ".agent/logs/test",
        model_index: 0,
        attempt: 0,
        logfile: ".agent/logs/test.log",
        completion_output_path: None,
    };

    let result = execute_agent_fault_tolerantly(exec_config, &mut runtime)
        .expect("executor should never return Err");

    assert!(
        matches!(
            result.event,
            PipelineEvent::Agent(AgentEvent::InvocationFailed { .. })
        ),
        "SIGTERM without timeout_context must return InvocationFailed; got {:?}",
        result.event
    );
}

#[test]
fn test_timeout_with_missing_logfile_defaults_to_no_output() {
    // SIGTERM (143) without explicit timeout_context → InvocationFailed.
    // Missing logfile does not affect event type when timeout_context is absent.

    let colors = Colors { enabled: false };
    // Use ReadFailWorkspace to simulate a missing logfile read
    let workspace = ReadFailWorkspace::new(
        MemoryWorkspace::new_test(),
        PathBuf::from(".agent/logs/test.log"),
    );

    let logger = Logger::new(colors);
    let mut timer = Timer::new();
    let config = Config::default();

    // Force a timeout exit code (143 = SIGTERM)
    let executor = Arc::new(
        crate::executor::MockProcessExecutor::new().with_agent_result(
            "claude",
            Ok(crate::executor::AgentCommandResult::failure(143, "")),
        ),
    );
    let executor_arc: Arc<dyn crate::executor::ProcessExecutor> = executor;
    let workspace_arc = Arc::new(workspace.clone()) as Arc<dyn crate::workspace::Workspace>;

    let mut runtime = PipelineRuntime {
        timer: &mut timer,
        logger: &logger,
        colors: &colors,
        config: &config,
        executor: executor_arc.as_ref(),
        executor_arc: Arc::clone(&executor_arc),
        workspace: &workspace,
        workspace_arc: Arc::clone(&workspace_arc),
    };

    let env_vars: HashMap<String, String> = HashMap::new();
    let exec_config = AgentExecutionConfig {
        role: AgentRole::Developer,
        agent_name: "claude",
        cmd_str: "claude -p",
        parser_type: JsonParserType::Claude,
        env_vars: &env_vars,
        prompt: "hello",
        display_name: "claude",
        log_prefix: ".agent/logs/test",
        model_index: 0,
        attempt: 0,
        logfile: ".agent/logs/test.log",
        completion_output_path: None,
    };

    let result = execute_agent_fault_tolerantly(exec_config, &mut runtime)
        .expect("executor should never return Err");

    assert!(
        matches!(
            result.event,
            PipelineEvent::Agent(AgentEvent::InvocationFailed { .. })
        ),
        "SIGTERM without timeout_context must return InvocationFailed; got {:?}",
        result.event
    );
}

// ========================================================================
// Non-whitespace threshold classification tests (AC-4)
// ========================================================================

#[test]
fn test_timeout_with_9_non_whitespace_chars_emits_no_output() {
    // SIGTERM (143) without explicit timeout_context → InvocationFailed.
    // Logfile char count does not affect event type when timeout_context is absent.

    let colors = Colors { enabled: false };
    // "123456789" = exactly 9 non-whitespace characters
    let workspace = Arc::new(ReadHijackWorkspace::new(
        MemoryWorkspace::new_test(),
        PathBuf::from(".agent/logs/test.log"),
        "123456789".to_string(),
    ));

    let logger = Logger::new(colors);
    let mut timer = Timer::new();
    let config = Config::default();

    let executor = Arc::new(
        crate::executor::MockProcessExecutor::new().with_agent_result(
            "claude",
            Ok(crate::executor::AgentCommandResult::failure(143, "")),
        ),
    );
    let executor_arc: Arc<dyn crate::executor::ProcessExecutor> = executor;
    let workspace_arc = Arc::clone(&workspace) as Arc<dyn crate::workspace::Workspace>;

    let mut runtime = PipelineRuntime {
        timer: &mut timer,
        logger: &logger,
        colors: &colors,
        config: &config,
        executor: executor_arc.as_ref(),
        executor_arc: Arc::clone(&executor_arc),
        workspace: workspace.as_ref(),
        workspace_arc: Arc::clone(&workspace_arc),
    };

    let env_vars: HashMap<String, String> = HashMap::new();
    let exec_config = AgentExecutionConfig {
        role: AgentRole::Developer,
        agent_name: "claude",
        cmd_str: "claude -p",
        parser_type: JsonParserType::Claude,
        env_vars: &env_vars,
        prompt: "hello",
        display_name: "claude",
        log_prefix: ".agent/logs/test",
        model_index: 0,
        attempt: 0,
        logfile: ".agent/logs/test.log",
        completion_output_path: None,
    };

    let result = execute_agent_fault_tolerantly(exec_config, &mut runtime)
        .expect("executor should never return Err");

    assert!(
        matches!(
            result.event,
            PipelineEvent::Agent(AgentEvent::InvocationFailed { .. })
        ),
        "SIGTERM without timeout_context must return InvocationFailed; got {:?}",
        result.event
    );
}

#[test]
fn test_timeout_with_10_non_whitespace_chars_emits_partial_output() {
    // SIGTERM (143) without explicit timeout_context → InvocationFailed.
    // Logfile char count does not affect event type when timeout_context is absent.

    let colors = Colors { enabled: false };
    // "1234567890" = exactly 10 non-whitespace characters
    let workspace = Arc::new(ReadHijackWorkspace::new(
        MemoryWorkspace::new_test(),
        PathBuf::from(".agent/logs/test.log"),
        "1234567890".to_string(),
    ));

    let logger = Logger::new(colors);
    let mut timer = Timer::new();
    let config = Config::default();

    let executor = Arc::new(
        crate::executor::MockProcessExecutor::new().with_agent_result(
            "claude",
            Ok(crate::executor::AgentCommandResult::failure(143, "")),
        ),
    );
    let executor_arc: Arc<dyn crate::executor::ProcessExecutor> = executor;
    let workspace_arc = Arc::clone(&workspace) as Arc<dyn crate::workspace::Workspace>;

    let mut runtime = PipelineRuntime {
        timer: &mut timer,
        logger: &logger,
        colors: &colors,
        config: &config,
        executor: executor_arc.as_ref(),
        executor_arc: Arc::clone(&executor_arc),
        workspace: workspace.as_ref(),
        workspace_arc: Arc::clone(&workspace_arc),
    };

    let env_vars: HashMap<String, String> = HashMap::new();
    let exec_config = AgentExecutionConfig {
        role: AgentRole::Developer,
        agent_name: "claude",
        cmd_str: "claude -p",
        parser_type: JsonParserType::Claude,
        env_vars: &env_vars,
        prompt: "hello",
        display_name: "claude",
        log_prefix: ".agent/logs/test",
        model_index: 0,
        attempt: 0,
        logfile: ".agent/logs/test.log",
        completion_output_path: None,
    };

    let result = execute_agent_fault_tolerantly(exec_config, &mut runtime)
        .expect("executor should never return Err");

    assert!(
        matches!(
            result.event,
            PipelineEvent::Agent(AgentEvent::InvocationFailed { .. })
        ),
        "SIGTERM without timeout_context must return InvocationFailed; got {:?}",
        result.event
    );
}

#[test]
fn test_timeout_with_whitespace_only_logfile_emits_no_output() {
    // SIGTERM (143) without explicit timeout_context → InvocationFailed.
    // Logfile content does not affect event type when timeout_context is absent.

    let colors = Colors { enabled: false };
    // Whitespace only (spaces, tabs, newlines)
    let workspace = Arc::new(ReadHijackWorkspace::new(
        MemoryWorkspace::new_test(),
        PathBuf::from(".agent/logs/test.log"),
        "   \n\t\n   ".to_string(),
    ));

    let logger = Logger::new(colors);
    let mut timer = Timer::new();
    let config = Config::default();

    let executor = Arc::new(
        crate::executor::MockProcessExecutor::new().with_agent_result(
            "claude",
            Ok(crate::executor::AgentCommandResult::failure(143, "")),
        ),
    );
    let executor_arc: Arc<dyn crate::executor::ProcessExecutor> = executor;
    let workspace_arc = Arc::clone(&workspace) as Arc<dyn crate::workspace::Workspace>;

    let mut runtime = PipelineRuntime {
        timer: &mut timer,
        logger: &logger,
        colors: &colors,
        config: &config,
        executor: executor_arc.as_ref(),
        executor_arc: Arc::clone(&executor_arc),
        workspace: workspace.as_ref(),
        workspace_arc: Arc::clone(&workspace_arc),
    };

    let env_vars: HashMap<String, String> = HashMap::new();
    let exec_config = AgentExecutionConfig {
        role: AgentRole::Developer,
        agent_name: "claude",
        cmd_str: "claude -p",
        parser_type: JsonParserType::Claude,
        env_vars: &env_vars,
        prompt: "hello",
        display_name: "claude",
        log_prefix: ".agent/logs/test",
        model_index: 0,
        attempt: 0,
        logfile: ".agent/logs/test.log",
        completion_output_path: None,
    };

    let result = execute_agent_fault_tolerantly(exec_config, &mut runtime)
        .expect("executor should never return Err");

    assert!(
        matches!(
            result.event,
            PipelineEvent::Agent(AgentEvent::InvocationFailed { .. })
        ),
        "SIGTERM without timeout_context must return InvocationFailed; got {:?}",
        result.event
    );
}

#[test]
fn test_timeout_with_meaningful_output_surrounded_by_whitespace() {
    // SIGTERM (143) without explicit timeout_context → InvocationFailed.
    // Logfile content does not affect event type when timeout_context is absent.

    let colors = Colors { enabled: false };
    // "  hello world  \n\n" = 10 non-whitespace characters (helloworld)
    let workspace = Arc::new(ReadHijackWorkspace::new(
        MemoryWorkspace::new_test(),
        PathBuf::from(".agent/logs/test.log"),
        "  hello world  \n\n".to_string(),
    ));

    let logger = Logger::new(colors);
    let mut timer = Timer::new();
    let config = Config::default();

    let executor = Arc::new(
        crate::executor::MockProcessExecutor::new().with_agent_result(
            "claude",
            Ok(crate::executor::AgentCommandResult::failure(143, "")),
        ),
    );
    let executor_arc: Arc<dyn crate::executor::ProcessExecutor> = executor;
    let workspace_arc = Arc::clone(&workspace) as Arc<dyn crate::workspace::Workspace>;

    let mut runtime = PipelineRuntime {
        timer: &mut timer,
        logger: &logger,
        colors: &colors,
        config: &config,
        executor: executor_arc.as_ref(),
        executor_arc: Arc::clone(&executor_arc),
        workspace: workspace.as_ref(),
        workspace_arc: Arc::clone(&workspace_arc),
    };

    let env_vars: HashMap<String, String> = HashMap::new();
    let exec_config = AgentExecutionConfig {
        role: AgentRole::Developer,
        agent_name: "claude",
        cmd_str: "claude -p",
        parser_type: JsonParserType::Claude,
        env_vars: &env_vars,
        prompt: "hello",
        display_name: "claude",
        log_prefix: ".agent/logs/test",
        model_index: 0,
        attempt: 0,
        logfile: ".agent/logs/test.log",
        completion_output_path: None,
    };

    let result = execute_agent_fault_tolerantly(exec_config, &mut runtime)
        .expect("executor should never return Err");

    assert!(
        matches!(
            result.event,
            PipelineEvent::Agent(AgentEvent::InvocationFailed { .. })
        ),
        "SIGTERM without timeout_context must return InvocationFailed; got {:?}",
        result.event
    );
}

// ========================================================================
// Step 2: Quota exceeded pattern alignment tests
// ========================================================================

#[test]
fn test_classify_agent_error_rate_limit_quota_exceeded() {
    let error_kind = classify_agent_error(1, "API quota exceeded, please try again later", None);
    assert_eq!(error_kind, AgentErrorKind::RateLimit);
}

#[test]
fn test_classify_agent_error_rate_limit_anthropic_quota() {
    let error_kind = classify_agent_error(
        1,
        "You have exceeded your current quota for this API tier",
        None,
    );
    assert_eq!(error_kind, AgentErrorKind::RateLimit);
}

// ========================================================================
// Step 3: Comprehensive tests for auth and rate-limit fallback flow
// ========================================================================

#[test]
fn test_auth_error_triggers_auth_fallback_classification() {
    // All these patterns should result in Authentication error kind
    // which triggers AuthFailed event via is_auth_error()
    let auth_patterns = vec![
        "HTTP 401 Unauthorized",
        "HTTP 403 Forbidden",
        "Error: Invalid API key",
        "Error: Invalid token provided",
        "Access denied: insufficient permissions",
        "This credential is only authorized for use with Claude Code",
        "Authentication failed: bad credentials",
    ];

    for pattern in auth_patterns {
        let error_kind = classify_agent_error(1, pattern, None);
        assert_eq!(
            error_kind,
            AgentErrorKind::Authentication,
            "Pattern '{pattern}' should classify as Authentication"
        );
        assert!(
            is_auth_error(&error_kind),
            "Authentication error kind should trigger auth fallback for pattern '{pattern}'"
        );
    }
}

#[test]
fn test_rate_limit_error_triggers_rate_limit_fallback_classification() {
    // All these patterns should result in RateLimit error kind
    // which triggers RateLimited event via is_rate_limit_error()
    let rate_limit_patterns = vec![
        "Rate limit exceeded",
        "Rate limit reached for requests",
        "HTTP 429 Too Many Requests",
        "Error: too many requests, please slow down",
        "exceeded your current quota",
        "API quota exceeded",
    ];

    for pattern in rate_limit_patterns {
        let error_kind = classify_agent_error(1, pattern, None);
        assert_eq!(
            error_kind,
            AgentErrorKind::RateLimit,
            "Pattern '{pattern}' should classify as RateLimit"
        );
        assert!(
            is_rate_limit_error(&error_kind),
            "RateLimit error kind should trigger rate limit fallback for pattern '{pattern}'"
        );
    }
}

// ========================================================================
// Step 5: Structured JSON auth error detection tests
// ========================================================================

#[test]
fn test_classify_agent_error_auth_from_json_error() {
    // Auth error embedded in JSON structure (common for some providers)
    let stderr = r#"✗ Error: {"type":"error","error":{"type":"auth","code":"unauthorized","message":"Invalid API key provided"}}"#;
    let error_kind = classify_agent_error(1, stderr, None);
    // The "unauthorized" keyword should still be detected via substring matching
    assert_eq!(error_kind, AgentErrorKind::Authentication);
}

// ========================================================================
// Result-file-aware timeout classification tests (Bug 1 + Bug 2 fix)
// ========================================================================

#[test]
fn test_timeout_with_valid_completion_file_emits_success() {
    // SIGTERM (exit 143) + valid completion file → InvocationSucceeded, NOT TimedOut.
    // This is the core fix for Bug 1: valid result means the agent finished,
    // regardless of the timeout signal.
    use crate::reducer::event::AgentEvent;

    let colors = Colors { enabled: false };
    let completion_path = std::path::Path::new(".agent/tmp/development_result.xml");

    // Pre-populate the workspace with a valid XML file at the completion path.
    let workspace = Arc::new(MemoryWorkspace::new_test().with_file(
        ".agent/tmp/development_result.xml",
        "<ralph-development-result><status>completed</status></ralph-development-result>",
    ));

    let logger = Logger::new(colors);
    let mut timer = Timer::new();
    let config = Config::default();

    // Agent exits with SIGTERM (143) — the idle timeout enforcement code path.
    let executor = Arc::new(
        crate::executor::MockProcessExecutor::new().with_agent_result(
            "claude",
            Ok(crate::executor::AgentCommandResult::failure(143, "")),
        ),
    );
    let executor_arc: Arc<dyn crate::executor::ProcessExecutor> = executor;
    let workspace_arc = Arc::clone(&workspace) as Arc<dyn crate::workspace::Workspace>;

    let mut runtime = PipelineRuntime {
        timer: &mut timer,
        logger: &logger,
        colors: &colors,
        config: &config,
        executor: executor_arc.as_ref(),
        executor_arc: Arc::clone(&executor_arc),
        workspace: workspace.as_ref(),
        workspace_arc: Arc::clone(&workspace_arc),
    };

    let env_vars: HashMap<String, String> = HashMap::new();
    let exec_config = AgentExecutionConfig {
        role: AgentRole::Developer,
        agent_name: "claude",
        cmd_str: "claude -p",
        parser_type: JsonParserType::Claude,
        env_vars: &env_vars,
        prompt: "hello",
        display_name: "claude",
        log_prefix: ".agent/logs/test",
        model_index: 0,
        attempt: 0,
        logfile: ".agent/logs/test.log",
        completion_output_path: Some(completion_path),
    };

    let result = execute_agent_fault_tolerantly(exec_config, &mut runtime)
        .expect("executor should never return Err");

    assert!(
        matches!(
            result.event,
            PipelineEvent::Agent(AgentEvent::InvocationSucceeded { .. })
        ),
        "SIGTERM + valid completion file should emit InvocationSucceeded, got {:?}",
        result.event
    );
}

#[test]
fn test_timeout_with_missing_completion_file_emits_no_result() {
    // SIGTERM (143) without explicit timeout_context → InvocationFailed.
    // Missing completion file does not change the outcome: without timeout_context
    // (monitor never fired), SIGTERM is treated as a regular non-zero exit.

    let colors = Colors { enabled: false };
    let completion_path = std::path::Path::new(".agent/tmp/development_result.xml");

    // Empty workspace — no completion file exists.
    let workspace = Arc::new(MemoryWorkspace::new_test());

    let logger = Logger::new(colors);
    let mut timer = Timer::new();
    let config = Config::default();

    let executor = Arc::new(
        crate::executor::MockProcessExecutor::new().with_agent_result(
            "claude",
            Ok(crate::executor::AgentCommandResult::failure(143, "")),
        ),
    );
    let executor_arc: Arc<dyn crate::executor::ProcessExecutor> = executor;
    let workspace_arc = Arc::clone(&workspace) as Arc<dyn crate::workspace::Workspace>;

    let mut runtime = PipelineRuntime {
        timer: &mut timer,
        logger: &logger,
        colors: &colors,
        config: &config,
        executor: executor_arc.as_ref(),
        executor_arc: Arc::clone(&executor_arc),
        workspace: workspace.as_ref(),
        workspace_arc: Arc::clone(&workspace_arc),
    };

    let env_vars: HashMap<String, String> = HashMap::new();
    let exec_config = AgentExecutionConfig {
        role: AgentRole::Developer,
        agent_name: "claude",
        cmd_str: "claude -p",
        parser_type: JsonParserType::Claude,
        env_vars: &env_vars,
        prompt: "hello",
        display_name: "claude",
        log_prefix: ".agent/logs/test.log",
        model_index: 0,
        attempt: 0,
        logfile: ".agent/logs/test.log",
        completion_output_path: Some(completion_path),
    };

    let result = execute_agent_fault_tolerantly(exec_config, &mut runtime)
        .expect("executor should never return Err");

    assert!(
        matches!(
            result.event,
            PipelineEvent::Agent(AgentEvent::InvocationFailed { .. })
        ),
        "SIGTERM without timeout_context must return InvocationFailed; got {:?}",
        result.event
    );
}

#[test]
fn test_timeout_with_invalid_completion_file_emits_partial_result() {
    // SIGTERM (143) without explicit timeout_context → InvocationFailed.
    // Partial completion file does not change the outcome: without timeout_context
    // (monitor never fired), SIGTERM is treated as a regular non-zero exit.

    let colors = Colors { enabled: false };
    let completion_path = std::path::Path::new(".agent/tmp/development_result.xml");

    // Workspace with a non-XML file at the completion path (agent was interrupted mid-write).
    let workspace = Arc::new(MemoryWorkspace::new_test().with_file(
        ".agent/tmp/development_result.xml",
        "truncated non-xml content",
    ));

    let logger = Logger::new(colors);
    let mut timer = Timer::new();
    let config = Config::default();

    let executor = Arc::new(
        crate::executor::MockProcessExecutor::new().with_agent_result(
            "claude",
            Ok(crate::executor::AgentCommandResult::failure(143, "")),
        ),
    );
    let executor_arc: Arc<dyn crate::executor::ProcessExecutor> = executor;
    let workspace_arc = Arc::clone(&workspace) as Arc<dyn crate::workspace::Workspace>;

    let mut runtime = PipelineRuntime {
        timer: &mut timer,
        logger: &logger,
        colors: &colors,
        config: &config,
        executor: executor_arc.as_ref(),
        executor_arc: Arc::clone(&executor_arc),
        workspace: workspace.as_ref(),
        workspace_arc: Arc::clone(&workspace_arc),
    };

    let env_vars: HashMap<String, String> = HashMap::new();
    let exec_config = AgentExecutionConfig {
        role: AgentRole::Developer,
        agent_name: "claude",
        cmd_str: "claude -p",
        parser_type: JsonParserType::Claude,
        env_vars: &env_vars,
        prompt: "hello",
        display_name: "claude",
        log_prefix: ".agent/logs/test.log",
        model_index: 0,
        attempt: 0,
        logfile: ".agent/logs/test.log",
        completion_output_path: Some(completion_path),
    };

    let result = execute_agent_fault_tolerantly(exec_config, &mut runtime)
        .expect("executor should never return Err");

    assert!(
        matches!(
            result.event,
            PipelineEvent::Agent(AgentEvent::InvocationFailed { .. })
        ),
        "SIGTERM without timeout_context must return InvocationFailed; got {:?}",
        result.event
    );
}

// ========================================================================
// Non-SIGTERM exit code + result file classification tests (Bug 1 extension)
// ========================================================================

#[test]
fn test_non_sigterm_exit_with_valid_result_emits_success() {
    // Bug 1: exit code 91 (agent proprietary exit) + valid result file
    // must emit InvocationSucceeded, not InvocationFailed.
    // This covers agents like OpenCode that use non-standard OS exit codes
    // for internal reasons unrelated to whether the task completed.
    use crate::reducer::event::AgentEvent;

    let colors = Colors { enabled: false };
    let completion_path = std::path::Path::new(".agent/tmp/development_result.xml");

    let workspace = Arc::new(MemoryWorkspace::new_test().with_file(
        ".agent/tmp/development_result.xml",
        "<ralph-development-result><status>completed</status></ralph-development-result>",
    ));

    let logger = Logger::new(colors);
    let mut timer = Timer::new();
    let config = Config::default();

    // Agent exits with 91 — a non-SIGTERM non-zero code (not a timeout signal).
    let executor = Arc::new(
        crate::executor::MockProcessExecutor::new().with_agent_result(
            "claude",
            Ok(crate::executor::AgentCommandResult::failure(91, "")),
        ),
    );
    let executor_arc: Arc<dyn crate::executor::ProcessExecutor> = executor;
    let workspace_arc = Arc::clone(&workspace) as Arc<dyn crate::workspace::Workspace>;

    let mut runtime = PipelineRuntime {
        timer: &mut timer,
        logger: &logger,
        colors: &colors,
        config: &config,
        executor: executor_arc.as_ref(),
        executor_arc: Arc::clone(&executor_arc),
        workspace: workspace.as_ref(),
        workspace_arc: Arc::clone(&workspace_arc),
    };

    let env_vars: HashMap<String, String> = HashMap::new();
    let exec_config = AgentExecutionConfig {
        role: AgentRole::Developer,
        agent_name: "claude",
        cmd_str: "claude -p",
        parser_type: JsonParserType::Claude,
        env_vars: &env_vars,
        prompt: "hello",
        display_name: "claude",
        log_prefix: ".agent/logs/test",
        model_index: 0,
        attempt: 0,
        logfile: ".agent/logs/test.log",
        completion_output_path: Some(completion_path),
    };

    let result = execute_agent_fault_tolerantly(exec_config, &mut runtime)
        .expect("executor should never return Err");

    assert!(
        matches!(
            result.event,
            PipelineEvent::Agent(AgentEvent::InvocationSucceeded { .. })
        ),
        "exit code 91 + valid completion file must emit InvocationSucceeded, got {:?}",
        result.event
    );
}

#[test]
fn test_non_sigterm_exit_without_result_emits_failure() {
    // When no valid result file exists, non-SIGTERM non-zero exit code
    // must still emit InvocationFailed (not promoted to success).
    use crate::reducer::event::AgentEvent;

    let colors = Colors { enabled: false };
    let completion_path = std::path::Path::new(".agent/tmp/development_result.xml");

    // Empty workspace — no completion file exists.
    let workspace = Arc::new(MemoryWorkspace::new_test());

    let logger = Logger::new(colors);
    let mut timer = Timer::new();
    let config = Config::default();

    let executor = Arc::new(
        crate::executor::MockProcessExecutor::new().with_agent_result(
            "claude",
            Ok(crate::executor::AgentCommandResult::failure(91, "")),
        ),
    );
    let executor_arc: Arc<dyn crate::executor::ProcessExecutor> = executor;
    let workspace_arc = Arc::clone(&workspace) as Arc<dyn crate::workspace::Workspace>;

    let mut runtime = PipelineRuntime {
        timer: &mut timer,
        logger: &logger,
        colors: &colors,
        config: &config,
        executor: executor_arc.as_ref(),
        executor_arc: Arc::clone(&executor_arc),
        workspace: workspace.as_ref(),
        workspace_arc: Arc::clone(&workspace_arc),
    };

    let env_vars: HashMap<String, String> = HashMap::new();
    let exec_config = AgentExecutionConfig {
        role: AgentRole::Developer,
        agent_name: "claude",
        cmd_str: "claude -p",
        parser_type: JsonParserType::Claude,
        env_vars: &env_vars,
        prompt: "hello",
        display_name: "claude",
        log_prefix: ".agent/logs/test",
        model_index: 0,
        attempt: 0,
        logfile: ".agent/logs/test.log",
        completion_output_path: Some(completion_path),
    };

    let result = execute_agent_fault_tolerantly(exec_config, &mut runtime)
        .expect("executor should never return Err");

    assert!(
        matches!(
            result.event,
            PipelineEvent::Agent(AgentEvent::InvocationFailed { .. })
        ),
        "exit code 91 + missing completion file must emit InvocationFailed, got {:?}",
        result.event
    );
}

#[test]
fn test_classify_agent_error_403_from_json_error() {
    let stderr = r#"{"error":{"code":"403","message":"Forbidden: API key does not have access"}}"#;
    let error_kind = classify_agent_error(1, stderr, None);
    assert_eq!(error_kind, AgentErrorKind::Authentication);
}

// ========================================================================
// Step 6: Non-auth, non-rate-limit error behavior tests
// ========================================================================

#[test]
fn test_non_special_errors_maintain_retry_semantics() {
    // Network errors: retriable (model fallback, NOT agent fallback)
    // Note: "Connection timeout" is now classified as Timeout (not Network) because timeout
    // patterns are checked before connection/network patterns - see is_timeout_stderr().
    // Use "Connection refused" or "Connection reset" for pure network errors.
    let network_error = classify_agent_error(1, "Connection refused", None);
    assert_eq!(network_error, AgentErrorKind::Network);
    assert!(
        is_retriable_agent_error(&network_error),
        "Network should be retriable"
    );
    assert!(
        !is_rate_limit_error(&network_error),
        "Network should not trigger rate limit fallback"
    );
    assert!(
        !is_auth_error(&network_error),
        "Network should not trigger auth fallback"
    );

    // Timeout errors via stderr (e.g., "Connection timeout" or "Request timeout")
    // are now classified as Timeout so the reducer can apply retry-first-then-fallback.
    let connection_timeout = classify_agent_error(1, "Connection timeout", None);
    assert_eq!(connection_timeout, AgentErrorKind::Timeout);
    assert!(!is_retriable_agent_error(&connection_timeout));
    assert!(is_timeout_error(&connection_timeout));

    // Timeout errors via exit code (SIGTERM): emitted as TimedOut
    let timeout_error = classify_agent_error(143, "", None); // SIGTERM
    assert_eq!(timeout_error, AgentErrorKind::Timeout);
    assert!(!is_retriable_agent_error(&timeout_error));
    assert!(is_timeout_error(&timeout_error));

    // Model unavailable: retriable
    let model_error = classify_agent_error(1, "Model not found", None);
    assert_eq!(model_error, AgentErrorKind::ModelUnavailable);
    assert!(is_retriable_agent_error(&model_error));

    // Internal errors: NOT retriable (agent fallback)
    let internal_error = classify_agent_error(139, "", None); // SIGSEGV
    assert_eq!(internal_error, AgentErrorKind::InternalError);
    assert!(!is_retriable_agent_error(&internal_error));

    // Parsing errors: NOT retriable
    let parse_error = classify_agent_error(1, "Parse error: invalid syntax", None);
    assert_eq!(parse_error, AgentErrorKind::ParsingError);
    assert!(!is_retriable_agent_error(&parse_error));

    // Filesystem errors: NOT retriable
    let fs_error = classify_agent_error(1, "Permission denied: /tmp/foo", None);
    assert_eq!(fs_error, AgentErrorKind::FileSystem);
    assert!(!is_retriable_agent_error(&fs_error));
}