perfgate-cli 0.17.0

CLI for perfgate performance budgets and baseline diffs
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
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
//! Integration tests for `perfgate check` command
//!
//! **Validates: Config-driven one-command workflow**

use std::fs;
use tempfile::tempdir;

mod common;
use common::perfgate_cmd;

/// Returns a cross-platform command that exits successfully.
#[cfg(unix)]
fn success_command() -> Vec<&'static str> {
    vec!["true"]
}

#[cfg(windows)]
fn success_command() -> Vec<&'static str> {
    vec!["cmd", "/c", "exit", "0"]
}

/// Returns a cross-platform command that sleeps briefly to ensure measurable runtime.
#[cfg(unix)]
fn slow_command() -> Vec<&'static str> {
    vec!["sh", "-c", "sleep 0.05"]
}

#[cfg(windows)]
fn slow_command() -> Vec<&'static str> {
    vec!["powershell", "-Command", "Start-Sleep -Milliseconds 50"]
}

/// Create a minimal config file with a single bench.
fn create_config_file(temp_dir: &std::path::Path, bench_name: &str) -> std::path::PathBuf {
    let config_path = temp_dir.join("perfgate.toml");
    let success_cmd = success_command();

    let cmd_str = success_cmd
        .iter()
        .map(|s| format!("\"{}\"", s))
        .collect::<Vec<_>>()
        .join(", ");

    let config_content = format!(
        r#"
[defaults]
repeat = 2
warmup = 0
threshold = 0.20

[[bench]]
name = "{}"
command = [{}]
"#,
        bench_name, cmd_str
    );

    fs::write(&config_path, config_content).expect("Failed to write config file");
    config_path
}

/// Create a minimal JSON config file with a single bench.
fn create_json_config_file(temp_dir: &std::path::Path, bench_name: &str) -> std::path::PathBuf {
    let config_path = temp_dir.join("perfgate.json");
    let cmd = success_command();

    let config = serde_json::json!({
        "defaults": {
            "repeat": 1,
            "warmup": 0,
            "threshold": 0.20
        },
        "bench": [{
            "name": bench_name,
            "command": cmd
        }]
    });

    fs::write(&config_path, serde_json::to_string_pretty(&config).unwrap())
        .expect("Failed to write config file");
    config_path
}

/// Create a baseline receipt for testing.
/// Uses high wall_ms values to avoid false regression detection.
fn create_baseline_receipt(temp_dir: &std::path::Path, bench_name: &str) -> std::path::PathBuf {
    let baselines_dir = temp_dir.join("baselines");
    fs::create_dir_all(&baselines_dir).expect("Failed to create baselines dir");

    let baseline_path = baselines_dir.join(format!("{}.json", bench_name));

    // Use high baseline values (10 seconds) so that actual runs don't exceed the 20% threshold
    let receipt = serde_json::json!({
        "schema": "perfgate.run.v1",
        "tool": {
            "name": "perfgate",
            "version": "0.1.0"
        },
        "run": {
            "id": "baseline-run-id",
            "started_at": "2024-01-01T00:00:00Z",
            "ended_at": "2024-01-01T00:01:00Z",
            "host": {
                "os": "linux",
                "arch": "x86_64"
            }
        },
        "bench": {
            "name": bench_name,
            "command": ["echo", "hello"],
            "repeat": 2,
            "warmup": 0
        },
        "samples": [
            {"wall_ms": 10000, "exit_code": 0, "warmup": false, "timed_out": false},
            {"wall_ms": 10200, "exit_code": 0, "warmup": false, "timed_out": false}
        ],
        "stats": {
            "wall_ms": {
                "median": 10100,
                "min": 10000,
                "max": 10200
            }
        }
    });

    fs::write(
        &baseline_path,
        serde_json::to_string_pretty(&receipt).unwrap(),
    )
    .expect("Failed to write baseline");

    baseline_path
}

/// Create a baseline receipt with a custom wall_ms median.
fn create_baseline_receipt_with_wall_ms(
    temp_dir: &std::path::Path,
    bench_name: &str,
    wall_ms: u64,
) -> std::path::PathBuf {
    let baselines_dir = temp_dir.join("baselines");
    fs::create_dir_all(&baselines_dir).expect("Failed to create baselines dir");

    let baseline_path = baselines_dir.join(format!("{}.json", bench_name));
    let receipt = serde_json::json!({
        "schema": "perfgate.run.v1",
        "tool": {
            "name": "perfgate",
            "version": "0.1.0"
        },
        "run": {
            "id": "baseline-run-id",
            "started_at": "2024-01-01T00:00:00Z",
            "ended_at": "2024-01-01T00:01:00Z",
            "host": {
                "os": "linux",
                "arch": "x86_64"
            }
        },
        "bench": {
            "name": bench_name,
            "command": ["echo", "hello"],
            "repeat": 1,
            "warmup": 0
        },
        "samples": [
            {"wall_ms": wall_ms, "exit_code": 0, "warmup": false, "timed_out": false}
        ],
        "stats": {
            "wall_ms": {
                "median": wall_ms,
                "min": wall_ms,
                "max": wall_ms
            }
        }
    });

    fs::write(
        &baseline_path,
        serde_json::to_string_pretty(&receipt).unwrap(),
    )
    .expect("Failed to write baseline");

    baseline_path
}

