atento-core 0.1.0

Core engine for the Atento Chained Script CLI
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
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
// Integration tests for atento-core
// These tests use the public API to verify functionality with real system calls

#![allow(clippy::collapsible_if, clippy::useless_format, clippy::print_literal)]

use std::fs;
use std::io::Write;
use tempfile::{NamedTempFile, TempDir};

// File system and I/O tests
#[test]
fn test_run_file_not_found() {
    let result = atento_core::run("nonexistent_file.yaml");
    assert!(result.is_err());
    if let Err(atento_core::AtentoError::Io { path, .. }) = result {
        assert_eq!(path, "nonexistent_file.yaml");
    } else {
        panic!("Expected Io error");
    }
}

#[test]
fn test_run_nonexistent_file_with_special_chars() {
    let result = atento_core::run("file_with_ñ_ümläuts.yaml");
    assert!(result.is_err());
    if let Err(atento_core::AtentoError::Io { path, .. }) = result {
        assert_eq!(path, "file_with_ñ_ümläuts.yaml");
    } else {
        panic!("Expected Io error");
    }
}

#[test]
fn test_run_empty_filename() {
    let result = atento_core::run("");
    assert!(result.is_err());
    if let Err(atento_core::AtentoError::Io { path, .. }) = result {
        assert_eq!(path, "");
    } else {
        panic!("Expected Io error");
    }
}

#[test]
fn test_run_directory_instead_of_file() {
    // Try to run a directory instead of a file
    let result = atento_core::run("/tmp");
    assert!(result.is_err());
    // On most systems, trying to read a directory as a file should result in an IO error
    assert!(matches!(result, Err(atento_core::AtentoError::Io { .. })));
}

// YAML parsing tests
#[test]
fn test_run_invalid_yaml_syntax() {
    let mut temp_file = NamedTempFile::new().unwrap();
    writeln!(temp_file, "invalid: yaml: {{").unwrap();
    let path = temp_file.path().to_str().unwrap();

    let result = atento_core::run(path);
    assert!(result.is_err());
    if let Err(atento_core::AtentoError::YamlParse { .. }) = result {
        // Expected
    } else {
        panic!("Expected YamlParse error");
    }
}

#[test]
fn test_run_invalid_yaml_with_tabs() {
    let mut temp_file = NamedTempFile::new().unwrap();
    writeln!(temp_file, "name: test\n\tsteps:").unwrap(); // Tabs are invalid in YAML
    let path = temp_file.path().to_str().unwrap();

    let result = atento_core::run(path);
    assert!(result.is_err());
    assert!(matches!(
        result,
        Err(atento_core::AtentoError::YamlParse { .. })
    ));
}

#[test]
fn test_run_yaml_with_invalid_unicode() {
    let mut temp_file = NamedTempFile::new().unwrap();
    // Create invalid UTF-8 sequence
    temp_file.write_all(&[0xFF, 0xFE]).unwrap();
    temp_file.write_all(b"name: test").unwrap();
    let path = temp_file.path().to_str().unwrap();

    let result = atento_core::run(path);
    assert!(result.is_err());
    // Should fail on file reading due to invalid UTF-8
    assert!(matches!(result, Err(atento_core::AtentoError::Io { .. })));
}

#[test]
fn test_run_completely_empty_file() {
    let temp_file = NamedTempFile::new().unwrap();
    // Don't write anything - file is completely empty
    let path = temp_file.path().to_str().unwrap();

    let result = atento_core::run(path);
    // An empty file should either parse as an empty YAML doc or fail with YAML parse error
    match result {
        Ok(()) => {
            // Some YAML parsers accept empty files as valid empty documents
        }
        Err(atento_core::AtentoError::YamlParse { .. }) => {
            // Other parsers may reject empty files
        }
        Err(e) => {
            panic!("Expected YamlParse error or success, got: {e:?}");
        }
    }
}

#[test]
fn test_run_yaml_syntax_error_missing_colon() {
    let mut temp_file = NamedTempFile::new().unwrap();
    writeln!(temp_file, "name test").unwrap(); // Missing colon
    let path = temp_file.path().to_str().unwrap();

    let result = atento_core::run(path);
    assert!(result.is_err());
    assert!(matches!(
        result,
        Err(atento_core::AtentoError::YamlParse { .. })
    ));
}

#[test]
fn test_run_yaml_with_duplicate_keys() {
    let mut temp_file = NamedTempFile::new().unwrap();
    writeln!(temp_file, "name: first\nname: second").unwrap();
    let path = temp_file.path().to_str().unwrap();

    let result = atento_core::run(path);
    // This might succeed with the second value taking precedence,
    // or fail depending on YAML parser - both are valid behaviors
    // We're just testing that we handle it gracefully
    assert!(result.is_ok() || matches!(result, Err(atento_core::AtentoError::YamlParse { .. })));
}

// Chain validation tests (use real file I/O + validation)
#[cfg(unix)]
#[test]
fn test_run_chain_forward_reference_error() {
    let yaml = r"
name: forward_ref_chain
steps:
  step1:
    type: bash
    script: |
      echo {{ inputs.future }}
    inputs:
      future:
        ref: steps.step2.outputs.value
  step2:
    type: bash
    script: |
      echo 'value: 42'
    outputs:
      value:
        pattern: 'value: (\d+)'
        type: int
";
    let mut temp_file = NamedTempFile::new().unwrap();
    write!(temp_file, "{yaml}").unwrap();
    let path = temp_file.path().to_str().unwrap();

    let result = atento_core::run(path);
    assert!(result.is_err());
    match result {
        Err(atento_core::AtentoError::Validation(msg)) => {
            assert!(msg.contains("future step output"));
        }
        Err(e) => {
            panic!("Expected Validation error about forward reference, got: {e:?}");
        }
        Ok(()) => {
            panic!("Expected error but got success");
        }
    }
}

