rsconstruct 0.9.83

Rust based fast build system
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
use crate::common::{run_rsconstruct, run_rsconstruct_with_env, setup_test_project};
use std::fs;
use tempfile::TempDir;

#[test]
fn tera_to_file_translation() {
    let temp_dir = setup_test_project();
    let project_path = temp_dir.path();

    // Create a Python config file
    let config_content = r#"
project_name = "TestProject"
version = "1.2.3"
author = "Test Author"
debug_mode = True
features = ["logging", "caching", "metrics"]
max_connections = 100
"#;
    fs::write(project_path.join("config/test_config.py"), config_content)
        .expect("Failed to write config file");

    // Create a tera file
    let tera_content = r#"{% set cfg = load_python(path="config/test_config.py") %}
# Generated configuration for {{ cfg.project_name }}
# Version: {{ cfg.version }}
# Author: {{ cfg.author }}

[settings]
project = "{{ cfg.project_name }}"
version = "{{ cfg.version }}"
debug = {{ cfg.debug_mode }}
max_connections = {{ cfg.max_connections }}

[features]
{% for feature in cfg.features -%}
{{ feature }} = enabled
{% endfor %}

# Build information
{% if cfg.debug_mode -%}
build_type = "debug"
optimization = 0
{% else -%}
build_type = "release"
optimization = 3
{% endif -%}
"#;
    fs::write(
        project_path.join("tera.templates/app.config.tera"),
        tera_content,
    )
    .expect("Failed to write tera file");

    // Run rsconstruct build
    let output = run_rsconstruct_with_env(project_path, &["build"], &[("NO_COLOR", "1")]);
    assert!(
        output.status.success(),
        "rsconstruct build failed: {}",
        String::from_utf8_lossy(&output.stderr)
    );

    // Check that the output file was created
    let output_file = project_path.join("app.config");
    assert!(output_file.exists(), "Output file was not created");

    // Read and verify the generated file content
    let generated_content =
        fs::read_to_string(&output_file).expect("Failed to read generated file");

    // Verify expected content in the generated file
    assert!(generated_content.contains("Generated configuration for TestProject"));
    assert!(generated_content.contains("Version: 1.2.3"));
    assert!(generated_content.contains("Author: Test Author"));
    assert!(generated_content.contains("debug = true"));
    assert!(generated_content.contains("max_connections = 100"));
    assert!(generated_content.contains("logging = enabled"));
    assert!(generated_content.contains("caching = enabled"));
    assert!(generated_content.contains("metrics = enabled"));
    assert!(generated_content.contains("build_type = \"debug\""));
    assert!(generated_content.contains("optimization = 0"));

    println!("Generated file content:\n{}", generated_content);
}

#[test]
fn incremental_build() {
    let temp_dir = setup_test_project();
    let project_path = temp_dir.path();

    // Create a simple config and tera
    fs::write(
        project_path.join("config/simple.py"),
        "name = 'SimpleTest'\ncount = 42",
    )
    .expect("Failed to write config");

    fs::write(
        project_path.join("tera.templates/simple.txt.tera"),
        "{% set c = load_python(path='config/simple.py') %}Name: {{ c.name }}, Count: {{ c.count }}"
    ).expect("Failed to write tera");

    // First build
    let output1 = run_rsconstruct_with_env(project_path, &["build", "-v"], &[("NO_COLOR", "1")]);
    assert!(output1.status.success());
    let stdout1 = String::from_utf8_lossy(&output1.stdout);
    assert!(stdout1.contains("Processing:"));

    // Second build (should skip unchanged tera - use verbose to see skip message)
    let output2 =
        run_rsconstruct_with_env(project_path, &["build", "--verbose"], &[("NO_COLOR", "1")]);
    assert!(output2.status.success());
    let stdout2 = String::from_utf8_lossy(&output2.stdout);
    assert!(stdout2.contains("[tera] Skipping (unchanged):"));

    // Verify cache directory exists
    assert!(project_path.join(".rsconstruct/db.redb").exists());
}