/// Create a baseline receipt at an explicit path.
fn create_baseline_receipt_at(path: &std::path::Path, bench_name: &str, wall_ms: u64) {
    let receipt = serde_json::json!({
        "schema": "perfgate.run.v1",
        "tool": {
            "name": "perfgate",
            "version": "0.1.0"
        },
        "run": {
            "id": "baseline-run-id",
            "started_at": "2024-01-01T00:00:00Z",
            "ended_at": "2024-01-01T00:01:00Z",
            "host": {
                "os": "linux",
                "arch": "x86_64"
            }
        },
        "bench": {
            "name": bench_name,
            "command": ["echo", "hello"],
            "repeat": 1,
            "warmup": 0
        },
        "samples": [
            {"wall_ms": wall_ms, "exit_code": 0, "warmup": false, "timed_out": false}
        ],
        "stats": {
            "wall_ms": {
                "median": wall_ms,
                "min": wall_ms,
                "max": wall_ms
            }
        }
    });

    if let Some(parent) = path.parent() {
        fs::create_dir_all(parent).expect("Failed to create baseline parent dir");
    }
    fs::write(path, serde_json::to_string_pretty(&receipt).unwrap()).expect("write baseline");
}

/// Test basic check command with config file
#[test]
fn test_check_basic_with_config() {
    let temp_dir = tempdir().expect("failed to create temp dir");
    let out_dir = temp_dir.path().join("artifacts");
    let config_path = create_config_file(temp_dir.path(), "test-bench");

    let mut cmd = perfgate_cmd();
    cmd.arg("check")
        .arg("--config")
        .arg(&config_path)
        .arg("--bench")
        .arg("test-bench")
        .arg("--out-dir")
        .arg(&out_dir);

    let output = cmd.output().expect("failed to execute check");

    // Should succeed (pass or no baseline warning)
    assert!(
        output.status.success() || output.status.code() == Some(0),
        "check should succeed: exit code {:?}, stderr: {}",
        output.status.code(),
        String::from_utf8_lossy(&output.stderr)
    );

    // run.json should exist
    assert!(out_dir.join("run.json").exists(), "run.json should exist");

    // comment.md should exist
    assert!(
        out_dir.join("comment.md").exists(),
        "comment.md should exist"
    );
}

/// Test check command honors [defaults].out_dir when --out-dir is omitted.
#[test]
fn test_check_uses_config_out_dir_when_cli_omitted() {
    let temp_dir = tempdir().expect("failed to create temp dir");
    let config_path = temp_dir.path().join("perfgate.toml");
    let success_cmd = success_command();
    let cmd_str = success_cmd
        .iter()
        .map(|s| format!("\"{}\"", s))
        .collect::<Vec<_>>()
        .join(", ");
    let config_content = format!(
        r#"
[defaults]
repeat = 1
warmup = 0
threshold = 0.20
out_dir = "configured-artifacts"

[[bench]]
name = "config-out"
command = [{cmd_str}]
"#
    );
    fs::write(&config_path, config_content).expect("write config file");

    perfgate_cmd()
        .current_dir(temp_dir.path())
        .arg("check")
        .arg("--config")
        .arg("perfgate.toml")
        .arg("--bench")
        .arg("config-out")
        .assert()
        .success();

    assert!(
        temp_dir
            .path()
            .join("configured-artifacts")
            .join("run.json")
            .exists(),
        "run.json should use [defaults].out_dir when --out-dir is omitted"
    );
    assert!(
        !temp_dir
            .path()
            .join("artifacts/perfgate")
            .join("run.json")
            .exists(),
        "built-in artifact dir should not be used when config out_dir is set"
    );
}

/// Test check command can parse JSON config files
#[test]
fn test_check_json_config_parsing() {
    let temp_dir = tempdir().expect("failed to create temp dir");
    let out_dir = temp_dir.path().join("artifacts");
    let config_path = create_json_config_file(temp_dir.path(), "json-bench");

    let mut cmd = perfgate_cmd();
    cmd.arg("check")
        .arg("--config")
        .arg(&config_path)
        .arg("--bench")
        .arg("json-bench")
        .arg("--out-dir")
        .arg(&out_dir);

    let output = cmd.output().expect("failed to execute check");
    assert!(
        output.status.success(),
        "check with JSON config should succeed: {:?}, stderr: {}",
        output.status.code(),
        String::from_utf8_lossy(&output.stderr)
    );

    assert!(out_dir.join("run.json").exists(), "run.json should exist");
}