#[cfg(unix)]
#[test]
fn test_run_chain_empty_output_pattern() {
    let yaml = r"
name: empty_pattern_chain
steps:
  step1:
    type: bash
    script: echo test
    outputs:
      value:
        pattern: ''
";
    let mut temp_file = NamedTempFile::new().unwrap();
    write!(temp_file, "{yaml}").unwrap();
    let path = temp_file.path().to_str().unwrap();

    let result = atento_core::run(path);
    assert!(result.is_err());
    if let Err(atento_core::AtentoError::Validation(_)) = result {
        // Expected
    } else {
        panic!("Expected Validation error");
    }
}

#[cfg(unix)]
#[test]
fn test_run_chain_invalid_regex_pattern() {
    let yaml = r"
name: invalid_regex_chain
steps:
  step1:
    type: bash
    script: echo test
    outputs:
      value:
        pattern: '([invalid'
";
    let mut temp_file = NamedTempFile::new().unwrap();
    write!(temp_file, "{yaml}").unwrap();
    let path = temp_file.path().to_str().unwrap();

    let result = atento_core::run(path);
    assert!(result.is_err());
    if let Err(atento_core::AtentoError::Validation(msg)) = result {
        assert!(msg.contains("invalid regex pattern"));
    } else {
        panic!("Expected Validation error about regex");
    }
}

#[cfg(unix)]
#[test]
fn test_run_chain_unused_input() {
    let yaml = r"
name: unused_input_chain
steps:
  step1:
    type: bash
    script: echo hello
    inputs:
      unused:
        type: string
        value: never used
";
    let mut temp_file = NamedTempFile::new().unwrap();
    write!(temp_file, "{yaml}").unwrap();
    let path = temp_file.path().to_str().unwrap();

    let result = atento_core::run(path);
    assert!(result.is_err());
    if let Err(atento_core::AtentoError::Validation(msg)) = result {
        assert!(msg.contains("never used"));
    } else {
        panic!("Expected Validation error about unused input");
    }
}

#[cfg(unix)]
#[test]
fn test_run_chain_undeclared_input() {
    let yaml = r"
name: undeclared_input_chain
steps:
  step1:
    type: bash
    script: echo {{ inputs.undefined }}
";
    let mut temp_file = NamedTempFile::new().unwrap();
    write!(temp_file, "{yaml}").unwrap();
    let path = temp_file.path().to_str().unwrap();

    let result = atento_core::run(path);
    assert!(result.is_err());
    if let Err(atento_core::AtentoError::Validation(msg)) = result {
        assert!(msg.contains("not declared"));
    } else {
        panic!("Expected Validation error about undeclared input");
    }
}

#[cfg(unix)]
#[test]
fn test_run_chain_with_validation_error() {
    let yaml = r"
name: invalid_chain
steps:
  step1:
    type: bash
    script: echo {{ inputs.undefined }}
";
    let mut temp_file = NamedTempFile::new().unwrap();
    write!(temp_file, "{yaml}").unwrap();
    let path = temp_file.path().to_str().unwrap();

    let result = atento_core::run(path);
    assert!(result.is_err());
    if let Err(atento_core::AtentoError::Validation(_)) = result {
        // Expected
    } else {
        panic!("Expected Validation error");
    }
}

// Basic chain execution tests (minimal setup)
#[test]
fn test_run_empty_chain() {
    let mut temp_file = NamedTempFile::new().unwrap();
    writeln!(temp_file, "name: empty").unwrap();
    let path = temp_file.path().to_str().unwrap();

    let result = atento_core::run(path);
    assert!(result.is_ok());
}

#[cfg(unix)]
#[test]
fn test_run_chain_with_name() {
    let yaml = r"
name: named_chain
steps:
  step1:
    type: bash
    script: echo test
";
    let mut temp_file = NamedTempFile::new().unwrap();
    write!(temp_file, "{yaml}").unwrap();
    let path = temp_file.path().to_str().unwrap();

    let result = atento_core::run(path);
    assert!(result.is_ok());
}

#[cfg(unix)]
#[test]
fn test_run_chain_without_name() {
    let yaml = r"
steps:
  step1:
    type: bash
    script: echo test
";
    let mut temp_file = NamedTempFile::new().unwrap();
    write!(temp_file, "{yaml}").unwrap();
    let path = temp_file.path().to_str().unwrap();

    let result = atento_core::run(path);
    assert!(result.is_ok());
}

#[cfg(unix)]
#[test]
fn test_run_simple_chain_from_file() {
    let temp_dir = TempDir::new().unwrap();
    let chain_path = temp_dir.path().join("simple.yaml");

    let chain_content = r#"
name: "Simple Test Chain"
steps:
  test_step:
    type: bash
    script: echo "Hello from integration test"
"#;

    fs::write(&chain_path, chain_content).unwrap();

    // This should run successfully using the public API
    let result = atento_core::run(chain_path.to_str().unwrap());
    assert!(result.is_ok());
}

#[test]
fn test_run_nonexistent_file() {
    let result = atento_core::run("nonexistent_file.yaml");
    assert!(result.is_err());

    if let Err(atento_core::AtentoError::Io { path, .. }) = result {
        assert_eq!(path, "nonexistent_file.yaml");
    } else {
        panic!("Expected Io error");
    }
}

#[test]
fn test_run_invalid_yaml() {
    let temp_dir = TempDir::new().unwrap();
    let chain_path = temp_dir.path().join("invalid.yaml");

    fs::write(&chain_path, "invalid: yaml: content: [").unwrap();

    let result = atento_core::run(chain_path.to_str().unwrap());
    assert!(result.is_err());

    assert!(matches!(
        result,
        Err(atento_core::AtentoError::YamlParse { .. })
    ));
}