#[test]
fn multiple_templates() {
    let temp_dir = setup_test_project();
    let project_path = temp_dir.path();

    // Create shared config
    let config = "shared_name = 'MultiTest'\nshared_value = 123";
    fs::write(project_path.join("config/shared.py"), config).unwrap();

    // Create multiple teras
    fs::write(
        project_path.join("tera.templates/first.txt.tera"),
        "{% set c = load_python(path='config/shared.py') %}First: {{ c.shared_name }}",
    )
    .unwrap();

    fs::write(
        project_path.join("tera.templates/second.conf.tera"),
        "{% set c = load_python(path='config/shared.py') %}[config]\nname={{ c.shared_name }}\nvalue={{ c.shared_value }}"
    ).unwrap();

    fs::write(
        project_path.join("tera.templates/third.json.tera"),
        r#"{% set c = load_python(path='config/shared.py') %}{"name": "{{ c.shared_name }}", "value": {{ c.shared_value }}}"#
    ).unwrap();

    // Build
    let output = run_rsconstruct(project_path, &["build"]);
    assert!(output.status.success());

    // Check all files were created
    assert!(project_path.join("first.txt").exists());
    assert!(project_path.join("second.conf").exists());
    assert!(project_path.join("third.json").exists());

    // Verify content
    let first = fs::read_to_string(project_path.join("first.txt")).unwrap();
    assert_eq!(first.trim(), "First: MultiTest");

    let third = fs::read_to_string(project_path.join("third.json")).unwrap();
    assert!(third.contains(r#""name": "MultiTest""#));
    assert!(third.contains(r#""value": 123"#));
}

#[test]
fn dep_inputs_triggers_rebuild() {
    let temp_dir = setup_test_project();
    let project_path = temp_dir.path();

    // Create a Python config file used as extra_input
    fs::write(project_path.join("config/settings.py"), "name = 'Original'").unwrap();

    // Create a tera
    fs::write(
        project_path.join("tera.templates/output.txt.tera"),
        "{% set c = load_python(path='config/settings.py') %}Name: {{ c.name }}",
    )
    .unwrap();

    // Configure tera processor with dep_inputs pointing to the config file
    fs::write(
        project_path.join("rsconstruct.toml"),
        "[processor.tera]\nsrc_dirs = [\"tera.templates\"]\ndep_inputs = [\"config/settings.py\"]\n"
    ).unwrap();

    // First build
    let output1 = run_rsconstruct_with_env(project_path, &["build", "-v"], &[("NO_COLOR", "1")]);
    assert!(
        output1.status.success(),
        "First build failed: stdout={}, stderr={}",
        String::from_utf8_lossy(&output1.stdout),
        String::from_utf8_lossy(&output1.stderr)
    );
    let stdout1 = String::from_utf8_lossy(&output1.stdout);
    assert!(
        stdout1.contains("Processing:"),
        "First build should process: {}",
        stdout1
    );

    // Second build — should skip (nothing changed)
    let output2 =
        run_rsconstruct_with_env(project_path, &["build", "--verbose"], &[("NO_COLOR", "1")]);
    assert!(output2.status.success());
    let stdout2 = String::from_utf8_lossy(&output2.stdout);
    assert!(
        stdout2.contains("[tera] Skipping (unchanged):"),
        "Second build should skip: {}",
        stdout2
    );

    // Wait so mtime differs
    std::thread::sleep(std::time::Duration::from_millis(100));

    // Modify the extra input file (but not the tera itself)
    fs::write(project_path.join("config/settings.py"), "name = 'Modified'").unwrap();

    // Third build — should rebuild because extra input changed
    let output3 = run_rsconstruct_with_env(project_path, &["build", "-v"], &[("NO_COLOR", "1")]);
    assert!(
        output3.status.success(),
        "Third build failed: stdout={}, stderr={}",
        String::from_utf8_lossy(&output3.stdout),
        String::from_utf8_lossy(&output3.stderr)
    );
    let stdout3 = String::from_utf8_lossy(&output3.stdout);
    assert!(
        stdout3.contains("Processing:"),
        "Build after extra_input change should reprocess, not skip: {}",
        stdout3
    );

    // Verify the output reflects the new config
    let content = fs::read_to_string(project_path.join("output.txt")).unwrap();
    assert!(
        content.contains("Modified"),
        "Output should reflect the modified config: {}",
        content
    );
}

#[test]
fn dep_inputs_nonexistent_file_fails() {
    let temp_dir = setup_test_project();
    let project_path = temp_dir.path();

    // Create a tera
    fs::write(project_path.join("config/simple.py"), "val = 'test'").unwrap();

    fs::write(
        project_path.join("tera.templates/simple.txt.tera"),
        "{% set c = load_python(path='config/simple.py') %}{{ c.val }}",
    )
    .unwrap();

    // Configure with a nonexistent extra_input — should cause an error
    fs::write(
        project_path.join("rsconstruct.toml"),
        "[processor.tera]\nsrc_dirs = [\"tera.templates\"]\ndep_inputs = [\"nonexistent_file.txt\"]\n"
    ).unwrap();

    let output = run_rsconstruct_with_env(project_path, &["build"], &[("NO_COLOR", "1")]);
    assert!(
        !output.status.success(),
        "Build should fail with nonexistent extra_input: stdout={}, stderr={}",
        String::from_utf8_lossy(&output.stdout),
        String::from_utf8_lossy(&output.stderr)
    );

    let stderr = String::from_utf8_lossy(&output.stderr);
    assert!(
        stderr.contains("dep_inputs file not found") || stderr.contains("nonexistent_file.txt"),
        "Error should mention missing dep_inputs file: {}",
        stderr
    );
}

#[test]
fn subdirectory_output() {
    let temp_dir = setup_test_project();
    let project_path = temp_dir.path();

    // Create a template in a subdirectory
    fs::create_dir_all(project_path.join("tera.templates/sub")).unwrap();
    fs::write(
        project_path.join("tera.templates/sub/output.txt.tera"),
        "Hello from subdirectory",
    )
    .unwrap();

    let output = run_rsconstruct_with_env(project_path, &["build"], &[("NO_COLOR", "1")]);
    assert!(
        output.status.success(),
        "rsconstruct build failed: {}",
        String::from_utf8_lossy(&output.stderr)
    );

    // Output should be at sub/output.txt (tera.templates/ prefix stripped)
    let output_file = project_path.join("sub/output.txt");
    assert!(
        output_file.exists(),
        "Output file sub/output.txt was not created"
    );

    let content = fs::read_to_string(&output_file).unwrap();
    assert_eq!(content, "Hello from subdirectory");
}

// ----- glob() and shell_output(depends_on=...) ---------------------------------------------
//
// These tests exercise the design from docs/src/internal/glob-deps.md:
// - glob(pattern=...) is a first-class directory query that participates in
//   dependency tracking (file content + path-set fingerprint).
// - shell_output() requires depends_on=[...] explicitly; missing the argument
//   is an error.
//
// Each test sets up a project with [processor.tera] + [analyzer.tera] declared,
// because the analyzer is what wires globs into the cache key. The harness's
// setup_test_project() only adds the processor, so we build configs explicitly.

/// Build a self-contained tera project with the given template body.
/// Returns a TempDir whose path contains rsconstruct.toml + the template +
/// any extra files the caller writes afterwards.
fn setup_glob_project(template_body: &str) -> TempDir {
    let temp_dir = TempDir::new().expect("Failed to create temp dir");
    let project_path = temp_dir.path();
    fs::create_dir_all(project_path.join("tera.templates")).unwrap();
    fs::write(
        project_path.join("rsconstruct.toml"),
        "[processor.tera]\nsrc_dirs = [\"tera.templates\"]\n[analyzer.tera]\n",
    )
    .unwrap();
    fs::write(
        project_path.join("tera.templates/report.txt.tera"),
        template_body,
    )
    .unwrap();
    temp_dir
}

#[test]
fn glob_counts_matching_files() {
    let project = setup_glob_project("Total: {{ glob(pattern=\"data/**/*.md\") | length }}\n");
    let p = project.path();

    fs::create_dir_all(p.join("data")).unwrap();
    fs::write(p.join("data/a.md"), "a").unwrap();
    fs::write(p.join("data/b.md"), "b").unwrap();
    fs::write(p.join("data/c.md"), "c").unwrap();
    // A non-matching file (wrong extension) — should not be counted.
    fs::write(p.join("data/ignore.txt"), "x").unwrap();

    let output = run_rsconstruct_with_env(p, &["build"], &[("NO_COLOR", "1")]);
    assert!(
        output.status.success(),
        "build failed: {}\n{}",
        String::from_utf8_lossy(&output.stdout),
        String::from_utf8_lossy(&output.stderr)
    );

    let report = fs::read_to_string(p.join("report.txt")).unwrap();
    assert_eq!(report.trim(), "Total: 3", "Got: {}", report);
}

#[test]
fn glob_invalidates_when_file_added() {
    let project = setup_glob_project("Total: {{ glob(pattern=\"data/**/*.md\") | length }}\n");
    let p = project.path();
    fs::create_dir_all(p.join("data")).unwrap();
    fs::write(p.join("data/a.md"), "a").unwrap();
    fs::write(p.join("data/b.md"), "b").unwrap();

    // First build: 2 files.
    let out1 = run_rsconstruct_with_env(p, &["build"], &[("NO_COLOR", "1")]);
    assert!(
        out1.status.success(),
        "first build failed: {}",
        String::from_utf8_lossy(&out1.stderr)
    );
    assert_eq!(
        fs::read_to_string(p.join("report.txt")).unwrap().trim(),
        "Total: 2"
    );

    // Add a third file.
    fs::write(p.join("data/c.md"), "c").unwrap();

    // Second build: should rebuild (not skip) and reflect 3 files.
    let out2 = run_rsconstruct_with_env(p, &["build", "--verbose"], &[("NO_COLOR", "1")]);
    assert!(
        out2.status.success(),
        "second build failed: {}",
        String::from_utf8_lossy(&out2.stderr)
    );
    let stdout2 = String::from_utf8_lossy(&out2.stdout);
    assert!(
        !stdout2.contains("[tera] Skipping (unchanged):"),
        "Second build should NOT have skipped after adding a glob-matched file. stdout={}",
        stdout2,
    );
    assert_eq!(
        fs::read_to_string(p.join("report.txt")).unwrap().trim(),
        "Total: 3"
    );
}

#[test]
fn glob_invalidates_when_file_removed() {
    let project = setup_glob_project("Total: {{ glob(pattern=\"data/**/*.md\") | length }}\n");
    let p = project.path();
    fs::create_dir_all(p.join("data")).unwrap();
    fs::write(p.join("data/a.md"), "a").unwrap();
    fs::write(p.join("data/b.md"), "b").unwrap();
    fs::write(p.join("data/c.md"), "c").unwrap();

    let out1 = run_rsconstruct_with_env(p, &["build"], &[("NO_COLOR", "1")]);
    assert!(out1.status.success());
    assert_eq!(
        fs::read_to_string(p.join("report.txt")).unwrap().trim(),
        "Total: 3"
    );

    fs::remove_file(p.join("data/c.md")).unwrap();

    let out2 = run_rsconstruct_with_env(p, &["build", "--verbose"], &[("NO_COLOR", "1")]);
    assert!(out2.status.success());
    let stdout2 = String::from_utf8_lossy(&out2.stdout);
    assert!(
        !stdout2.contains("[tera] Skipping (unchanged):"),
        "Second build should NOT have skipped after removing a glob-matched file. stdout={}",
        stdout2,
    );
    assert_eq!(
        fs::read_to_string(p.join("report.txt")).unwrap().trim(),
        "Total: 2"
    );
}

#[test]
fn glob_invalidates_when_file_renamed() {
    // Renaming a file with identical content otherwise produces the same
    // content-addressed cache key. The path-set fingerprint mixed into
    // config_hash is what makes this case work.
    let project =
        setup_glob_project("Sorted: {{ glob(pattern=\"data/**/*.md\") | join(sep=\",\") }}\n");
    let p = project.path();
    fs::create_dir_all(p.join("data")).unwrap();
    fs::write(p.join("data/old_name.md"), "same-content").unwrap();

    let out1 = run_rsconstruct_with_env(p, &["build"], &[("NO_COLOR", "1")]);
    assert!(out1.status.success());
    let report1 = fs::read_to_string(p.join("report.txt")).unwrap();
    assert!(report1.contains("old_name.md"), "Got: {}", report1);

    // Rename the file (content unchanged).
    fs::rename(p.join("data/old_name.md"), p.join("data/new_name.md")).unwrap();

    let out2 = run_rsconstruct_with_env(p, &["build", "--verbose"], &[("NO_COLOR", "1")]);
    assert!(out2.status.success());
    let stdout2 = String::from_utf8_lossy(&out2.stdout);
    assert!(
        !stdout2.contains("[tera] Skipping (unchanged):"),
        "Second build should NOT have skipped after rename. stdout={}",
        stdout2,
    );
    let report2 = fs::read_to_string(p.join("report.txt")).unwrap();
    assert!(report2.contains("new_name.md"), "Got: {}", report2);
    assert!(!report2.contains("old_name.md"), "Got: {}", report2);
}

#[test]
fn shell_output_without_depends_on_is_rejected() {
    let project = setup_glob_project("Count: {{ shell_output(command=\"ls data | wc -l\") }}\n");
    let p = project.path();
    fs::create_dir_all(p.join("data")).unwrap();
    fs::write(p.join("data/a.md"), "a").unwrap();

    let output = run_rsconstruct_with_env(p, &["build"], &[("NO_COLOR", "1")]);
    assert!(
        !output.status.success(),
        "Build should have failed for shell_output without depends_on. stdout={} stderr={}",
        String::from_utf8_lossy(&output.stdout),
        String::from_utf8_lossy(&output.stderr),
    );
    let combined = format!(
        "{}{}",
        String::from_utf8_lossy(&output.stdout),
        String::from_utf8_lossy(&output.stderr),
    );
    assert!(
        combined.contains("depends_on"),
        "Error message should mention depends_on. Got: {}",
        combined,
    );
}

#[test]
fn shell_output_with_depends_on_succeeds() {
    let project = setup_glob_project(
        "Count: {{ shell_output(command=\"ls data | wc -l\", depends_on=[\"data/**/*.md\"]) }}\n",
    );
    let p = project.path();
    fs::create_dir_all(p.join("data")).unwrap();
    fs::write(p.join("data/a.md"), "a").unwrap();
    fs::write(p.join("data/b.md"), "b").unwrap();

    let output = run_rsconstruct_with_env(p, &["build"], &[("NO_COLOR", "1")]);
    assert!(
        output.status.success(),
        "Build with depends_on should have succeeded. stdout={} stderr={}",
        String::from_utf8_lossy(&output.stdout),
        String::from_utf8_lossy(&output.stderr),
    );
    let report = fs::read_to_string(p.join("report.txt")).unwrap();
    assert_eq!(report.trim(), "Count: 2", "Got: {}", report);
}

#[test]
fn shell_output_invalidates_on_matching_file_change() {
    // shell_output's depends_on is the only way the analyzer learns which
    // files might affect the command's output. Modifying a depends_on-matched
    // file should bust the cache.
    let project = setup_glob_project(
        "Lines: {{ shell_output(command=\"cat data/*.md | wc -l\", depends_on=[\"data/**/*.md\"]) }}\n",
    );
    let p = project.path();
    fs::create_dir_all(p.join("data")).unwrap();
    fs::write(p.join("data/a.md"), "one\ntwo\n").unwrap();

    let out1 = run_rsconstruct_with_env(p, &["build"], &[("NO_COLOR", "1")]);
    assert!(
        out1.status.success(),
        "first build failed: {}",
        String::from_utf8_lossy(&out1.stderr)
    );
    assert_eq!(
        fs::read_to_string(p.join("report.txt")).unwrap().trim(),
        "Lines: 2"
    );

    // Edit the matching file: 2 lines → 3 lines.
    fs::write(p.join("data/a.md"), "one\ntwo\nthree\n").unwrap();

    let out2 = run_rsconstruct_with_env(p, &["build", "--verbose"], &[("NO_COLOR", "1")]);
    assert!(
        out2.status.success(),
        "second build failed: {}",
        String::from_utf8_lossy(&out2.stderr)
    );
    let stdout2 = String::from_utf8_lossy(&out2.stdout);
    assert!(
        !stdout2.contains("[tera] Skipping (unchanged):"),
        "Second build should NOT have skipped after editing a depends_on-matched file. stdout={}",
        stdout2,
    );
    assert_eq!(
        fs::read_to_string(p.join("report.txt")).unwrap().trim(),
        "Lines: 3"
    );
}

#[test]
fn shell_output_invalidates_when_command_edited() {
    // The literal command string is part of the config_hash, so editing the
    // command should bust the cache even when no depends_on file changed.
    let project =
        setup_glob_project("Out: {{ shell_output(command=\"echo first\", depends_on=[]) }}\n");
    let p = project.path();

    let out1 = run_rsconstruct_with_env(p, &["build"], &[("NO_COLOR", "1")]);
    assert!(
        out1.status.success(),
        "first build failed: {}",
        String::from_utf8_lossy(&out1.stderr)
    );
    assert_eq!(
        fs::read_to_string(p.join("report.txt")).unwrap().trim(),
        "Out: first"
    );

    // Edit only the command, not the dependency list.
    fs::write(
        p.join("tera.templates/report.txt.tera"),
        "Out: {{ shell_output(command=\"echo second\", depends_on=[]) }}\n",
    )
    .unwrap();

    let out2 = run_rsconstruct_with_env(p, &["build", "--verbose"], &[("NO_COLOR", "1")]);
    assert!(
        out2.status.success(),
        "second build failed: {}",
        String::from_utf8_lossy(&out2.stderr)
    );
    assert_eq!(
        fs::read_to_string(p.join("report.txt")).unwrap().trim(),
        "Out: second"
    );
}

// ----- git_count_files() ---------------------------------------------------
//
// git_count_files(pattern="...") counts only git-tracked files matching the
// pathspec. The analyzer mirrors that semantics by shelling out to
// `git ls-files -- <pattern>` so the path-set fingerprint mixed into the
// cache key matches what the renderer will actually count.

/// Initialize a git repo in `project_path` and stage+commit any tracked files
/// the caller has already written. Configures user.email/user.name so the
/// commit succeeds in CI environments.
fn git_init_and_commit(project_path: &std::path::Path) {
    use std::process::Command;
    let run = |args: &[&str]| {
        let status = Command::new("git")
            .current_dir(project_path)
            .args(args)
            .output()
            .expect("git invocation failed");
        assert!(
            status.status.success(),
            "git {:?} failed: {}",
            args,
            String::from_utf8_lossy(&status.stderr)
        );
    };
    run(&["init", "-q", "-b", "main"]);
    run(&["config", "user.email", "test@example.com"]);
    run(&["config", "user.name", "Test"]);
    run(&["add", "-A"]);
    run(&["commit", "-q", "-m", "init"]);
}

#[test]
fn git_count_files_counts_only_tracked() {
    let project = setup_glob_project("Total: {{ git_count_files(pattern=\"data/*.md\") }}\n");
    let p = project.path();
    fs::create_dir_all(p.join("data")).unwrap();
    fs::write(p.join("data/a.md"), "a").unwrap();
    fs::write(p.join("data/b.md"), "b").unwrap();
    git_init_and_commit(p);

    // An untracked file added after the commit must NOT be counted.
    fs::write(p.join("data/untracked.md"), "x").unwrap();

    let output = run_rsconstruct_with_env(p, &["build"], &[("NO_COLOR", "1")]);
    assert!(
        output.status.success(),
        "build failed: {}\n{}",
        String::from_utf8_lossy(&output.stdout),
        String::from_utf8_lossy(&output.stderr)
    );

    let report = fs::read_to_string(p.join("report.txt")).unwrap();
    assert_eq!(report.trim(), "Total: 2", "Got: {}", report);
}

#[test]
fn git_count_files_invalidates_when_file_committed() {
    let project = setup_glob_project("Total: {{ git_count_files(pattern=\"data/*.md\") }}\n");
    let p = project.path();
    fs::create_dir_all(p.join("data")).unwrap();
    fs::write(p.join("data/a.md"), "a").unwrap();
    fs::write(p.join("data/b.md"), "b").unwrap();
    git_init_and_commit(p);

    let out1 = run_rsconstruct_with_env(p, &["build"], &[("NO_COLOR", "1")]);
    assert!(
        out1.status.success(),
        "first build failed: {}",
        String::from_utf8_lossy(&out1.stderr)
    );
    assert_eq!(
        fs::read_to_string(p.join("report.txt")).unwrap().trim(),
        "Total: 2"
    );

    // Add a new file and commit it — `git ls-files` will now return 3.
    fs::write(p.join("data/c.md"), "c").unwrap();
    use std::process::Command;
    Command::new("git")
        .current_dir(p)
        .args(["add", "data/c.md"])
        .output()
        .unwrap();
    Command::new("git")
        .current_dir(p)
        .args(["commit", "-q", "-m", "add c"])
        .output()
        .unwrap();

    let out2 = run_rsconstruct_with_env(p, &["build", "--verbose"], &[("NO_COLOR", "1")]);
    assert!(
        out2.status.success(),
        "second build failed: {}",
        String::from_utf8_lossy(&out2.stderr)
    );
    let stdout2 = String::from_utf8_lossy(&out2.stdout);
    assert!(
        !stdout2.contains("[tera] Skipping (unchanged):"),
        "Second build should NOT have skipped after committing a new tracked file. stdout={}",
        stdout2,
    );
    assert_eq!(
        fs::read_to_string(p.join("report.txt")).unwrap().trim(),
        "Total: 3"
    );
}

#[test]
fn git_count_files_skips_when_only_untracked_added() {
    // Adding an untracked file does not change the git ls-files output, so
    // the build should skip on the second run. This is the inverse of
    // glob_invalidates_when_file_added — different semantics, different cache.
    let project = setup_glob_project("Total: {{ git_count_files(pattern=\"data/*.md\") }}\n");
    let p = project.path();
    fs::create_dir_all(p.join("data")).unwrap();
    fs::write(p.join("data/a.md"), "a").unwrap();
    fs::write(p.join("data/b.md"), "b").unwrap();
    git_init_and_commit(p);

    let out1 = run_rsconstruct_with_env(p, &["build"], &[("NO_COLOR", "1")]);
    assert!(out1.status.success());
    assert_eq!(
        fs::read_to_string(p.join("report.txt")).unwrap().trim(),
        "Total: 2"
    );

    // Add an untracked file — should NOT trigger a rebuild.
    fs::write(p.join("data/untracked.md"), "x").unwrap();

    let out2 = run_rsconstruct_with_env(p, &["build", "--verbose"], &[("NO_COLOR", "1")]);
    assert!(out2.status.success());
    let stdout2 = String::from_utf8_lossy(&out2.stdout);
    assert!(
        stdout2.contains("[tera] Skipping (unchanged):"),
        "Second build SHOULD have skipped — untracked files don't affect git_count_files. stdout={}",
        stdout2,
    );
}

#[test]
fn glob_skips_when_matched_file_content_changes() {
    // glob() consumes names, not content. Editing a file that happens to
    // match the glob must NOT invalidate the product — only adding,
    // removing, or renaming a matched file does.
    let project = setup_glob_project("Total: {{ glob(pattern=\"data/**/*.md\") | length }}\n");
    let p = project.path();
    fs::create_dir_all(p.join("data")).unwrap();
    fs::write(p.join("data/a.md"), "original").unwrap();
    fs::write(p.join("data/b.md"), "original").unwrap();

    let out1 = run_rsconstruct_with_env(p, &["build"], &[("NO_COLOR", "1")]);
    assert!(out1.status.success());

    // Edit the content of a matching file (path set unchanged).
    fs::write(p.join("data/a.md"), "edited").unwrap();

    let out2 = run_rsconstruct_with_env(p, &["build", "--verbose"], &[("NO_COLOR", "1")]);
    assert!(out2.status.success());
    let stdout2 = String::from_utf8_lossy(&out2.stdout);
    assert!(
        stdout2.contains("[tera] Skipping (unchanged):"),
        "Second build SHOULD skip — glob tracks names, not content. stdout={}",
        stdout2,
    );
}

#[test]
fn git_count_files_skips_when_tracked_file_content_changes() {
    // git_count_files() consumes the count of tracked files, not their
    // content. Editing a tracked matching file (without changing the
    // tracked path set) must NOT invalidate the product.
    let project = setup_glob_project("Total: {{ git_count_files(pattern=\"data/*.md\") }}\n");
    let p = project.path();
    fs::create_dir_all(p.join("data")).unwrap();
    fs::write(p.join("data/a.md"), "original").unwrap();
    fs::write(p.join("data/b.md"), "original").unwrap();
    git_init_and_commit(p);

    let out1 = run_rsconstruct_with_env(p, &["build"], &[("NO_COLOR", "1")]);
    assert!(out1.status.success());
    assert_eq!(
        fs::read_to_string(p.join("report.txt")).unwrap().trim(),
        "Total: 2"
    );

    // Edit a tracked file's content without changing the tracked set.
    fs::write(p.join("data/a.md"), "edited").unwrap();

    let out2 = run_rsconstruct_with_env(p, &["build", "--verbose"], &[("NO_COLOR", "1")]);
    assert!(out2.status.success());
    let stdout2 = String::from_utf8_lossy(&out2.stdout);
    assert!(
        stdout2.contains("[tera] Skipping (unchanged):"),
        "Second build SHOULD skip — git_count_files tracks count, not content. stdout={}",
        stdout2,
    );
}

// ----- grep_count() --------------------------------------------------------
//
// grep_count consumes file *content*, so the analyzer must add matched files
// as inputs (mtime/checksum-tracked). This is the key difference from glob
// and git_count_files.

#[test]
fn grep_count_counts_matching_lines() {
    let project =
        setup_glob_project("TODOs: {{ grep_count(pattern=\"^TODO\", glob=\"src/**/*.txt\") }}\n");
    let p = project.path();
    fs::create_dir_all(p.join("src")).unwrap();
    fs::write(p.join("src/a.txt"), "TODO: x\nfoo\nTODO: y\n").unwrap();
    fs::write(p.join("src/b.txt"), "no todos here\nTODO: z\n").unwrap();

    let output = run_rsconstruct_with_env(p, &["build"], &[("NO_COLOR", "1")]);
    assert!(
        output.status.success(),
        "build failed: {}\n{}",
        String::from_utf8_lossy(&output.stdout),
        String::from_utf8_lossy(&output.stderr)
    );
    let report = fs::read_to_string(p.join("report.txt")).unwrap();
    assert_eq!(report.trim(), "TODOs: 3", "Got: {}", report);
}

#[test]
fn grep_count_invalidates_when_matched_file_content_changes() {
    // Editing a file inside the glob must trigger a rebuild — that's the
    // whole point of grep_count vs glob/git_count_files.
    let project =
        setup_glob_project("TODOs: {{ grep_count(pattern=\"^TODO\", glob=\"src/**/*.txt\") }}\n");
    let p = project.path();
    fs::create_dir_all(p.join("src")).unwrap();
    fs::write(p.join("src/a.txt"), "TODO: x\n").unwrap();

    let out1 = run_rsconstruct_with_env(p, &["build"], &[("NO_COLOR", "1")]);
    assert!(
        out1.status.success(),
        "first build failed: {}",
        String::from_utf8_lossy(&out1.stderr)
    );
    assert_eq!(
        fs::read_to_string(p.join("report.txt")).unwrap().trim(),
        "TODOs: 1"
    );

    // Add another TODO line to the same file. Content changed; path set unchanged.
    fs::write(p.join("src/a.txt"), "TODO: x\nTODO: y\n").unwrap();

    let out2 = run_rsconstruct_with_env(p, &["build", "--verbose"], &[("NO_COLOR", "1")]);
    assert!(
        out2.status.success(),
        "second build failed: {}",
        String::from_utf8_lossy(&out2.stderr)
    );
    let stdout2 = String::from_utf8_lossy(&out2.stdout);
    assert!(
        !stdout2.contains("[tera] Skipping (unchanged):"),
        "Second build should NOT skip — grep_count tracks content. stdout={}",
        stdout2,
    );
    assert_eq!(
        fs::read_to_string(p.join("report.txt")).unwrap().trim(),
        "TODOs: 2"
    );
}

#[test]
fn grep_count_invalidates_when_regex_changes() {
    let project =
        setup_glob_project("Hits: {{ grep_count(pattern=\"^TODO\", glob=\"src/**/*.txt\") }}\n");
    let p = project.path();
    fs::create_dir_all(p.join("src")).unwrap();
    fs::write(p.join("src/a.txt"), "TODO: x\nFIXME: y\n").unwrap();

    let out1 = run_rsconstruct_with_env(p, &["build"], &[("NO_COLOR", "1")]);
    assert!(out1.status.success());
    assert_eq!(
        fs::read_to_string(p.join("report.txt")).unwrap().trim(),
        "Hits: 1"
    );

    // Change only the regex — same files, same content.
    fs::write(
        p.join("tera.templates/report.txt.tera"),
        "Hits: {{ grep_count(pattern=\"^FIXME\", glob=\"src/**/*.txt\") }}\n",
    )
    .unwrap();

    let out2 = run_rsconstruct_with_env(p, &["build", "--verbose"], &[("NO_COLOR", "1")]);
    assert!(out2.status.success());
    assert_eq!(
        fs::read_to_string(p.join("report.txt")).unwrap().trim(),
        "Hits: 1"
    );
}

#[test]
fn glob_in_included_snippet_is_tracked() {
    // The function call lives in an included snippet, not the top-level
    // template. The analyzer must recurse into includes so the snippet's
    // glob participates in the parent product's cache key.
    let temp_dir = TempDir::new().expect("Failed to create temp dir");
    let p = temp_dir.path();
    fs::create_dir_all(p.join("tera.templates")).unwrap();
    fs::create_dir_all(p.join("tera.snippets")).unwrap();
    fs::create_dir_all(p.join("data")).unwrap();
    fs::write(
        p.join("rsconstruct.toml"),
        "[processor.tera]\nsrc_dirs = [\"tera.templates\"]\n[analyzer.tera]\n",
    )
    .unwrap();
    fs::write(
        p.join("tera.templates/report.txt.tera"),
        "Header\n{% include \"tera.snippets/main.md.tera\" %}\nFooter\n",
    )
    .unwrap();
    fs::write(
        p.join("tera.snippets/main.md.tera"),
        "Total: {{ glob(pattern=\"data/**/*.md\") | length }}\n",
    )
    .unwrap();
    fs::write(p.join("data/a.md"), "a").unwrap();
    fs::write(p.join("data/b.md"), "b").unwrap();

    let out1 = run_rsconstruct_with_env(p, &["build"], &[("NO_COLOR", "1")]);
    assert!(
        out1.status.success(),
        "first build failed: {}",
        String::from_utf8_lossy(&out1.stderr)
    );
    let report = fs::read_to_string(p.join("report.txt")).unwrap();
    assert!(
        report.contains("Total: 2"),
        "report should reflect 2 files: {}",
        report
    );

    // Add a third matching file. The parent template body did not change,
    // and the snippet body did not change, so without recursive analysis
    // the build would skip incorrectly.
    fs::write(p.join("data/c.md"), "c").unwrap();

    let out2 = run_rsconstruct_with_env(p, &["build", "--verbose"], &[("NO_COLOR", "1")]);
    assert!(
        out2.status.success(),
        "second build failed: {}",
        String::from_utf8_lossy(&out2.stderr)
    );
    let stdout2 = String::from_utf8_lossy(&out2.stdout);
    assert!(
        !stdout2.contains("[tera] Skipping (unchanged):"),
        "Second build should NOT skip — glob in included snippet matched a new file. stdout={}",
        stdout2,
    );
    let report2 = fs::read_to_string(p.join("report.txt")).unwrap();
    assert!(
        report2.contains("Total: 3"),
        "report should reflect 3 files after add: {}",
        report2
    );
}

#[test]
fn glob_no_matches_returns_empty_list() {
    let project =
        setup_glob_project("Total: {{ glob(pattern=\"nonexistent/**/*.md\") | length }}\n");
    let p = project.path();

    let output = run_rsconstruct_with_env(p, &["build"], &[("NO_COLOR", "1")]);
    assert!(
        output.status.success(),
        "build with empty glob should succeed. stderr={}",
        String::from_utf8_lossy(&output.stderr)
    );

    assert_eq!(
        fs::read_to_string(p.join("report.txt")).unwrap().trim(),
        "Total: 0"
    );
}

/// `analyzers show files <path> --hash-pieces` must surface the structured
/// non-content state the analyzer mixes into the cache key. For a tera
/// template that calls `glob(pattern=...)`, the output should include the
/// pattern itself and the resolved file list so the user can see exactly
/// what's being tracked.
#[test]
fn show_files_hash_pieces_surfaces_glob_state() {
    let project = setup_glob_project("Total: {{ glob(pattern=\"data/*.md\") | length }}\n");
    let p = project.path();
    fs::create_dir_all(p.join("data")).unwrap();
    fs::write(p.join("data/a.md"), "a").unwrap();
    fs::write(p.join("data/b.md"), "b").unwrap();

    // Prime the deps cache so `analyzers show files` has an entry to read.
    let build = run_rsconstruct_with_env(p, &["build"], &[("NO_COLOR", "1")]);
    assert!(
        build.status.success(),
        "build failed: {}",
        String::from_utf8_lossy(&build.stderr)
    );

    let out = run_rsconstruct_with_env(
        p,
        &[
            "analyzers",
            "show",
            "files",
            "tera.templates/report.txt.tera",
            "--hash-pieces",
        ],
        &[("NO_COLOR", "1")],
    );
    assert!(
        out.status.success(),
        "show files --hash-pieces failed: {}",
        String::from_utf8_lossy(&out.stderr)
    );
    let stdout = String::from_utf8_lossy(&out.stdout);

    assert!(
        stdout.contains("hash pieces:"),
        "expected 'hash pieces:' header in output: {}",
        stdout
    );
    assert!(
        stdout.contains("glob") && stdout.contains("data/*.md"),
        "expected glob pattern in hash pieces: {}",
        stdout
    );
    assert!(
        stdout.contains("data/a.md") && stdout.contains("data/b.md"),
        "expected resolved file list in hash pieces: {}",
        stdout
    );
}

/// Same as the text test but verifies the JSON shape: `hash_pieces` is a
/// list of `kind:body` strings, recomputed live (so the field is present
/// only when --hash-pieces is passed).
#[test]
fn show_files_hash_pieces_json_shape() {
    let project = setup_glob_project("Total: {{ glob(pattern=\"data/*.md\") | length }}\n");
    let p = project.path();
    fs::create_dir_all(p.join("data")).unwrap();
    fs::write(p.join("data/a.md"), "a").unwrap();

    let build = run_rsconstruct_with_env(p, &["build"], &[("NO_COLOR", "1")]);
    assert!(build.status.success());

    let out = run_rsconstruct_with_env(
        p,
        &[
            "--json",
            "analyzers",
            "show",
            "files",
            "tera.templates/report.txt.tera",
            "--hash-pieces",
        ],
        &[("NO_COLOR", "1")],
    );
    assert!(
        out.status.success(),
        "json show files --hash-pieces failed: {}",
        String::from_utf8_lossy(&out.stderr)
    );
    let stdout = String::from_utf8_lossy(&out.stdout);

    let parsed: serde_json::Value = serde_json::from_str(&stdout)
        .unwrap_or_else(|e| panic!("invalid JSON: {}\n---\n{}", e, stdout));
    let arr = parsed.as_array().expect("top-level JSON must be an array");
    assert_eq!(arr.len(), 1, "expected one entry, got: {}", stdout);
    let entry = &arr[0];
    let pieces = entry
        .get("hash_pieces")
        .and_then(|v| v.as_array())
        .unwrap_or_else(|| panic!("hash_pieces field missing or not array: {}", stdout));
    let joined = pieces
        .iter()
        .filter_map(|v| v.as_str())
        .collect::<Vec<_>>()
        .join("\n");
    assert!(
        joined.contains("glob:data/*.md"),
        "expected 'glob:data/*.md' piece, got: {}",
        joined
    );
    assert!(
        joined.contains("data/a.md"),
        "expected resolved file list to mention data/a.md, got: {}",
        joined
    );
}

/// When `--hash-pieces` is omitted, the JSON shape must NOT include the
/// `hash_pieces` field — keeps the existing JSON contract stable for any
/// caller that doesn't opt in.
#[test]
fn show_files_without_hash_pieces_omits_field() {
    let project = setup_glob_project("Total: {{ glob(pattern=\"data/*.md\") | length }}\n");
    let p = project.path();
    fs::create_dir_all(p.join("data")).unwrap();
    fs::write(p.join("data/a.md"), "a").unwrap();

    let build = run_rsconstruct_with_env(p, &["build"], &[("NO_COLOR", "1")]);
    assert!(build.status.success());

    let out = run_rsconstruct_with_env(
        p,
        &[
            "--json",
            "analyzers",
            "show",
            "files",
            "tera.templates/report.txt.tera",
        ],
        &[("NO_COLOR", "1")],
    );
    assert!(out.status.success());
    let stdout = String::from_utf8_lossy(&out.stdout);
    let parsed: serde_json::Value = serde_json::from_str(&stdout)
        .unwrap_or_else(|e| panic!("invalid JSON: {}\n---\n{}", e, stdout));
    let entry = &parsed.as_array().expect("array")[0];
    assert!(
        entry.get("hash_pieces").is_none(),
        "hash_pieces field must be absent when flag is omitted: {}",
        stdout
    );
}

#[test]
fn copyright_years_falls_back_when_no_commits() {
    // A fresh repo (or a non-git directory) must not crash copyright_years().
    // We expect the function to fall back to "{current_year}".
    let project = setup_glob_project("© {{ copyright_years() }}\n");
    let p = project.path();

    let output = run_rsconstruct_with_env(p, &["build"], &[("NO_COLOR", "1")]);
    assert!(
        output.status.success(),
        "build failed: {}\n{}",
        String::from_utf8_lossy(&output.stdout),
        String::from_utf8_lossy(&output.stderr),
    );

    let report = fs::read_to_string(p.join("report.txt")).unwrap();
    let current_year = chrono::Local::now().format("%Y").to_string();
    assert_eq!(
        report.trim(),
        format!("© {}", current_year),
        "Got: {}",
        report
    );
}

#[test]
fn copyright_years_uses_first_commit_year() {
    // With a real git repo and a commit, copyright_years() should produce a
    // range from the first commit's year to the current year.
    let project = setup_glob_project("© {{ copyright_years() }}\n");
    let p = project.path();
    git_init_and_commit(p);

    let output = run_rsconstruct_with_env(p, &["build"], &[("NO_COLOR", "1")]);
    assert!(
        output.status.success(),
        "build failed: {}\n{}",
        String::from_utf8_lossy(&output.stdout),
        String::from_utf8_lossy(&output.stderr),
    );

    let report = fs::read_to_string(p.join("report.txt")).unwrap();
    let current_year: i32 = chrono::Local::now()
        .format("%Y")
        .to_string()
        .parse()
        .unwrap();
    // Whatever the commit year was, the output must end with the current year
    // and contain it.
    assert!(
        report.trim().ends_with(&current_year.to_string()),
        "Got: {}",
        report
    );
}

#[test]
fn analyzer_tracks_load_python_without_dep_inputs() {
    let temp_dir = setup_test_project();
    let project_path = temp_dir.path();

    // Analyzers run only when declared, and the whole point of these tests is
    // the analyzer's own dependency discovery — no dep_inputs anywhere.
    fs::write(
        project_path.join("rsconstruct.toml"),
        "[analyzer.tera]\n\n[processor.tera]\nsrc_dirs = [\"tera.templates\"]\n",
    )
    .unwrap();

    fs::write(project_path.join("config/tracked.py"), "name = 'Original'").unwrap();

    // No dep_inputs anywhere: the analyzer alone must discover that the
    // template reads config/tracked.py through load_python(path="...").
    fs::write(
        project_path.join("tera.templates/tracked.txt.tera"),
        "{% set c = load_python(path='config/tracked.py') %}Name: {{ c.name }}",
    )
    .unwrap();

    let output1 = run_rsconstruct_with_env(project_path, &["build", "-v"], &[("NO_COLOR", "1")]);
    assert!(
        output1.status.success(),
        "First build failed: stdout={}, stderr={}",
        String::from_utf8_lossy(&output1.stdout),
        String::from_utf8_lossy(&output1.stderr)
    );

    // Wait so mtime differs
    std::thread::sleep(std::time::Duration::from_millis(100));

    fs::write(project_path.join("config/tracked.py"), "name = 'Modified'").unwrap();

    let output2 = run_rsconstruct_with_env(project_path, &["build", "-v"], &[("NO_COLOR", "1")]);
    assert!(output2.status.success());
    let content = fs::read_to_string(project_path.join("tracked.txt")).unwrap();
    assert!(
        content.contains("Modified"),
        "Editing a load_python config must rebuild the product: {}",
        content
    );
}

#[test]
fn analyzer_tracks_version_str_default_path() {
    let temp_dir = setup_test_project();
    let project_path = temp_dir.path();

    // Analyzers run only when declared, and the whole point of these tests is
    // the analyzer's own dependency discovery — no dep_inputs anywhere.
    fs::write(
        project_path.join("rsconstruct.toml"),
        "[analyzer.tera]\n\n[processor.tera]\nsrc_dirs = [\"tera.templates\"]\n",
    )
    .unwrap();

    // version_str() with no arguments reads config/version.py; the analyzer
    // must track that default even though no path appears in the template.
    fs::write(project_path.join("config/version.py"), "tup = (1, 2, 3)").unwrap();

    fs::write(
        project_path.join("tera.templates/version.txt.tera"),
        "version: {{ version_str() }}",
    )
    .unwrap();

    let output1 = run_rsconstruct_with_env(project_path, &["build", "-v"], &[("NO_COLOR", "1")]);
    assert!(
        output1.status.success(),
        "First build failed: stdout={}, stderr={}",
        String::from_utf8_lossy(&output1.stdout),
        String::from_utf8_lossy(&output1.stderr)
    );
    let content = fs::read_to_string(project_path.join("version.txt")).unwrap();
    assert!(content.contains("1.2.3"), "Got: {}", content);

    // Wait so mtime differs
    std::thread::sleep(std::time::Duration::from_millis(100));

    fs::write(project_path.join("config/version.py"), "tup = (1, 2, 4)").unwrap();

    let output2 = run_rsconstruct_with_env(project_path, &["build", "-v"], &[("NO_COLOR", "1")]);
    assert!(output2.status.success());
    let content = fs::read_to_string(project_path.join("version.txt")).unwrap();
    assert!(
        content.contains("1.2.4"),
        "Bumping config/version.py must rebuild a version_str() product: {}",
        content
    );
}

#[test]
fn analyzer_tracks_version_str_explicit_lua_path() {
    let temp_dir = setup_test_project();
    let project_path = temp_dir.path();

    // Analyzers run only when declared, and the whole point of these tests is
    // the analyzer's own dependency discovery — no dep_inputs anywhere.
    fs::write(
        project_path.join("rsconstruct.toml"),
        "[analyzer.tera]\n\n[processor.tera]\nsrc_dirs = [\"tera.templates\"]\n",
    )
    .unwrap();

    fs::write(project_path.join("config/version.lua"), "tup = { 2, 0, 0 }").unwrap();

    fs::write(
        project_path.join("tera.templates/vlua.txt.tera"),
        r#"version: {{ version_str(path="config/version.lua") }}"#,
    )
    .unwrap();

    let output1 = run_rsconstruct_with_env(project_path, &["build", "-v"], &[("NO_COLOR", "1")]);
    assert!(
        output1.status.success(),
        "First build failed: stdout={}, stderr={}",
        String::from_utf8_lossy(&output1.stdout),
        String::from_utf8_lossy(&output1.stderr)
    );
    let content = fs::read_to_string(project_path.join("vlua.txt")).unwrap();
    assert!(content.contains("2.0.0"), "Got: {}", content);

    // Wait so mtime differs
    std::thread::sleep(std::time::Duration::from_millis(100));

    fs::write(project_path.join("config/version.lua"), "tup = { 2, 0, 1 }").unwrap();

    let output2 = run_rsconstruct_with_env(project_path, &["build", "-v"], &[("NO_COLOR", "1")]);
    assert!(output2.status.success());
    let content = fs::read_to_string(project_path.join("vlua.txt")).unwrap();
    assert!(
        content.contains("2.0.1"),
        "Bumping the version_str(path=...) file must rebuild the product: {}",
        content
    );
}

#[test]
fn load_toml_and_toml_get_read_values() {
    let temp_dir = setup_test_project();
    let project_path = temp_dir.path();

    fs::write(
        project_path.join("data.toml"),
        "[project]\nname = \"demo\"\nversion = \"0.0.24\"\n\n[tool.ruff]\nline-length = 130\n",
    )
    .unwrap();

    fs::write(
        project_path.join("tera.templates/toml_out.txt.tera"),
        concat!(
            "get: {{ toml_get(path=\"data.toml\", key=\"project.version\") }}\n",
            "nested: {{ toml_get(path=\"data.toml\", key=\"tool.ruff.line-length\") }}\n",
            "load: {% set cfg = load_toml(path=\"data.toml\") %}{{ cfg.project.name }}\n",
        ),
    )
    .unwrap();

    let output = run_rsconstruct_with_env(project_path, &["build"], &[("NO_COLOR", "1")]);
    assert!(
        output.status.success(),
        "build failed: {}",
        String::from_utf8_lossy(&output.stderr)
    );

    let content = fs::read_to_string(project_path.join("toml_out.txt")).unwrap();
    assert!(content.contains("get: 0.0.24"), "Got: {}", content);
    // Integers must survive as integers, not render as "130.0" or a quoted string.
    assert!(content.contains("nested: 130"), "Got: {}", content);
    assert!(content.contains("load: demo"), "Got: {}", content);
}

#[test]
fn analyzer_tracks_toml_get_path() {
    let temp_dir = setup_test_project();
    let project_path = temp_dir.path();

    // Analyzers run only when declared, and the whole point of this test is
    // the analyzer's own dependency discovery — no dep_inputs anywhere.
    fs::write(
        project_path.join("rsconstruct.toml"),
        "[analyzer.tera]\n\n[processor.tera]\nsrc_dirs = [\"tera.templates\"]\n",
    )
    .unwrap();

    fs::write(
        project_path.join("pyproject.toml"),
        "[project]\nversion = \"2.0.0\"\n",
    )
    .unwrap();
    fs::write(
        project_path.join("tera.templates/vtoml.txt.tera"),
        "version: {{ toml_get(path=\"pyproject.toml\", key=\"project.version\") }}\n",
    )
    .unwrap();

    let output1 = run_rsconstruct_with_env(project_path, &["build", "-v"], &[("NO_COLOR", "1")]);
    assert!(
        output1.status.success(),
        "First build failed: stdout={}, stderr={}",
        String::from_utf8_lossy(&output1.stdout),
        String::from_utf8_lossy(&output1.stderr)
    );
    let content = fs::read_to_string(project_path.join("vtoml.txt")).unwrap();
    assert!(content.contains("2.0.0"), "Got: {}", content);

    // Wait so mtime differs
    std::thread::sleep(std::time::Duration::from_millis(100));

    fs::write(
        project_path.join("pyproject.toml"),
        "[project]\nversion = \"2.0.1\"\n",
    )
    .unwrap();

    let output2 = run_rsconstruct_with_env(project_path, &["build", "-v"], &[("NO_COLOR", "1")]);
    assert!(output2.status.success());
    let content = fs::read_to_string(project_path.join("vtoml.txt")).unwrap();
    assert!(
        content.contains("2.0.1"),
        "Bumping the toml_get(path=...) file must rebuild the product: {}",
        content
    );
}

#[test]
fn toml_get_missing_key_is_an_error() {
    let temp_dir = setup_test_project();
    let project_path = temp_dir.path();

    fs::write(
        project_path.join("data.toml"),
        "[project]\nversion = \"1.0\"\n",
    )
    .unwrap();
    fs::write(
        project_path.join("tera.templates/bad.txt.tera"),
        "{{ toml_get(path=\"data.toml\", key=\"project.nope\") }}\n",
    )
    .unwrap();

    let output = run_rsconstruct_with_env(project_path, &["build"], &[("NO_COLOR", "1")]);
    assert!(
        !output.status.success(),
        "A missing key must fail the build, not render empty"
    );
    let combined = format!(
        "{}{}",
        String::from_utf8_lossy(&output.stdout),
        String::from_utf8_lossy(&output.stderr)
    );
    assert!(
        combined.contains("no key 'project.nope'"),
        "Got: {}",
        combined
    );
}

#[test]
fn toml_get_on_a_table_is_an_error() {
    let temp_dir = setup_test_project();
    let project_path = temp_dir.path();

    fs::write(
        project_path.join("data.toml"),
        "[project]\nversion = \"1.0\"\n",
    )
    .unwrap();
    fs::write(
        project_path.join("tera.templates/bad2.txt.tera"),
        "{{ toml_get(path=\"data.toml\", key=\"project\") }}\n",
    )
    .unwrap();

    let output = run_rsconstruct_with_env(project_path, &["build"], &[("NO_COLOR", "1")]);
    assert!(
        !output.status.success(),
        "Interpolating a whole table must fail rather than emit JSON"
    );
    let combined = format!(
        "{}{}",
        String::from_utf8_lossy(&output.stdout),
        String::from_utf8_lossy(&output.stderr)
    );
    assert!(combined.contains("not a scalar"), "Got: {}", combined);
}