/// Test check command with baseline
#[test]
fn test_check_with_baseline() {
    let temp_dir = tempdir().expect("failed to create temp dir");
    let out_dir = temp_dir.path().join("artifacts");
    let config_path = create_config_file(temp_dir.path(), "with-baseline");
    let _baseline_path = create_baseline_receipt(temp_dir.path(), "with-baseline");

    let mut cmd = perfgate_cmd();
    cmd.current_dir(temp_dir.path())
        .arg("check")
        .arg("--config")
        .arg(&config_path)
        .arg("--bench")
        .arg("with-baseline")
        .arg("--out-dir")
        .arg(&out_dir);

    let output = cmd.output().expect("failed to execute check");

    // Should succeed
    assert!(
        output.status.success(),
        "check with baseline should succeed: exit code {:?}, stderr: {}",
        output.status.code(),
        String::from_utf8_lossy(&output.stderr)
    );

    // All artifacts should exist
    assert!(out_dir.join("run.json").exists(), "run.json should exist");
    assert!(
        out_dir.join("compare.json").exists(),
        "compare.json should exist"
    );
    assert!(
        out_dir.join("report.json").exists(),
        "report.json should exist"
    );
    assert!(
        out_dir.join("comment.md").exists(),
        "comment.md should exist"
    );
}

/// Test check command with missing baseline (warning only)
#[test]
fn test_check_missing_baseline_warns() {
    let temp_dir = tempdir().expect("failed to create temp dir");
    let out_dir = temp_dir.path().join("artifacts");
    let config_path = create_config_file(temp_dir.path(), "no-baseline");

    let mut cmd = perfgate_cmd();
    cmd.arg("check")
        .arg("--config")
        .arg(&config_path)
        .arg("--bench")
        .arg("no-baseline")
        .arg("--out-dir")
        .arg(&out_dir);

    let output = cmd.output().expect("failed to execute check");

    // Should succeed (warning only)
    assert!(
        output.status.success(),
        "check without baseline should succeed with warning: {:?}, stderr: {}",
        output.status.code(),
        String::from_utf8_lossy(&output.stderr)
    );

    // run.json should exist, but not compare.json
    assert!(out_dir.join("run.json").exists(), "run.json should exist");
    assert!(
        !out_dir.join("compare.json").exists(),
        "compare.json should not exist when no baseline"
    );

    // report.json should always exist for cockpit integration
    assert!(
        out_dir.join("report.json").exists(),
        "report.json should exist even without baseline (for cockpit integration)"
    );

    // Verify report.json has expected no-baseline structure
    let report_content = fs::read_to_string(out_dir.join("report.json")).expect("read report.json");
    let report_json: serde_json::Value =
        serde_json::from_str(&report_content).expect("report.json should be valid JSON");
    assert_eq!(
        report_json["report_type"].as_str(),
        Some("perfgate.report.v1"),
        "report.json should have correct report_type"
    );
    // Verdict should be Warn (not Pass) - baseline missing means comparison didn't happen
    assert_eq!(
        report_json["verdict"]["status"].as_str(),
        Some("warn"),
        "verdict should be warn when no baseline (not pass)"
    );
    // Check that the reason uses stable token
    let reasons = report_json["verdict"]["reasons"]
        .as_array()
        .expect("reasons should be an array");
    assert!(
        reasons.iter().any(|r| r.as_str() == Some("no_baseline")),
        "verdict reasons should contain 'no_baseline' token: {:?}",
        reasons
    );
    // Summary should reflect 1 warning
    assert_eq!(
        report_json["summary"]["warn_count"].as_u64(),
        Some(1),
        "warn_count should be 1 when no baseline"
    );
    assert_eq!(
        report_json["summary"]["total_count"].as_u64(),
        Some(1),
        "total_count should be 1 when no baseline"
    );
    // No compare receipt should be present
    assert!(
        report_json["compare"].is_null() || report_json.get("compare").is_none(),
        "compare should be absent when no baseline"
    );
    // Should have a finding with check_id="perf.baseline" and code="missing"
    let findings = report_json["findings"]
        .as_array()
        .expect("findings should be an array");
    assert_eq!(
        findings.len(),
        1,
        "should have 1 finding for missing baseline"
    );
    assert_eq!(
        findings[0]["check_id"].as_str(),
        Some("perf.baseline"),
        "finding check_id should be perf.baseline"
    );
    assert_eq!(
        findings[0]["code"].as_str(),
        Some("missing"),
        "finding code should be missing"
    );

    // comment.md should mention no baseline
    let md_content =
        fs::read_to_string(out_dir.join("comment.md")).expect("failed to read comment.md");
    assert!(
        md_content.contains("no baseline"),
        "comment.md should mention no baseline"
    );
}

/// Test check command removes stale compare.json when baseline is missing
#[test]
fn test_check_missing_baseline_removes_stale_compare() {
    let temp_dir = tempdir().expect("failed to create temp dir");
    let out_dir = temp_dir.path().join("artifacts");
    let config_path = create_config_file(temp_dir.path(), "stale-compare");

    // Create a stale compare.json before running check
    fs::create_dir_all(&out_dir).expect("Failed to create artifacts dir");
    let stale_compare = out_dir.join("compare.json");
    fs::write(&stale_compare, "{\"stale\": true}").expect("Failed to write stale compare.json");
    assert!(stale_compare.exists(), "stale compare.json should exist");

    let mut cmd = perfgate_cmd();
    cmd.arg("check")
        .arg("--config")
        .arg(&config_path)
        .arg("--bench")
        .arg("stale-compare")
        .arg("--out-dir")
        .arg(&out_dir);

    let output = cmd.output().expect("failed to execute check");

    // Should succeed (warning only)
    assert!(
        output.status.success(),
        "check without baseline should succeed with warning: {:?}, stderr: {}",
        output.status.code(),
        String::from_utf8_lossy(&output.stderr)
    );

    // Stale compare.json should be removed
    assert!(
        !stale_compare.exists(),
        "stale compare.json should be removed when no baseline"
    );
}