#[cfg(unix)]
#[test]
fn test_run_bash_chain() {
    let temp_dir = TempDir::new().unwrap();
    let chain_path = temp_dir.path().join("bash_test.yaml");

    let chain_content = r#"
name: "Bash Integration Test"
steps:
  bash_step:
    type: bash
    script: |
      echo "Testing bash execution"
      echo "Exit code: $?"
"#;

    fs::write(&chain_path, chain_content).unwrap();

    let result = atento_core::run(chain_path.to_str().unwrap());
    assert!(result.is_ok());
}

#[cfg(unix)]
#[test]
fn test_run_python_chain() {
    let temp_dir = TempDir::new().unwrap();
    let chain_path = temp_dir.path().join("python_test.yaml");

    let chain_content = r#"
name: "Python Integration Test"
steps:
  python_step:
    type: python
    script: |
      print("Testing python execution")
      print(f"2 + 2 = {2 + 2}")
"#;

    fs::write(&chain_path, chain_content).unwrap();

    let result = atento_core::run(chain_path.to_str().unwrap());
    assert!(result.is_ok());
}

#[cfg(windows)]
#[test]
fn test_run_batch_chain() {
    let temp_dir = TempDir::new().unwrap();
    let chain_path = temp_dir.path().join("batch_test.yaml");

    let chain_content = r#"
name: "Batch Integration Test"
steps:
  batch_step:
    type: batch
    script: |
      echo Testing batch execution
      echo Exit code: %ERRORLEVEL%
"#;

    fs::write(&chain_path, chain_content).unwrap();

    let result = atento_core::run(chain_path.to_str().unwrap());
    assert!(result.is_ok());
}

#[cfg(windows)]
#[test]
fn test_run_powershell_chain() {
    let temp_dir = TempDir::new().unwrap();
    let chain_path = temp_dir.path().join("powershell_test.yaml");

    let chain_content = r#"
name: "PowerShell Integration Test"
steps:
  powershell_step:
    type: powershell
    script: |
      Write-Host "Testing PowerShell execution"
      Write-Host "2 + 2 = $(2 + 2)"
"#;

    fs::write(&chain_path, chain_content).unwrap();

    let result = atento_core::run(chain_path.to_str().unwrap());
    assert!(result.is_ok());
}

#[cfg(windows)]
#[test]
fn test_run_python_chain_windows() {
    let temp_dir = TempDir::new().unwrap();
    let chain_path = temp_dir.path().join("python_test.yaml");

    let chain_content = r#"
name: "Python Integration Test (Windows)"
steps:
  python_step:
    type: python
    script: |
      print("Testing python execution on Windows")
      print(f"2 + 2 = {2 + 2}")
"#;

    fs::write(&chain_path, chain_content).unwrap();

    let result = atento_core::run(chain_path.to_str().unwrap());
    assert!(result.is_ok());
}

// Windows-specific versions of key tests using batch commands
#[cfg(windows)]
#[test]
fn test_run_chain_with_name_windows() {
    let yaml = r"
name: named_chain
steps:
  step1:
    type: batch
    script: echo test
";
    let mut temp_file = NamedTempFile::new().unwrap();
    write!(temp_file, "{yaml}").unwrap();
    let path = temp_file.path().to_str().unwrap();

    let result = atento_core::run(path);
    assert!(result.is_ok());
}

#[cfg(windows)]
#[test]
fn test_run_chain_without_name_windows() {
    let yaml = r"
steps:
  step1:
    type: batch
    script: echo test
";
    let mut temp_file = NamedTempFile::new().unwrap();
    write!(temp_file, "{yaml}").unwrap();
    let path = temp_file.path().to_str().unwrap();

    let result = atento_core::run(path);
    assert!(result.is_ok());
}

#[cfg(windows)]
#[test]
fn test_run_simple_chain_from_file_windows() {
    let temp_dir = TempDir::new().unwrap();
    let chain_path = temp_dir.path().join("simple.yaml");

    let chain_content = r#"
name: "Simple Test Chain"
steps:
  test_step:
    type: batch
    script: echo Hello from integration test
"#;

    fs::write(&chain_path, chain_content).unwrap();

    // This should run successfully using the public API
    let result = atento_core::run(chain_path.to_str().unwrap());
    assert!(result.is_ok());
}

#[cfg(windows)]
#[test]
fn test_run_chain_undeclared_input_windows() {
    let yaml = r"
name: undeclared_input_chain
steps:
  step1:
    type: batch
    script: echo {{ inputs.undefined }}
";
    let mut temp_file = NamedTempFile::new().unwrap();
    write!(temp_file, "{yaml}").unwrap();
    let path = temp_file.path().to_str().unwrap();

    let result = atento_core::run(path);
    assert!(result.is_err());
    if let Err(atento_core::AtentoError::Validation(msg)) = result {
        assert!(msg.contains("not declared"));
    } else {
        panic!("Expected Validation error about undeclared input");
    }
}

// Comprehensive chain tests - QA smoke tests
#[cfg(unix)]
#[test]
fn test_chain_smoke_tests_unix() {
    // The test runs from atento-core directory, so chains are in tests/chains/unix
    let chain_dir = std::path::Path::new("tests/chains/unix");

    // Skip if chains directory doesn't exist (development environments)
    if !chain_dir.exists() {
        println!("Skipping Unix chain tests - directory not found");
        return;
    }

    let mut test_results = Vec::new();

    // Discover and run all .yaml files in the unix directory
    let entries = fs::read_dir(chain_dir).unwrap();
    for entry in entries {
        let entry = entry.unwrap();
        let path = entry.path();

        if path
            .extension()
            .is_some_and(|ext| ext == "yaml" || ext == "yml")
        {
            let chain_name = path.file_name().unwrap().to_str().unwrap();
            eprintln!("\x1b[36mRunning Unix chain: {}\x1b[0m", chain_name);

            // Parse the chain and run it to obtain a ChainResult so we can inspect step stderr
            let contents = fs::read_to_string(&path).unwrap_or_default();
            let wf: atento_core::Chain = match serde_yaml::from_str(&contents) {
                Ok(w) => w,
                Err(e) => {
                    test_results.push((
                        chain_name.to_string(),
                        format!("FAILED: invalid YAML: {}", e),
                    ));
                    eprintln!(
                        "\x1b[31m✗ {} - FAILED: invalid YAML: {}\x1b[0m",
                        chain_name, e
                    );
                    continue;
                }
            };

            // Pre-check that interpreters required by the chain steps are actually runnable on this host.
            // This checks the exact program the runtime will invoke (for example 'python3' vs 'python').
            let mut missing_progs = Vec::new();
            for (_k, step) in &wf.steps {
                // Get the program that will be invoked for this interpreter
                let interpreter = match wf.interpreters.get(&step.interpreter) {
                    Some(interp) => interp,
                    None => continue,
                };
                let args = &interpreter.args;
                if args.is_empty() {
                    continue;
                }
                let prog = args[0].as_str();

                // Build candidate commands to try: prefer the exact prog, but for common aliases try fallbacks
                let candidates: Vec<Vec<&str>> = if prog == "python3" {
                    vec![
                        vec!["python3", "-c", "import sys; sys.exit(0)"],
                        vec!["python", "-c", "import sys; sys.exit(0)"],
                    ]
                } else if prog == "python" {
                    vec![
                        vec!["python", "-c", "import sys; sys.exit(0)"],
                        vec!["python3", "-c", "import sys; sys.exit(0)"],
                    ]
                } else if prog == "pwsh" {
                    vec![
                        vec!["pwsh", "-c", "exit 0"],
                        vec!["powershell", "-Command", "exit 0"],
                    ]
                } else if prog == "powershell" {
                    vec![
                        vec!["powershell", "-Command", "exit 0"],
                        vec!["pwsh", "-c", "exit 0"],
                    ]
                } else if prog == "bash" {
                    vec![vec!["bash", "-c", "exit 0"]]
                } else {
                    vec![vec![prog, "--version"]]
                };

                let mut runnable = false;
                for cand in candidates.iter() {
                    let prog = cand[0];
                    let args = &cand[1..];
                    let attempted = std::process::Command::new(prog).args(args).output();
                    if let Ok(output) = attempted
                        && output.status.success()
                    {
                        runnable = true;
                        break;
                    }
                }

                if !runnable {
                    missing_progs.push(prog.to_string());
                }
            }

            if !missing_progs.is_empty() {
                let msg = format!(
                    "SKIPPED: Missing exact interpreter executables: {}",
                    missing_progs.join(", ")
                );
                test_results.push((chain_name.to_string(), msg.clone()));
                eprintln!("\x1b[33m→ {} - {}\x1b[0m", chain_name, msg);
                continue;
            }

            let result = wf.run();
            let json = serde_json::to_string_pretty(&result).unwrap_or_default();
            println!("{}", json);

            // If there are no errors the chain passed
            if result.errors.is_empty() {
                test_results.push((chain_name.to_string(), "PASSED".to_string()));
                eprintln!("\x1b[32m✓ {} - PASSED\x1b[0m", chain_name);
                continue;
            }

            // Inspect step stderr/stdout/outputs to detect missing interpreters or platform mismatches -> mark as SKIPPED
            let mut detected_missing = false;
            let missing_indicators = [
                "was not found",
                "not recognized",
                "no such file or directory",
                "command not found",
                "not found",
                "is not recognized as a name of a cmdlet", // PowerShell-specific
                "is not recognized as an internal or external command", // cmd.exe-specific
            ];

            if let Some(steps_map) = result.steps {
                for (_k, step_res) in steps_map.iter() {
                    let stderr = step_res.stderr.clone().unwrap_or_default().to_lowercase();
                    let stdout = step_res.stdout.clone().unwrap_or_default().to_lowercase();

                    eprintln!(
                        "DEBUG: step exit_code={} stderr=[{}]",
                        step_res.exit_code, stderr
                    );

                    // Check for missing interpreter/command patterns
                    if step_res.exit_code == 9009
                        || missing_indicators.iter().any(|ind| stderr.contains(ind))
                    {
                        detected_missing = true;
                        break;
                    }

                    // Check for platform-specific failures
                    for (_output_name, output_value) in &step_res.outputs {
                        let output_str = output_value.to_lowercase();
                        if output_str.contains("nok - expected unix platform")
                            || output_str.contains("nok - expected windows platform")
                            || output_str.contains("could not detect unix system")
                            || output_str.contains("could not detect windows system")
                        {
                            detected_missing = true;
                            break;
                        }
                    }

                    if stdout.contains("could not detect unix system")
                        || stdout.contains("could not detect windows system")
                        || stdout.contains("nok - expected unix platform")
                        || stdout.contains("nok - expected windows platform")
                    {
                        detected_missing = true;
                        break;
                    }

                    if detected_missing {
                        break;
                    }
                }
            }

            if detected_missing {
                let msg = format!(
                    "SKIPPED: missing interpreter or platform mismatch detected in step output"
                );
                test_results.push((chain_name.to_string(), msg.clone()));
                eprintln!("\x1b[33m→ {} - {}\x1b[0m", chain_name, msg);
            } else {
                test_results.push((
                    chain_name.to_string(),
                    format!("FAILED: {}", "Chain completed with errors"),
                ));
                eprintln!(
                    "\x1b[31m✗ {} - FAILED: {}\x1b[0m",
                    chain_name, "Chain completed with errors"
                );
            }
        }
    }

    // Print summary
    eprintln!("\n\x1b[1m\x1b[36m=== UNIX CHAIN SMOKE TEST RESULTS ===\x1b[0m");

    let passed_count = test_results
        .iter()
        .filter(|(_, result)| result.starts_with("PASSED"))
        .count();
    let failed_count = test_results
        .iter()
        .filter(|(_, result)| result.starts_with("FAILED"))
        .count();
    let skipped_count = test_results
        .iter()
        .filter(|(_, result)| result.starts_with("SKIPPED"))
        .count();

    for (chain, result) in &test_results {
        if result.starts_with("PASSED") {
            eprintln!("\x1b[32m{}: {}\x1b[0m", chain, result);
        } else if result.starts_with("SKIPPED") {
            eprintln!("\x1b[33m{}: {}\x1b[0m", chain, result);
        } else {
            eprintln!("\x1b[31m{}: {}\x1b[0m", chain, result);
        }
    }

    // Ensure we found and ran some chains
    assert!(
        !test_results.is_empty(),
        "No chain files found in unix directory"
    );

    // Report summary statistics
    eprintln!(
        "\n\x1b[1mSummary: {} PASSED, {} FAILED, {} SKIPPED (Total: {})\x1b[0m",
        passed_count,
        failed_count,
        skipped_count,
        test_results.len()
    );

    // Ensure no chains failed
    if failed_count > 0 {
        panic!(
            "{} out of {} Unix chains failed",
            failed_count,
            test_results.len()
        );
    }

    // Ensure we actually ran some chains (not all skipped)
    if passed_count == 0 {
        panic!(
            "No Unix chains could be executed - all {} were skipped. This likely indicates missing interpreters in CI environment.",
            test_results.len()
        );
    }

    eprintln!(
        "\x1b[1m\x1b[32m🎉 {} Unix chain(s) passed successfully!\x1b[0m",
        passed_count
    );
}