/// Test check command fails when output directory cannot be created
#[test]
fn test_check_output_dir_creation_error() {
    let temp_dir = tempdir().expect("failed to create temp dir");
    let out_dir = temp_dir.path().join("artifacts");
    let config_path = create_config_file(temp_dir.path(), "bad-out-dir");

    // Create a file where a directory is expected
    fs::write(&out_dir, "not a directory").expect("Failed to create output file");

    let mut cmd = perfgate_cmd();
    cmd.arg("check")
        .arg("--config")
        .arg(&config_path)
        .arg("--bench")
        .arg("bad-out-dir")
        .arg("--out-dir")
        .arg(&out_dir);

    let output = cmd.output().expect("failed to execute check");
    assert!(!output.status.success(), "check should fail");
    assert_eq!(output.status.code(), Some(1));

    let stderr = String::from_utf8_lossy(&output.stderr);
    assert!(
        stderr.contains("create output dir"),
        "stderr should mention output dir creation: {}",
        stderr
    );
}

/// Test check command with --require-baseline fails when baseline missing
#[test]
fn test_check_require_baseline_fails() {
    let temp_dir = tempdir().expect("failed to create temp dir");
    let out_dir = temp_dir.path().join("artifacts");
    let config_path = create_config_file(temp_dir.path(), "required-baseline");

    let mut cmd = perfgate_cmd();
    cmd.arg("check")
        .arg("--config")
        .arg(&config_path)
        .arg("--bench")
        .arg("required-baseline")
        .arg("--out-dir")
        .arg(&out_dir)
        .arg("--require-baseline");

    let output = cmd.output().expect("failed to execute check");

    // Should fail (exit code 1 for tool error)
    assert!(
        !output.status.success(),
        "check with --require-baseline should fail when no baseline"
    );
    assert_eq!(
        output.status.code(),
        Some(1),
        "exit code should be 1 for tool error"
    );

    // Error should mention baseline required
    let stderr = String::from_utf8_lossy(&output.stderr);
    assert!(
        stderr.contains("baseline required") || stderr.contains("baseline"),
        "stderr should mention baseline: {}",
        stderr
    );
}

/// Test check command with unknown bench name fails
#[test]
fn test_check_unknown_bench_fails() {
    let temp_dir = tempdir().expect("failed to create temp dir");
    let out_dir = temp_dir.path().join("artifacts");
    let config_path = create_config_file(temp_dir.path(), "existing-bench");

    let mut cmd = perfgate_cmd();
    cmd.arg("check")
        .arg("--config")
        .arg(&config_path)
        .arg("--bench")
        .arg("nonexistent-bench")
        .arg("--out-dir")
        .arg(&out_dir);

    let output = cmd.output().expect("failed to execute check");

    // Should fail
    assert!(
        !output.status.success(),
        "check with unknown bench should fail"
    );

    // Error should mention bench not found
    let stderr = String::from_utf8_lossy(&output.stderr);
    assert!(
        stderr.contains("not found") || stderr.contains("nonexistent-bench"),
        "stderr should mention bench not found: {}",
        stderr
    );
}

/// Test check command generates valid JSON artifacts
#[test]
fn test_check_produces_valid_json() {
    let temp_dir = tempdir().expect("failed to create temp dir");
    let out_dir = temp_dir.path().join("artifacts");
    let config_path = create_config_file(temp_dir.path(), "json-test");
    let _baseline_path = create_baseline_receipt(temp_dir.path(), "json-test");

    let mut cmd = perfgate_cmd();
    cmd.current_dir(temp_dir.path())
        .arg("check")
        .arg("--config")
        .arg(&config_path)
        .arg("--bench")
        .arg("json-test")
        .arg("--out-dir")
        .arg(&out_dir);

    cmd.assert().success();

    // Verify run.json is valid
    let run_content = fs::read_to_string(out_dir.join("run.json")).expect("read run.json");
    let run_json: serde_json::Value =
        serde_json::from_str(&run_content).expect("run.json should be valid JSON");
    assert_eq!(
        run_json["schema"].as_str(),
        Some("perfgate.run.v1"),
        "run.json should have correct schema"
    );

    // Verify compare.json is valid
    let compare_content =
        fs::read_to_string(out_dir.join("compare.json")).expect("read compare.json");
    let compare_json: serde_json::Value =
        serde_json::from_str(&compare_content).expect("compare.json should be valid JSON");
    assert_eq!(
        compare_json["schema"].as_str(),
        Some("perfgate.compare.v1"),
        "compare.json should have correct schema"
    );

    // Verify report.json is valid
    let report_content = fs::read_to_string(out_dir.join("report.json")).expect("read report.json");
    let report_json: serde_json::Value =
        serde_json::from_str(&report_content).expect("report.json should be valid JSON");
    assert_eq!(
        report_json["report_type"].as_str(),
        Some("perfgate.report.v1"),
        "report.json should have correct report_type"
    );
}

// ======================================================================
// --all flag tests
// ======================================================================

/// Create a config file with multiple benches.
fn create_multi_bench_config(
    temp_dir: &std::path::Path,
    bench_names: &[&str],
) -> std::path::PathBuf {
    let config_path = temp_dir.join("perfgate.toml");
    let success_cmd = success_command();

    let cmd_str = success_cmd
        .iter()
        .map(|s| format!("\"{}\"", s))
        .collect::<Vec<_>>()
        .join(", ");

    let mut config_content = String::from(
        r#"
[defaults]
repeat = 2
warmup = 0
threshold = 0.20
"#,
    );

    for name in bench_names {
        config_content.push_str(&format!(
            r#"
[[bench]]
name = "{}"
command = [{}]
"#,
            name, cmd_str
        ));
    }

    fs::write(&config_path, config_content).expect("Failed to write config file");
    config_path
}

/// Test --all flag runs all benches and creates per-bench subdirectories
#[test]
fn test_check_all_runs_all_benches() {
    let temp_dir = tempdir().expect("failed to create temp dir");
    let out_dir = temp_dir.path().join("artifacts");
    let config_path =
        create_multi_bench_config(temp_dir.path(), &["bench-a", "bench-b", "bench-c"]);

    let mut cmd = perfgate_cmd();
    cmd.arg("check")
        .arg("--config")
        .arg(&config_path)
        .arg("--all")
        .arg("--out-dir")
        .arg(&out_dir);

    let output = cmd.output().expect("failed to execute check");

    // Should succeed
    assert!(
        output.status.success(),
        "check --all should succeed: exit code {:?}, stderr: {}",
        output.status.code(),
        String::from_utf8_lossy(&output.stderr)
    );

    // Each bench should have its own subdirectory with artifacts
    for bench_name in &["bench-a", "bench-b", "bench-c"] {
        let bench_dir = out_dir.join(bench_name);
        assert!(
            bench_dir.exists(),
            "subdirectory for {} should exist",
            bench_name
        );
        assert!(
            bench_dir.join("run.json").exists(),
            "run.json should exist for {}",
            bench_name
        );
        assert!(
            bench_dir.join("report.json").exists(),
            "report.json should exist for {}",
            bench_name
        );
        assert!(
            bench_dir.join("comment.md").exists(),
            "comment.md should exist for {}",
            bench_name
        );
    }
}

/// Test baseline auto-discovery via defaults.baseline_pattern.
#[test]
fn test_check_baseline_pattern_autodiscovery() {
    let temp_dir = tempdir().expect("failed to create temp dir");
    let out_dir = temp_dir.path().join("artifacts");
    let config_path = temp_dir.path().join("perfgate.toml");

    let cmd = success_command();
    let cmd_str = cmd
        .iter()
        .map(|s| format!("\"{}\"", s))
        .collect::<Vec<_>>()
        .join(", ");

    fs::write(
        &config_path,
        format!(
            r#"
[defaults]
repeat = 1
warmup = 0
threshold = 0.20
baseline_pattern = "custom-baselines/{{bench}}.json"

[[bench]]
name = "pattern-bench"
command = [{}]
"#,
            cmd_str
        ),
    )
    .expect("write config");

    create_baseline_receipt_at(
        &temp_dir
            .path()
            .join("custom-baselines")
            .join("pattern-bench.json"),
        "pattern-bench",
        10_000,
    );

    let mut cmd = perfgate_cmd();
    cmd.current_dir(temp_dir.path())
        .arg("check")
        .arg("--config")
        .arg(&config_path)
        .arg("--bench")
        .arg("pattern-bench")
        .arg("--out-dir")
        .arg(&out_dir);

    let output = cmd.output().expect("failed to execute check");
    assert!(
        output.status.success(),
        "check should succeed with baseline_pattern: {:?}, stderr: {}",
        output.status.code(),
        String::from_utf8_lossy(&output.stderr)
    );
    assert!(
        out_dir.join("compare.json").exists(),
        "compare.json should exist (baseline discovered via baseline_pattern)"
    );
}

/// Test --output-github writes verdict/count outputs to $GITHUB_OUTPUT.
#[test]
fn test_check_output_github_writes_outputs() {
    let temp_dir = tempdir().expect("failed to create temp dir");
    let out_dir = temp_dir.path().join("artifacts");
    let config_path = create_config_file(temp_dir.path(), "gh-output-bench");
    let _baseline_path = create_baseline_receipt(temp_dir.path(), "gh-output-bench");
    let github_output = temp_dir.path().join("github_output.txt");

    let mut cmd = perfgate_cmd();
    cmd.current_dir(temp_dir.path())
        .arg("check")
        .arg("--config")
        .arg(&config_path)
        .arg("--bench")
        .arg("gh-output-bench")
        .arg("--out-dir")
        .arg(&out_dir)
        .arg("--output-github")
        .env("GITHUB_OUTPUT", &github_output);

    let output = cmd.output().expect("failed to execute check");
    assert!(
        output.status.success(),
        "check should succeed with --output-github: {:?}, stderr: {}",
        output.status.code(),
        String::from_utf8_lossy(&output.stderr)
    );
    assert!(github_output.exists(), "GITHUB_OUTPUT file should exist");

    let content = fs::read_to_string(&github_output).expect("read GITHUB_OUTPUT");
    assert!(
        content.contains("verdict="),
        "should include verdict output"
    );
    assert!(content.contains("pass_count="), "should include pass_count");
    assert!(content.contains("warn_count="), "should include warn_count");
    assert!(content.contains("fail_count="), "should include fail_count");
    assert!(
        content.contains("bench_count=1"),
        "should include bench_count"
    );
    assert!(content.contains("exit_code=0"), "should include exit code");
}