// QA-friendly test that shows results in assertion messages
#[cfg(unix)]
#[test]
fn test_qa_chain_summary_unix() {
    let chain_dir = std::path::Path::new("tests/chains/unix");

    if !chain_dir.exists() {
        panic!("QA chains directory not found: tests/chains/unix");
    }

    let mut passed = 0;
    let mut failed = 0;
    let mut chain_names = Vec::new();

    let entries = fs::read_dir(chain_dir).unwrap();
    for entry in entries {
        let entry = entry.unwrap();
        let path = entry.path();

        if path
            .extension()
            .is_some_and(|ext| ext == "yaml" || ext == "yml")
        {
            let chain_name = path.file_name().unwrap().to_str().unwrap();
            chain_names.push(chain_name.to_string());

            match atento_core::run(path.to_str().unwrap()) {
                Ok(()) => passed += 1,
                Err(_) => failed += 1,
            }
        }
    }

    assert_eq!(
        failed,
        0,
        "QA Smoke Test Results: {} PASSED, {} FAILED chains: [{}]",
        passed,
        failed,
        chain_names.join(", ")
    );
}

// QA-friendly test that shows results in assertion messages - Windows
#[cfg(windows)]
#[test]
fn test_qa_chain_summary_windows() {
    let chain_dir = std::path::Path::new("tests/chains/windows");

    if !chain_dir.exists() {
        panic!("QA chains directory not found: tests/chains/windows");
    }

    let mut passed = 0;
    let mut failed = 0;
    let mut chain_names = Vec::new();

    let entries = fs::read_dir(chain_dir).unwrap();
    for entry in entries {
        let entry = entry.unwrap();
        let path = entry.path();

        if path
            .extension()
            .map_or(false, |ext| ext == "yaml" || ext == "yml")
        {
            let chain_name = path.file_name().unwrap().to_str().unwrap();
            chain_names.push(chain_name.to_string());

            match atento_core::run(path.to_str().unwrap()) {
                Ok(()) => passed += 1,
                Err(_) => failed += 1,
            }
        }
    }

    assert_eq!(
        failed,
        0,
        "QA Smoke Test Results: {} PASSED, {} FAILED chains: [{}]",
        passed,
        failed,
        chain_names.join(", ")
    );
}

#[cfg(windows)]
#[test]
fn test_chain_smoke_tests_windows() {
    // The test runs from atento-core directory, so chains are in tests/chains/windows
    let chain_dir = std::path::Path::new("tests/chains/windows");

    // Skip if chains directory doesn't exist (development environments)
    if !chain_dir.exists() {
        println!("Skipping Windows chain tests - directory not found");
        return;
    }

    let mut test_results = Vec::new();

    // Discover and run all .yaml files in the windows directory
    let entries = fs::read_dir(chain_dir).unwrap();
    for entry in entries {
        let entry = entry.unwrap();
        let path = entry.path();

        if path
            .extension()
            .map_or(false, |ext| ext == "yaml" || ext == "yml")
        {
            let chain_name = path.file_name().unwrap().to_str().unwrap();
            eprintln!("\x1b[36mRunning Windows chain: {}\x1b[0m", chain_name);

            // Parse the chain and run it to inspect step outputs for missing interpreters
            let contents = fs::read_to_string(&path).unwrap_or_default();
            let wf: atento_core::Chain = match serde_yaml::from_str(&contents) {
                Ok(w) => w,
                Err(e) => {
                    test_results.push((
                        chain_name.to_string(),
                        format!("FAILED: invalid YAML: {}", e),
                    ));
                    eprintln!(
                        "\x1b[31m✗ {} - FAILED: invalid YAML: {}\x1b[0m",
                        chain_name, e
                    );
                    continue;
                }
            };

            let result = wf.run();
            let json = serde_json::to_string_pretty(&result).unwrap_or_default();
            println!("{}", json);

            if result.errors.is_empty() {
                test_results.push((chain_name.to_string(), "PASSED".to_string()));
                eprintln!("\x1b[32m✓ {} - PASSED\x1b[0m", chain_name);
                continue;
            }

            // Inspect step stderr/stdout/outputs to detect missing interpreters or platform mismatches and mark SKIPPED
            let mut detected_missing = false;
            let missing_indicators = [
                "was not found",
                "not recognized",
                "no such file or directory",
                "command not found",
                "not found",
                "is not recognized as a name of a cmdlet", // PowerShell-specific
                "is not recognized as an internal or external command", // cmd.exe-specific
            ];

            if let Some(steps_map) = result.steps {
                for (_k, step_res) in steps_map.iter() {
                    let stderr = step_res.stderr.clone().unwrap_or_default().to_lowercase();
                    let stdout = step_res.stdout.clone().unwrap_or_default().to_lowercase();

                    eprintln!(
                        "DEBUG: step exit_code={} stderr=[{}]",
                        step_res.exit_code, stderr
                    );

                    // Check for missing interpreter/command patterns
                    if step_res.exit_code == 9009
                        || missing_indicators.iter().any(|ind| stderr.contains(ind))
                    {
                        detected_missing = true;
                        break;
                    }

                    // Check for platform-specific failures
                    for (_output_name, output_value) in &step_res.outputs {
                        let output_str = output_value.to_lowercase();
                        if output_str.contains("nok - expected unix platform")
                            || output_str.contains("nok - expected windows platform")
                            || output_str.contains("could not detect unix system")
                            || output_str.contains("could not detect windows system")
                        {
                            detected_missing = true;
                            break;
                        }
                    }

                    if stdout.contains("could not detect unix system")
                        || stdout.contains("could not detect windows system")
                        || stdout.contains("nok - expected unix platform")
                        || stdout.contains("nok - expected windows platform")
                    {
                        detected_missing = true;
                        break;
                    }

                    if detected_missing {
                        break;
                    }
                }
            }

            if detected_missing {
                let msg = format!(
                    "SKIPPED: missing interpreter or platform mismatch detected in step output"
                );
                test_results.push((chain_name.to_string(), msg.clone()));
                eprintln!("\x1b[33m→ {} - {}\x1b[0m", chain_name, msg);
            } else {
                test_results.push((
                    chain_name.to_string(),
                    format!("FAILED: {}", "Chain completed with errors"),
                ));
                eprintln!(
                    "\x1b[31m✗ {} - FAILED: {}\x1b[0m",
                    chain_name, "Chain completed with errors"
                );
            }
        }
    }

    // Print summary
    eprintln!("\n\x1b[1m\x1b[35m=== WINDOWS CHAIN SMOKE TEST RESULTS ===\x1b[0m");

    let passed_count = test_results
        .iter()
        .filter(|(_, result)| result.starts_with("PASSED"))
        .count();
    let failed_count = test_results
        .iter()
        .filter(|(_, result)| result.starts_with("FAILED"))
        .count();
    let skipped_count = test_results
        .iter()
        .filter(|(_, result)| result.starts_with("SKIPPED"))
        .count();

    for (chain, result) in &test_results {
        if result.starts_with("PASSED") {
            eprintln!("\x1b[32m{}: {}\x1b[0m", chain, result);
        } else if result.starts_with("SKIPPED") {
            eprintln!("\x1b[33m{}: {}\x1b[0m", chain, result);
        } else {
            eprintln!("\x1b[31m{}: {}\x1b[0m", chain, result);
        }
    }

    // Ensure we found and ran some chains
    assert!(
        !test_results.is_empty(),
        "No chain files found in windows directory"
    );

    // Report summary statistics
    eprintln!(
        "\n\x1b[1mSummary: {} PASSED, {} FAILED, {} SKIPPED (Total: {})\x1b[0m",
        passed_count,
        failed_count,
        skipped_count,
        test_results.len()
    );

    // Ensure no chains failed
    if failed_count > 0 {
        panic!(
            "{} out of {} Windows chains failed",
            failed_count,
            test_results.len()
        );
    }

    // Ensure we actually ran some chains (not all skipped)
    if passed_count == 0 {
        panic!(
            "No Windows chains could be executed - all {} were skipped. This likely indicates missing interpreters in CI environment.",
            test_results.len()
        );
    }

    eprintln!(
        "\x1b[1m\x1b[32m🎉 {} Windows chain(s) passed successfully!\x1b[0m",
        passed_count
    );
}