/// Test --output-github fails when GITHUB_OUTPUT is missing.
#[test]
fn test_check_output_github_requires_env_var() {
    let temp_dir = tempdir().expect("failed to create temp dir");
    let out_dir = temp_dir.path().join("artifacts");
    let config_path = create_config_file(temp_dir.path(), "gh-missing-env");

    let mut cmd = perfgate_cmd();
    cmd.current_dir(temp_dir.path())
        .arg("check")
        .arg("--config")
        .arg(&config_path)
        .arg("--bench")
        .arg("gh-missing-env")
        .arg("--out-dir")
        .arg(&out_dir)
        .arg("--output-github")
        .env_remove("GITHUB_OUTPUT");

    let output = cmd.output().expect("failed to execute check");
    assert!(
        !output.status.success(),
        "--output-github should fail without GITHUB_OUTPUT"
    );
    let stderr = String::from_utf8_lossy(&output.stderr);
    assert!(
        stderr.contains("GITHUB_OUTPUT"),
        "stderr should mention GITHUB_OUTPUT: {}",
        stderr
    );
}

/// Test --output-github still writes outputs when check exits with fail (code 2).
#[test]
fn test_check_output_github_writes_on_fail_exit() {
    let temp_dir = tempdir().expect("failed to create temp dir");
    let out_dir = temp_dir.path().join("artifacts");
    let config_path = temp_dir.path().join("perfgate.toml");
    let github_output = temp_dir.path().join("github_output_fail.txt");

    let cmd = slow_command();
    let cmd_str = cmd
        .iter()
        .map(|s| format!("\"{}\"", s))
        .collect::<Vec<_>>()
        .join(", ");

    fs::write(
        &config_path,
        format!(
            r#"
[defaults]
repeat = 1
warmup = 0
threshold = 0.01

[[bench]]
name = "fail-bench"
command = [{}]
"#,
            cmd_str
        ),
    )
    .expect("write config");

    create_baseline_receipt_at(
        &temp_dir.path().join("baselines").join("fail-bench.json"),
        "fail-bench",
        1,
    );

    let mut cmd = perfgate_cmd();
    cmd.current_dir(temp_dir.path())
        .arg("check")
        .arg("--config")
        .arg(&config_path)
        .arg("--bench")
        .arg("fail-bench")
        .arg("--out-dir")
        .arg(&out_dir)
        .arg("--output-github")
        .env("GITHUB_OUTPUT", &github_output);

    let output = cmd.output().expect("failed to execute check");
    assert_eq!(
        output.status.code(),
        Some(2),
        "check should exit 2 on fail: stderr {}",
        String::from_utf8_lossy(&output.stderr)
    );

    let content = fs::read_to_string(&github_output).expect("read GITHUB_OUTPUT");
    assert!(content.contains("verdict=fail"));
    assert!(content.contains("exit_code=2"));
}

/// Test --md-template customizes check comment output when baseline exists.
#[test]
fn test_check_md_template_customizes_comment() {
    let temp_dir = tempdir().expect("failed to create temp dir");
    let out_dir = temp_dir.path().join("artifacts");
    let config_path = create_config_file(temp_dir.path(), "templated-bench");
    let _baseline_path = create_baseline_receipt(temp_dir.path(), "templated-bench");
    let template_path = temp_dir.path().join("comment.hbs");

    fs::write(
        &template_path,
        r#"bench={{bench.name}}
{{#each rows}}metric={{metric}} status={{status}}
{{/each}}
"#,
    )
    .expect("write template");

    let mut cmd = perfgate_cmd();
    cmd.current_dir(temp_dir.path())
        .arg("check")
        .arg("--config")
        .arg(&config_path)
        .arg("--bench")
        .arg("templated-bench")
        .arg("--out-dir")
        .arg(&out_dir)
        .arg("--md-template")
        .arg(&template_path);

    let output = cmd.output().expect("failed to execute check");
    assert!(
        output.status.success(),
        "check with template should succeed: {:?}, stderr: {}",
        output.status.code(),
        String::from_utf8_lossy(&output.stderr)
    );

    let content = fs::read_to_string(out_dir.join("comment.md")).expect("read comment.md");
    assert!(content.contains("bench=templated-bench"));
    assert!(content.contains("metric=wall_ms"));
}

/// Test defaults.markdown_template in config is used when --md-template is omitted.
#[test]
fn test_check_uses_config_markdown_template_fallback() {
    let temp_dir = tempdir().expect("failed to create temp dir");
    let out_dir = temp_dir.path().join("artifacts");
    let config_path = temp_dir.path().join("perfgate.toml");
    let template_path = temp_dir.path().join("fallback-comment.hbs");

    let cmd = success_command();
    let cmd_str = cmd
        .iter()
        .map(|s| format!("\"{}\"", s))
        .collect::<Vec<_>>()
        .join(", ");
    let template_literal = template_path.to_string_lossy().replace('\\', "\\\\");

    fs::write(
        &template_path,
        r#"bench={{bench.name}}
{{#each rows}}metric={{metric}}
{{/each}}
"#,
    )
    .expect("write template");

    fs::write(
        &config_path,
        format!(
            r#"
[defaults]
repeat = 1
warmup = 0
threshold = 0.20
markdown_template = "{}"

[[bench]]
name = "fallback-template-bench"
command = [{}]
"#,
            template_literal, cmd_str
        ),
    )
    .expect("write config");

    create_baseline_receipt_at(
        &temp_dir
            .path()
            .join("baselines")
            .join("fallback-template-bench.json"),
        "fallback-template-bench",
        10_000,
    );

    let mut cmd = perfgate_cmd();
    cmd.current_dir(temp_dir.path())
        .arg("check")
        .arg("--config")
        .arg(&config_path)
        .arg("--bench")
        .arg("fallback-template-bench")
        .arg("--out-dir")
        .arg(&out_dir);

    let output = cmd.output().expect("failed to execute check");
    assert!(
        output.status.success(),
        "check should succeed: {:?}, stderr: {}",
        output.status.code(),
        String::from_utf8_lossy(&output.stderr)
    );

    let content = fs::read_to_string(out_dir.join("comment.md")).expect("read comment.md");
    assert!(content.contains("bench=fallback-template-bench"));
    assert!(content.contains("metric=wall_ms"));
}

/// Test --bench-regex filters benches when used with --all
#[test]
fn test_check_all_bench_regex_filters_benches() {
    let temp_dir = tempdir().expect("failed to create temp dir");
    let out_dir = temp_dir.path().join("artifacts");
    let config_path = create_multi_bench_config(
        temp_dir.path(),
        &["bench-a", "bench-b", "service/api", "service/web"],
    );

    let mut cmd = perfgate_cmd();
    cmd.arg("check")
        .arg("--config")
        .arg(&config_path)
        .arg("--all")
        .arg("--bench-regex")
        .arg("^bench-")
        .arg("--out-dir")
        .arg(&out_dir);

    let output = cmd.output().expect("failed to execute check");

    assert!(
        output.status.success(),
        "check --all --bench-regex should succeed: exit code {:?}, stderr: {}",
        output.status.code(),
        String::from_utf8_lossy(&output.stderr)
    );

    assert!(out_dir.join("bench-a").exists(), "bench-a should run");
    assert!(out_dir.join("bench-b").exists(), "bench-b should run");
    assert!(
        !out_dir.join("service/api").exists(),
        "service/api should be filtered out"
    );
    assert!(
        !out_dir.join("service/web").exists(),
        "service/web should be filtered out"
    );
}

/// Test --bench-regex fails when nothing matches
#[test]
fn test_check_all_bench_regex_no_match_fails() {
    let temp_dir = tempdir().expect("failed to create temp dir");
    let out_dir = temp_dir.path().join("artifacts");
    let config_path = create_multi_bench_config(temp_dir.path(), &["bench-a", "bench-b"]);

    let mut cmd = perfgate_cmd();
    cmd.arg("check")
        .arg("--config")
        .arg(&config_path)
        .arg("--all")
        .arg("--bench-regex")
        .arg("^does-not-match$")
        .arg("--out-dir")
        .arg(&out_dir);

    let output = cmd.output().expect("failed to execute check");
    assert!(
        !output.status.success(),
        "check --all --bench-regex with no matches should fail"
    );

    let stderr = String::from_utf8_lossy(&output.stderr);
    assert!(
        stderr.contains("did not match any benchmark names"),
        "stderr should mention regex matched no benches: {}",
        stderr
    );
}

/// Test --all flag with baselines
#[test]
fn test_check_all_with_baselines() {
    let temp_dir = tempdir().expect("failed to create temp dir");
    let out_dir = temp_dir.path().join("artifacts");
    let config_path = create_multi_bench_config(temp_dir.path(), &["bench-x", "bench-y"]);

    // Create baselines for both benches
    create_baseline_receipt(temp_dir.path(), "bench-x");
    create_baseline_receipt(temp_dir.path(), "bench-y");

    let mut cmd = perfgate_cmd();
    cmd.current_dir(temp_dir.path())
        .arg("check")
        .arg("--config")
        .arg(&config_path)
        .arg("--all")
        .arg("--out-dir")
        .arg(&out_dir);

    let output = cmd.output().expect("failed to execute check");

    assert!(
        output.status.success(),
        "check --all with baselines should succeed: exit code {:?}, stderr: {}",
        output.status.code(),
        String::from_utf8_lossy(&output.stderr)
    );

    // Each bench should have compare.json since baselines exist
    for bench_name in &["bench-x", "bench-y"] {
        let bench_dir = out_dir.join(bench_name);
        assert!(
            bench_dir.join("compare.json").exists(),
            "compare.json should exist for {} when baseline is present",
            bench_name
        );
    }
}

/// Test --all exits with failure when any bench fails comparison
#[test]
fn test_check_all_exit_code_fail() {
    let temp_dir = tempdir().expect("failed to create temp dir");
    let out_dir = temp_dir.path().join("artifacts");
    let config_path = temp_dir.path().join("perfgate.toml");

    let cmd = slow_command();
    let cmd_str = cmd
        .iter()
        .map(|s| format!("\"{}\"", s))
        .collect::<Vec<_>>()
        .join(", ");

    let config_content = format!(
        r#"
[defaults]
repeat = 1
warmup = 0
threshold = 0.01

[[bench]]
name = "bench-a"
command = [{}]

[[bench]]
name = "bench-b"
command = [{}]
"#,
        cmd_str, cmd_str
    );

    fs::write(&config_path, config_content).expect("Failed to write config file");

    create_baseline_receipt_with_wall_ms(temp_dir.path(), "bench-a", 1);
    create_baseline_receipt_with_wall_ms(temp_dir.path(), "bench-b", 1);

    let mut cmd = perfgate_cmd();
    cmd.current_dir(temp_dir.path())
        .arg("check")
        .arg("--config")
        .arg(&config_path)
        .arg("--all")
        .arg("--out-dir")
        .arg(&out_dir);

    let output = cmd.output().expect("failed to execute check");
    assert_eq!(
        output.status.code(),
        Some(2),
        "check --all should exit 2 on failure: stderr {}",
        String::from_utf8_lossy(&output.stderr)
    );
}

/// Test --all fails on empty config
#[test]
fn test_check_all_empty_config_fails() {
    let temp_dir = tempdir().expect("failed to create temp dir");
    let out_dir = temp_dir.path().join("artifacts");

    // Create config with no benches
    let config_path = temp_dir.path().join("perfgate.toml");
    fs::write(
        &config_path,
        r#"
[defaults]
repeat = 2
"#,
    )
    .expect("Failed to write config file");

    let mut cmd = perfgate_cmd();
    cmd.arg("check")
        .arg("--config")
        .arg(&config_path)
        .arg("--all")
        .arg("--out-dir")
        .arg(&out_dir);

    let output = cmd.output().expect("failed to execute check");

    assert!(
        !output.status.success(),
        "check --all with empty config should fail"
    );

    let stderr = String::from_utf8_lossy(&output.stderr);
    assert!(
        stderr.contains("no benchmarks"),
        "stderr should mention no benchmarks: {}",
        stderr
    );
}

/// Test that --bench and --all are mutually exclusive
#[test]
fn test_check_bench_and_all_mutually_exclusive() {
    let temp_dir = tempdir().expect("failed to create temp dir");
    let out_dir = temp_dir.path().join("artifacts");
    let config_path = create_config_file(temp_dir.path(), "test-bench");

    let mut cmd = perfgate_cmd();
    cmd.arg("check")
        .arg("--config")
        .arg(&config_path)
        .arg("--bench")
        .arg("test-bench")
        .arg("--all")
        .arg("--out-dir")
        .arg(&out_dir);

    let output = cmd.output().expect("failed to execute check");

    assert!(
        !output.status.success(),
        "check with both --bench and --all should fail"
    );

    let stderr = String::from_utf8_lossy(&output.stderr);
    assert!(
        stderr.contains("cannot be used with") || stderr.contains("conflict"),
        "stderr should mention conflict: {}",
        stderr
    );
}

/// Test that neither --bench nor --all is specified fails
#[test]
fn test_check_no_bench_or_all_fails() {
    let temp_dir = tempdir().expect("failed to create temp dir");
    let out_dir = temp_dir.path().join("artifacts");
    let config_path = create_config_file(temp_dir.path(), "test-bench");

    let mut cmd = perfgate_cmd();
    cmd.arg("check")
        .arg("--config")
        .arg(&config_path)
        .arg("--out-dir")
        .arg(&out_dir);

    let output = cmd.output().expect("failed to execute check");

    assert!(
        !output.status.success(),
        "check without --bench or --all should fail"
    );

    let stderr = String::from_utf8_lossy(&output.stderr);
    assert!(
        stderr.contains("--bench") || stderr.contains("--all"),
        "stderr should mention --bench or --all required: {}",
        stderr
    );
}

/// Test --baseline is not allowed with --all
#[test]
fn test_check_baseline_and_all_mutually_exclusive() {
    let temp_dir = tempdir().expect("failed to create temp dir");
    let out_dir = temp_dir.path().join("artifacts");
    let config_path = create_multi_bench_config(temp_dir.path(), &["bench-a", "bench-b"]);
    let baseline_path = create_baseline_receipt(temp_dir.path(), "bench-a");

    let mut cmd = perfgate_cmd();
    cmd.arg("check")
        .arg("--config")
        .arg(&config_path)
        .arg("--all")
        .arg("--baseline")
        .arg(&baseline_path)
        .arg("--out-dir")
        .arg(&out_dir);

    let output = cmd.output().expect("failed to execute check");

    assert!(
        !output.status.success(),
        "check with both --all and --baseline should fail"
    );

    let stderr = String::from_utf8_lossy(&output.stderr);
    assert!(
        stderr.contains("cannot be used with") || stderr.contains("conflict"),
        "stderr should mention conflict: {}",
        stderr
    );
}