// Cross-platform chain smoke tests
#[test]
fn test_chain_smoke_tests_cross_platform() {
    // The test runs from atento-core directory, so chains are in tests/chains/cross-platform
    let chain_dir = std::path::Path::new("tests/chains/cross-platform");

    // Skip if chains directory doesn't exist (development environments)
    if !chain_dir.exists() {
        println!("Skipping Cross-platform chain tests - directory not found");
        return;
    }

    let mut test_results = Vec::new();

    // Discover and run all .yaml files in the cross-platform directory
    let entries = fs::read_dir(chain_dir).unwrap();
    for entry in entries {
        let entry = entry.unwrap();
        let path = entry.path();

        if path
            .extension()
            .is_some_and(|ext| ext == "yaml" || ext == "yml")
        {
            let chain_name = path.file_name().unwrap().to_str().unwrap();
            eprintln!(
                "\x1b[36mRunning Cross-platform chain: {}\x1b[0m",
                chain_name
            );
            // Read the chain and detect required interpreters by simple text scan.
            // This is intentionally permissive and avoids YAML parsing edge-cases in tests.
            let content = fs::read_to_string(&path).unwrap_or_default();
            let content_lc = content.to_lowercase();
            let mut required_bins = std::collections::HashSet::new();
            if content_lc.contains("python") || content_lc.contains("type: python") {
                required_bins.insert("python");
            }
            if content_lc.contains("bash") || content_lc.contains("type: bash") {
                required_bins.insert("bash");
            }
            if content_lc.contains("powershell") || content_lc.contains("pwsh") {
                required_bins.insert("pwsh_or_powershell");
            }

            // Helper to try running a minimal command with the given interpreter to ensure it's usable.
            fn is_runnable(bin: &str) -> bool {
                use std::process::Command;

                let try_cmds: Vec<Vec<String>> = match bin {
                    "python" => vec![
                        vec![
                            "python".into(),
                            "-c".into(),
                            "import sys; sys.exit(0)".into(),
                        ],
                        vec![
                            "python3".into(),
                            "-c".into(),
                            "import sys; sys.exit(0)".into(),
                        ],
                    ],
                    "bash" => vec![vec!["bash".into(), "-c".into(), "exit 0".into()]],
                    "pwsh_or_powershell" => vec![
                        vec!["pwsh".into(), "-c".into(), "exit 0".into()],
                        vec!["powershell".into(), "-Command".into(), "exit 0".into()],
                    ],
                    other => vec![vec![other.to_string(), "--version".into()]],
                };

                for cmd in try_cmds {
                    if cmd.is_empty() {
                        continue;
                    }
                    let prog = &cmd[0];
                    let args = &cmd[1..];
                    let res = Command::new(prog).args(args).output();
                    if let Ok(output) = res {
                        // Consider runnable if the process executed and returned success
                        if output.status.success() {
                            return true;
                        }
                    }
                }
                false
            }

            // Check required bins; if missing, skip this chain (mark SKIPPED)
            let mut missing = Vec::new();
            for bin in &required_bins {
                if *bin == "pwsh_or_powershell" {
                    if !(is_runnable("pwsh_or_powershell")) {
                        missing.push("pwsh/powershell");
                    }
                } else if !is_runnable(bin) {
                    missing.push(bin);
                }
            }

            eprintln!("DEBUG: required_bins={:?}", required_bins.clone());
            eprintln!("DEBUG: missing={:?}", missing.clone());

            if !missing.is_empty() {
                let msg = format!("SKIPPED: Missing interpreters: {}", missing.join(", "));
                test_results.push((chain_name.to_string(), msg.clone()));
                eprintln!("\x1b[33m→ {} - {}\x1b[0m", chain_name, msg);
                continue;
            }

            // Parse the chain and run it to inspect step outputs for missing interpreters
            let contents = fs::read_to_string(&path).unwrap_or_default();
            let wf: atento_core::Chain = match serde_yaml::from_str(&contents) {
                Ok(w) => w,
                Err(e) => {
                    test_results.push((
                        chain_name.to_string(),
                        format!("FAILED: invalid YAML: {}", e),
                    ));
                    eprintln!(
                        "\x1b[31m✗ {} - FAILED: invalid YAML: {}\x1b[0m",
                        chain_name, e
                    );
                    continue;
                }
            };

            // Pre-check exact interpreter executables required by steps (skip if missing)
            let mut missing_progs = Vec::new();
            for (_k, step) in &wf.steps {
                let interpreter = match wf.interpreters.get(&step.interpreter) {
                    Some(interp) => interp,
                    None => continue,
                };
                let prog = interpreter.command.as_str();

                let candidates: Vec<Vec<&str>> = if prog == "python3" {
                    vec![
                        vec!["python3", "-c", "import sys; sys.exit(0)"],
                        vec!["python", "-c", "import sys; sys.exit(0)"],
                    ]
                } else if prog == "python" {
                    vec![
                        vec!["python", "-c", "import sys; sys.exit(0)"],
                        vec!["python3", "-c", "import sys; sys.exit(0)"],
                    ]
                } else if prog == "pwsh" {
                    vec![
                        vec!["pwsh", "-c", "exit 0"],
                        vec!["powershell", "-Command", "exit 0"],
                    ]
                } else if prog == "powershell" {
                    vec![
                        vec!["powershell", "-Command", "exit 0"],
                        vec!["pwsh", "-c", "exit 0"],
                    ]
                } else if prog == "bash" {
                    vec![vec!["bash", "-c", "exit 0"]]
                } else {
                    vec![vec![prog, "--version"]]
                };

                let mut runnable = false;
                for cand in candidates.iter() {
                    let prog = cand[0];
                    let args = &cand[1..];
                    if let Ok(output) = std::process::Command::new(prog).args(args).output()
                        && output.status.success()
                    {
                        runnable = true;
                        break;
                    }
                }

                if !runnable {
                    missing_progs.push(prog.to_string());
                }
            }

            if !missing_progs.is_empty() {
                let msg = format!(
                    "SKIPPED: Missing exact interpreter executables: {}",
                    missing_progs.join(", ")
                );
                test_results.push((chain_name.to_string(), msg.clone()));
                eprintln!("\x1b[33m→ {} - {}\x1b[0m", chain_name, msg);
                continue;
            }

            let result = wf.run();
            let json = serde_json::to_string_pretty(&result).unwrap_or_default();
            println!("{}", json);

            if result.errors.is_empty() {
                test_results.push((chain_name.to_string(), "PASSED".to_string()));
                eprintln!("\x1b[32m✓ {} - PASSED\x1b[0m", chain_name);
                continue;
            }

            // Inspect step stderr/stdout/outputs to detect missing interpreters or platform mismatches and mark SKIPPED
            let mut detected_missing = false;
            let missing_indicators = [
                "was not found",
                "not recognized",
                "no such file or directory",
                "command not found",
                "not found",
                "is not recognized as a name of a cmdlet", // PowerShell-specific
                "is not recognized as an internal or external command", // cmd.exe-specific
            ];

            if let Some(steps_map) = result.steps {
                for (_k, step_res) in steps_map.iter() {
                    let stderr = step_res.stderr.clone().unwrap_or_default().to_lowercase();
                    let stdout = step_res.stdout.clone().unwrap_or_default().to_lowercase();

                    eprintln!(
                        "DEBUG: step exit_code={} stderr=[{}]",
                        step_res.exit_code, stderr
                    );

                    // Check for missing interpreter/command patterns in stderr
                    if step_res.exit_code == 9009
                        || missing_indicators.iter().any(|ind| stderr.contains(ind))
                    {
                        detected_missing = true;
                        break;
                    }

                    // Check for platform-specific chain failures (e.g., Unix-specific tests on Windows)
                    // These chains contain platform checks that legitimately fail on the wrong platform
                    for (_output_name, output_value) in &step_res.outputs {
                        let output_str = output_value.to_lowercase();
                        if output_str.contains("nok - expected unix platform")
                            || output_str.contains("nok - expected windows platform")
                            || output_str.contains("could not detect unix system")
                            || output_str.contains("could not detect windows system")
                        {
                            detected_missing = true;
                            break;
                        }
                    }

                    // Also check stdout for platform detection failures
                    if stdout.contains("could not detect unix system")
                        || stdout.contains("could not detect windows system")
                        || stdout.contains("nok - expected unix platform")
                        || stdout.contains("nok - expected windows platform")
                    {
                        detected_missing = true;
                        break;
                    }

                    if detected_missing {
                        break;
                    }
                }
            }

            if detected_missing {
                let msg = format!(
                    "SKIPPED: missing interpreter or platform mismatch detected in step output"
                );
                test_results.push((chain_name.to_string(), msg.clone()));
                eprintln!("\x1b[33m→ {} - {}\x1b[0m", chain_name, msg);
            } else {
                test_results.push((
                    chain_name.to_string(),
                    format!("FAILED: {}", "Chain completed with errors"),
                ));
                eprintln!(
                    "\x1b[31m✗ {} - FAILED: {}\x1b[0m",
                    chain_name, "Chain completed with errors"
                );
            }
        }
    }

    // Print summary
    eprintln!("\n\x1b[1m\x1b[33m=== CROSS-PLATFORM CHAIN SMOKE TEST RESULTS ===\x1b[0m");

    let passed_count = test_results
        .iter()
        .filter(|(_, result)| result.starts_with("PASSED"))
        .count();
    let failed_count = test_results
        .iter()
        .filter(|(_, result)| result.starts_with("FAILED"))
        .count();
    let skipped_count = test_results
        .iter()
        .filter(|(_, result)| result.starts_with("SKIPPED"))
        .count();

    for (chain, result) in &test_results {
        if result.starts_with("PASSED") {
            eprintln!("\x1b[32m{}: {}\x1b[0m", chain, result);
        } else if result.starts_with("SKIPPED") {
            eprintln!("\x1b[33m{}: {}\x1b[0m", chain, result);
        } else {
            eprintln!("\x1b[31m{}: {}\x1b[0m", chain, result);
        }
    }

    // Ensure we found and ran some chains
    assert!(
        !test_results.is_empty(),
        "No chain files found in cross-platform directory"
    );

    // Report summary statistics
    eprintln!(
        "\n\x1b[1mSummary: {} PASSED, {} FAILED, {} SKIPPED (Total: {})\x1b[0m",
        passed_count,
        failed_count,
        skipped_count,
        test_results.len()
    );

    // Ensure no chains failed
    if failed_count > 0 {
        panic!(
            "{} out of {} Cross-platform chains failed",
            failed_count,
            test_results.len()
        );
    }

    // Ensure we actually ran some chains (not all skipped)
    if passed_count == 0 {
        panic!(
            "No cross-platform chains could be executed - all {} were skipped. This likely indicates missing interpreters in CI environment.",
            test_results.len()
        );
    }

    eprintln!(
        "\x1b[1m\x1b[32m🎉 {} Cross-platform chain(s) passed successfully!\x1b[0m",
        passed_count
    );
}

// Cross-platform chain validation test
#[test]
fn test_chain_file_validation() {
    // The test runs from atento-core directory, so chains are in tests/chains
    let base_dir = std::path::Path::new("tests/chains");
    if !base_dir.exists() {
        println!("Skipping chain validation - chains directory not found");
        return;
    }

    let mut total_chains = 0;
    let mut validation_results = Vec::new();

    // Check unix, windows, and cross-platform directories
    for platform in &["unix", "windows", "cross-platform"] {
        let platform_dir = base_dir.join(platform);
        if !platform_dir.exists() {
            continue;
        }

        let entries = fs::read_dir(&platform_dir).unwrap();
        for entry in entries {
            let entry = entry.unwrap();
            let path = entry.path();

            if path
                .extension()
                .is_some_and(|ext| ext == "yaml" || ext == "yml")
            {
                total_chains += 1;
                let chain_name = format!(
                    "{}/{}",
                    platform,
                    path.file_name().unwrap().to_str().unwrap()
                );

                // Read and basic validation - just ensure it's valid YAML
                match fs::read_to_string(&path) {
                    Ok(content) => {
                        // Try to parse as YAML (basic validation)
                        match serde_yaml::from_str::<serde_yaml::Value>(&content) {
                            Ok(_) => {
                                validation_results.push((chain_name, "VALID YAML".to_string()));
                            }
                            Err(e) => {
                                validation_results
                                    .push((chain_name, format!("INVALID YAML: {}", e)));
                            }
                        }
                    }
                    Err(e) => {
                        validation_results.push((chain_name, format!("READ ERROR: {}", e)));
                    }
                }
            }
        }
    }

    // Print validation results
    eprintln!("\n\x1b[1m\x1b[33m=== CHAIN FILE VALIDATION RESULTS ===\x1b[0m");
    for (chain, result) in &validation_results {
        if result.starts_with("VALID") {
            eprintln!("\x1b[32m{}: {}\x1b[0m", chain, result);
        } else {
            eprintln!("\x1b[31m{}: {}\x1b[0m", chain, result);
        }
    }

    // Ensure we found some chains
    if total_chains == 0 {
        println!("No chain files found - skipping validation test");
        return;
    }

    // Ensure all chains have valid YAML
    let invalid_count = validation_results
        .iter()
        .filter(|(_, result)| !result.starts_with("VALID"))
        .count();

    assert_eq!(
        invalid_count, 0,
        "{} out of {} chain files have invalid YAML",
        invalid_count, total_chains
    );

    eprintln!(
        "\x1b[1m\x1b[32m✅ All {} chain files have valid YAML syntax!\x1b[0m",
        total_chains
    );
}