sqry-lang-puppet 21.0.1

Puppet language plugin for sqry
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
// Nested conditionals kept for readability in Puppet AST traversal

//! Puppet `GraphBuilder` implementation for `CodeGraph` integration.
//!
//! Extracts class dependency edges from Puppet manifests:
//! - `include myclass` → Class include relationship
//! - `require myclass` → Class require relationship (stronger than include)
//! - `class myclass inherits parent` → Class inheritance
//!
//! NOTE: `contain` statements are not supported by the tree-sitter-puppet grammar
//! (they are parsed as bare identifiers, not as a statement type).

use std::collections::HashMap;
use std::path::Path;

use sqry_core::graph::unified::edge::kind::TypeOfContext;
use sqry_core::graph::{
    GraphBuilder, GraphResult, Language, Span,
    unified::{GraphBuildHelper, NodeId as UnifiedNodeId, StagingGraph},
};
use tree_sitter::{Node, Tree};

/// `GraphBuilder` for Puppet manifests
#[derive(Debug, Default)]
pub struct PuppetGraphBuilder;

impl PuppetGraphBuilder {
    /// Create a new Puppet graph builder
    #[must_use]
    pub fn new() -> Self {
        Self
    }
}

impl GraphBuilder for PuppetGraphBuilder {
    fn build_graph(
        &self,
        tree: &Tree,
        content: &[u8],
        file: &Path,
        staging: &mut StagingGraph,
    ) -> GraphResult<()> {
        // Create helper for staging graph population
        let mut helper = GraphBuildHelper::new(staging, file, Language::Puppet);

        // Create module node for this Puppet file
        let module_id = helper.add_module("<module>", None);

        // First pass: collect class and defined type definitions and create export edges
        let mut class_ids = std::collections::HashMap::new();
        collect_class_definitions(
            tree.root_node(),
            content,
            module_id,
            &mut helper,
            &mut class_ids,
        )?;

        // Second pass: walk AST to find include/require/contain/inherits statements
        walk_ast_with_helper(
            tree.root_node(),
            content,
            module_id,
            &mut helper,
            &class_ids,
        )?;

        Ok(())
    }

    fn language(&self) -> Language {
        Language::Puppet
    }
}

/// First pass: collect all class and defined type definitions, create nodes and export edges
fn collect_class_definitions(
    node: Node<'_>,
    content: &[u8],
    module_id: UnifiedNodeId,
    helper: &mut GraphBuildHelper,
    class_ids: &mut HashMap<String, UnifiedNodeId>,
) -> GraphResult<()> {
    match node.kind() {
        "class_definition" | "defined_resource_type" => {
            // Extract class/defined type name
            let mut cursor = node.walk();
            for child in node.children(&mut cursor) {
                if (child.kind() == "identifier" || child.kind() == "class_identifier")
                    && let Ok(name) = child.utf8_text(content)
                {
                    let class_name = name.to_string();
                    let span = Some(span_from_node(node));

                    // Create class node
                    let class_id = helper.add_class(&class_name, span);
                    class_ids.insert(class_name.clone(), class_id);

                    // Export this class from the module
                    helper.add_export_edge(module_id, class_id);

                    // Extract TypeOf edges from typed parameters
                    extract_parameter_types(node, content, class_id, &class_name, helper);
                    break;
                }
            }
        }
        _ => {}
    }

    // Recurse into children
    let mut cursor = node.walk();
    for child in node.children(&mut cursor) {
        collect_class_definitions(child, content, module_id, helper, class_ids)?;
    }

    Ok(())
}

/// Check if a tree-sitter node kind represents a Puppet type annotation
fn is_puppet_type_kind(kind: &str) -> bool {
    matches!(
        kind,
        "builtin_type"
            | "array_type"
            | "composite_type"
            | "attribute_type"
            | "class_identifier"
            | "identifier"
    )
}

/// Extract `TypeOf` edges from typed parameters in class/define definitions.
///
/// Puppet parameters can optionally have type annotations:
/// - `String $pkg = 'nginx'` → `TypeOf(myapp::pkg, String)`
/// - `Array[String] $pkgs` → `TypeOf(myapp::pkgs, Array[String])`
/// - `$untyped = 'x'` → no `TypeOf` edge (no type annotation)
///
/// Variable nodes are scope-qualified as `<class_name>::<param_name>` to prevent
/// collisions when different classes share the same parameter name.
fn extract_parameter_types(
    node: Node<'_>,
    content: &[u8],
    class_id: UnifiedNodeId,
    class_name: &str,
    helper: &mut GraphBuildHelper,
) {
    // Find the parameter_list child of the class/define node
    let mut cursor = node.walk();
    for child in node.children(&mut cursor) {
        if child.kind() == "parameter_list" {
            let mut param_cursor = child.walk();
            for param in child.children(&mut param_cursor) {
                if param.kind() == "parameter" {
                    extract_single_param_type(param, content, class_id, class_name, helper);
                }
            }
        }
    }
}

/// Extract `TypeOf` edge from a single Puppet parameter node.
///
/// AST structure for typed parameter: `String $pkg = 'nginx'`
///   parameter
///     `builtin_type`  → "String"      (type annotation)
///     variable        → "$pkg"        (parameter name)
///     =
///     string          → "'nginx'"     (default value)
///
/// For untyped parameter: `$untyped = 'x'`
///   parameter
///     variable      → "$untyped"    (no type annotation)
///     =
///     string        → "'x'"
///
/// Variable nodes are scope-qualified as `<class_name>::<param_name>` to prevent
/// collisions when different classes share the same parameter name.
fn extract_single_param_type(
    param: Node<'_>,
    content: &[u8],
    class_id: UnifiedNodeId,
    class_name: &str,
    helper: &mut GraphBuildHelper,
) {
    let mut type_text = None;
    let mut var_name = None;

    let mut cursor = param.walk();
    for child in param.children(&mut cursor) {
        if type_text.is_none() && is_puppet_type_kind(child.kind()) && child.kind() != "identifier"
        {
            // Type annotation node (builtin_type, array_type, etc.)
            type_text = child.utf8_text(content).ok().map(ToString::to_string);
        } else if child.kind() == "identifier" && type_text.is_none() && var_name.is_none() {
            // An identifier before a variable could be a type name (e.g., custom class type)
            // But only if the next sibling is a variable node
            let maybe_type = child.utf8_text(content).ok().map(ToString::to_string);
            // Look ahead to see if a variable follows
            if let Some(next) = child.next_named_sibling()
                && next.kind() == "variable"
            {
                type_text = maybe_type;
            }
        } else if child.kind() == "variable" {
            // Extract variable name, stripping the $ prefix
            if let Ok(text) = child.utf8_text(content) {
                var_name = Some(text.trim_start_matches('$').to_string());
            }
        }
    }

    // Only create TypeOf edge if we have both type and variable name
    if let (Some(type_str), Some(name)) = (type_text, var_name) {
        // Scope-qualify: <class_name>::<param_name> (e.g., "myapp::pkg")
        let qualified_name = format!("{class_name}::{name}");
        let param_id = helper.add_variable(&qualified_name, Some(span_from_node(param)));
        let type_id = helper.add_type(&type_str, None);
        helper.add_typeof_edge_with_context(
            param_id,
            type_id,
            Some(TypeOfContext::Parameter),
            None,
            Some(&qualified_name),
        );
        helper.add_reference_edge(param_id, type_id);
        helper.add_contains_edge(class_id, param_id);
    }
}

/// Walk AST to find class relationships using `GraphBuildHelper`
fn walk_ast_with_helper(
    node: Node<'_>,
    content: &[u8],
    module_id: UnifiedNodeId,
    helper: &mut GraphBuildHelper,
    class_ids: &HashMap<String, UnifiedNodeId>,
) -> GraphResult<()> {
    // Check for relationship statements and call patterns
    // NOTE: contain_statement is NOT supported by tree-sitter-puppet grammar
    match node.kind() {
        "include_statement" => {
            extract_include_edge_with_helper(node, content, module_id, helper, "include");
        }
        "require_statement" => {
            extract_include_edge_with_helper(node, content, module_id, helper, "require");
        }
        "class_definition" => {
            // Check for inheritance
            extract_inheritance_edge_with_helper(node, content, helper, class_ids);
        }
        "resource_declaration" => {
            // Resource declarations like `file { '/path': }`, `package { 'nginx': }`
            extract_resource_call_with_helper(node, content, module_id, helper);
        }
        "function_call" => {
            // Function calls like `template('path')`, `lookup('key')`
            extract_function_call_with_helper(node, content, module_id, helper);
        }
        _ => {}
    }

    // Recurse into children
    let mut cursor = node.walk();
    for child in node.children(&mut cursor) {
        walk_ast_with_helper(child, content, module_id, helper, class_ids)?;
    }

    Ok(())
}

/// Extract edge from include/require/contain statement using `GraphBuildHelper`
///
/// The `relation_type` parameter distinguishes between:
/// - "include": brings class into catalog (ordering independent)
/// - "require": brings class into catalog with ordering dependency
/// - "contain": (future) for containment relationships if grammar support is added
///
/// Currently all relation types produce the same Import edge, but the parameter
/// is preserved for future semantic differentiation (e.g., edge metadata or
/// different edge kinds for ordering-sensitive relationships).
fn extract_include_edge_with_helper(
    node: Node<'_>,
    content: &[u8],
    module_id: UnifiedNodeId,
    helper: &mut GraphBuildHelper,
    _relation_type: &str,
) {
    let mut cursor = node.walk();

    for child in node.children(&mut cursor) {
        // Look for the class identifier
        if (child.kind() == "identifier" || child.kind() == "class_identifier")
            && let Ok(class_name) = child.utf8_text(content)
        {
            // Convert class name to file path pattern
            let class_path = class_name.replace("::", "/");
            let qualified_name = format!("manifests/{class_path}.pp::{class_name}");

            // Add class node
            let target_id = helper.add_class(&qualified_name, Some(span_from_node(node)));

            // Add import edge
            helper.add_import_edge(module_id, target_id);

            return;
        }

        // Also check for string arguments (include 'classname')
        if child.kind() == "string"
            && let Ok(text) = child.utf8_text(content)
        {
            let class_name = text.trim_matches('\'').trim_matches('"');
            if !class_name.is_empty() {
                // Convert class name to file path pattern
                let class_path = class_name.replace("::", "/");
                let qualified_name = format!("manifests/{class_path}.pp::{class_name}");

                // Add class node
                let target_id = helper.add_class(&qualified_name, Some(span_from_node(node)));

                // Add import edge
                helper.add_import_edge(module_id, target_id);

                return;
            }
        }
    }
}

/// Extract inheritance edge from class definition using `GraphBuildHelper`
fn extract_inheritance_edge_with_helper(
    node: Node<'_>,
    content: &[u8],
    helper: &mut GraphBuildHelper,
    class_ids: &HashMap<String, UnifiedNodeId>,
) {
    let mut cursor = node.walk();
    let mut class_name = None;
    let mut parent_name = None;

    for child in node.children(&mut cursor) {
        match child.kind() {
            // The class name is a direct identifier child of class_definition
            "identifier" | "class_identifier" => {
                if class_name.is_none()
                    && let Ok(text) = child.utf8_text(content)
                {
                    class_name = Some(text.to_string());
                }
            }
            // class_inherits contains: inherits keyword + identifier for parent
            "class_inherits" => {
                let mut inherits_cursor = child.walk();
                for inherits_child in child.children(&mut inherits_cursor) {
                    if (inherits_child.kind() == "identifier"
                        || inherits_child.kind() == "class_identifier")
                        && let Ok(text) = inherits_child.utf8_text(content)
                    {
                        parent_name = Some(text.to_string());
                    }
                }
            }
            _ => {}
        }
    }

    // If we found inheritance, create edge
    if let (Some(class_name), Some(parent)) = (class_name, parent_name) {
        // Use existing class node from first pass
        let class_id = if let Some(&id) = class_ids.get(&class_name) {
            id
        } else {
            // Fallback: create class node if not found (shouldn't happen)
            helper.add_class(&class_name, Some(span_from_node(node)))
        };

        // Add parent class node
        let parent_path = parent.replace("::", "/");
        let parent_qualified = format!("manifests/{parent_path}.pp::{parent}");
        let parent_id = helper.add_class(&parent_qualified, None);

        // Add inheritance edge
        helper.add_inherits_edge(class_id, parent_id);
    }
}

/// Extract call edge from resource declaration using `GraphBuildHelper`
///
/// Resource declarations in Puppet are like function calls that instantiate resources:
/// - `file { '/tmp/test': ensure => present }` → Calls edge to `file` resource type
/// - `package { 'nginx': ensure => installed }` → Calls edge to `package` resource type
fn extract_resource_call_with_helper(
    node: Node<'_>,
    content: &[u8],
    module_id: UnifiedNodeId,
    helper: &mut GraphBuildHelper,
) {
    let mut cursor = node.walk();

    // First child is the resource type (identifier)
    for child in node.children(&mut cursor) {
        if child.kind() == "identifier"
            && let Ok(resource_type) = child.utf8_text(content)
        {
            // Create a function node for the resource type
            let callee_id =
                helper.add_function(&format!("resource::{resource_type}"), None, false, false);

            // Add call edge from module to resource type
            helper.add_call_edge_full_with_span(
                module_id,
                callee_id,
                255,
                false,
                vec![span_from_node(node)],
            );

            return;
        }
    }
}

/// Extract call edge from function call using `GraphBuildHelper`
///
/// Function calls in Puppet like:
/// - `template('mymodule/template.erb')` → Calls edge to `template`
/// - `lookup('mykey')` → Calls edge to `lookup`
/// - `hiera('config::option')` → Calls edge to `hiera`
fn extract_function_call_with_helper(
    node: Node<'_>,
    content: &[u8],
    module_id: UnifiedNodeId,
    helper: &mut GraphBuildHelper,
) {
    let mut cursor = node.walk();

    // First child is the function name (identifier)
    for child in node.children(&mut cursor) {
        if child.kind() == "identifier"
            && let Ok(function_name) = child.utf8_text(content)
        {
            // Create a function node for the function
            let callee_id = helper.add_function(function_name, None, false, false);

            // Add call edge from module to function
            helper.add_call_edge_full_with_span(
                module_id,
                callee_id,
                255,
                false,
                vec![span_from_node(node)],
            );

            return;
        }
    }
}

/// Create span from tree-sitter node
fn span_from_node(node: Node<'_>) -> Span {
    Span::from_bytes(node.start_byte(), node.end_byte())
}

#[cfg(test)]
mod tests {
    use super::*;
    use sqry_core::graph::unified::build::test_helpers::*;
    use sqry_core::graph::unified::node::NodeKind;
    use std::path::PathBuf;

    fn parse_puppet(source: &str) -> Tree {
        let mut parser = tree_sitter::Parser::new();
        parser
            .set_language(&tree_sitter_puppet::LANGUAGE.into())
            .unwrap();
        parser.parse(source.as_bytes(), None).unwrap()
    }

    #[test]
    fn test_extracts_include() {
        let source = r"
class myclass {
  include other_class
}
";

        let tree = parse_puppet(source);
        let mut staging = StagingGraph::new();
        let builder = PuppetGraphBuilder;
        let file = PathBuf::from("manifests/myclass.pp");

        builder
            .build_graph(&tree, source.as_bytes(), &file, &mut staging)
            .unwrap();

        let import_edges = collect_import_edges(&staging);
        assert_eq!(import_edges.len(), 1, "Should extract one include edge");

        // Verify the class definition was created
        assert_has_node_with_kind(&staging, "myclass", NodeKind::Class);

        // Verify the included class node was created
        assert_has_node(&staging, "other_class");
    }

    #[test]
    fn test_extracts_require() {
        let source = r"
class myclass {
  require base_class
}
";

        let tree = parse_puppet(source);
        let mut staging = StagingGraph::new();
        let builder = PuppetGraphBuilder;
        let file = PathBuf::from("manifests/myclass.pp");

        builder
            .build_graph(&tree, source.as_bytes(), &file, &mut staging)
            .unwrap();

        let import_edges = collect_import_edges(&staging);
        assert_eq!(import_edges.len(), 1, "Should extract one require edge");

        // Verify the class definition was created
        assert_has_node_with_kind(&staging, "myclass", NodeKind::Class);

        // Verify the required class node was created
        assert_has_node(&staging, "base_class");
    }

    #[test]
    fn test_extracts_string_class_name() {
        let source = r"
include 'mymodule::myclass'
";

        let tree = parse_puppet(source);
        let mut staging = StagingGraph::new();
        let builder = PuppetGraphBuilder;
        let file = PathBuf::from("manifests/site.pp");

        builder
            .build_graph(&tree, source.as_bytes(), &file, &mut staging)
            .unwrap();

        let import_edges = collect_import_edges(&staging);
        assert!(
            !import_edges.is_empty(),
            "Should extract include edge with string"
        );

        // Verify the included class node was created
        assert_has_node(&staging, "mymodule::myclass");
    }

    #[test]
    fn test_multiple_includes() {
        let source = r"
class myclass {
  include base
  include networking
  require security
}
";

        let tree = parse_puppet(source);
        let mut staging = StagingGraph::new();
        let builder = PuppetGraphBuilder;
        let file = PathBuf::from("manifests/myclass.pp");

        builder
            .build_graph(&tree, source.as_bytes(), &file, &mut staging)
            .unwrap();

        let import_edges = collect_import_edges(&staging);
        assert_eq!(import_edges.len(), 3, "Should extract 3 import edges");

        // Verify the class definition was created
        assert_has_node_with_kind(&staging, "myclass", NodeKind::Class);

        // Verify all included/required classes were created
        assert_has_node(&staging, "base");
        assert_has_node(&staging, "networking");
        assert_has_node(&staging, "security");
    }

    #[test]
    fn test_qualified_class_name() {
        let source = r"
include mymodule::submodule::myclass
";

        let tree = parse_puppet(source);
        let mut staging = StagingGraph::new();
        let builder = PuppetGraphBuilder;
        let file = PathBuf::from("manifests/site.pp");

        builder
            .build_graph(&tree, source.as_bytes(), &file, &mut staging)
            .unwrap();

        let import_edges = collect_import_edges(&staging);
        assert_eq!(import_edges.len(), 1, "Should extract one import edge");

        // Verify the qualified class name was captured
        assert_has_node(&staging, "mymodule");
    }

    #[test]
    fn test_contain_not_supported_by_grammar() {
        // NOTE: tree-sitter-puppet grammar does not have contain_statement node type.
        // `contain contained_class` is parsed as bare identifiers, not as a statement.
        // This test documents the grammar limitation.
        let source = r"
class myclass {
  contain contained_class
}
";

        let tree = parse_puppet(source);
        let mut staging = StagingGraph::new();
        let builder = PuppetGraphBuilder;
        let file = PathBuf::from("manifests/myclass.pp");

        builder
            .build_graph(&tree, source.as_bytes(), &file, &mut staging)
            .unwrap();

        let import_edges = collect_import_edges(&staging);
        // Grammar doesn't recognize contain as a statement type, so no edges should be created
        // Only the class definition and module should exist
        assert_eq!(import_edges.len(), 0, "Contain not supported by grammar");

        // Verify the class definition was still created
        assert_has_node_with_kind(&staging, "myclass", NodeKind::Class);
    }

    #[test]
    fn test_extracts_class_inheritance() {
        let source = r"
class myclass inherits parent_class {
  # class body
}
";

        let tree = parse_puppet(source);
        let mut staging = StagingGraph::new();
        let builder = PuppetGraphBuilder;
        let file = PathBuf::from("manifests/myclass.pp");

        builder
            .build_graph(&tree, source.as_bytes(), &file, &mut staging)
            .unwrap();

        let inherits_edges = collect_inherits_edges(&staging);
        assert_eq!(inherits_edges.len(), 1, "Should extract one inherits edge");

        // Verify both class nodes were created
        assert_has_node_with_kind(&staging, "myclass", NodeKind::Class);
        assert_has_node(&staging, "parent_class");

        // Verify the inheritance edge exists (parent is qualified)
        assert_has_inherits_edge(
            &staging,
            "myclass",
            "manifests/parent_class.pp::parent_class",
        );
    }

    #[test]
    fn test_class_without_inheritance() {
        let source = r"
class myclass {
  # class body without inheritance
}
";

        let tree = parse_puppet(source);
        let mut staging = StagingGraph::new();
        let builder = PuppetGraphBuilder;
        let file = PathBuf::from("manifests/myclass.pp");

        builder
            .build_graph(&tree, source.as_bytes(), &file, &mut staging)
            .unwrap();

        let inherits_edges = collect_inherits_edges(&staging);
        assert_eq!(inherits_edges.len(), 0, "Should have no inherits edges");

        // Verify the class definition was created
        assert_has_node_with_kind(&staging, "myclass", NodeKind::Class);
    }

    #[test]
    fn test_empty_file() {
        let source = "";

        let tree = parse_puppet(source);
        let mut staging = StagingGraph::new();
        let builder = PuppetGraphBuilder;
        let file = PathBuf::from("manifests/empty.pp");

        builder
            .build_graph(&tree, source.as_bytes(), &file, &mut staging)
            .unwrap();

        // Should only have the module node for the file itself
        assert_eq!(
            count_nodes_by_kind(&staging, NodeKind::Module),
            1,
            "Empty file should have exactly one module node"
        );

        // No other nodes should exist
        assert_eq!(
            count_nodes_by_kind(&staging, NodeKind::Class),
            0,
            "Empty file should have no class nodes"
        );
    }

    #[test]
    fn test_mixed_statements() {
        // Note: contain is not supported by the grammar, so we only test include/require
        let source = r"
class myclass inherits base_class {
  include helper
  require dependency
}
";

        let tree = parse_puppet(source);
        let mut staging = StagingGraph::new();
        let builder = PuppetGraphBuilder;
        let file = PathBuf::from("manifests/myclass.pp");

        builder
            .build_graph(&tree, source.as_bytes(), &file, &mut staging)
            .unwrap();

        // Should have inheritance edge
        let inherits_edges = collect_inherits_edges(&staging);
        assert_eq!(inherits_edges.len(), 1, "Should have one inherits edge");

        // Should have import edges for include and require
        let import_edges = collect_import_edges(&staging);
        assert_eq!(
            import_edges.len(),
            2,
            "Should have two import edges (include + require)"
        );

        // Verify all nodes were created
        assert_has_node_with_kind(&staging, "myclass", NodeKind::Class);
        assert_has_node(&staging, "base_class");
        assert_has_node(&staging, "helper");
        assert_has_node(&staging, "dependency");

        // Verify the inheritance edge (parent is qualified)
        assert_has_inherits_edge(&staging, "myclass", "manifests/base_class.pp::base_class");
    }

    #[test]
    fn test_nested_class_include() {
        let source = r"
class outer {
  class { 'inner':
    # nested resource-style class
  }
  include nested_include
}
";

        let tree = parse_puppet(source);
        let mut staging = StagingGraph::new();
        let builder = PuppetGraphBuilder;
        let file = PathBuf::from("manifests/outer.pp");

        builder
            .build_graph(&tree, source.as_bytes(), &file, &mut staging)
            .unwrap();

        let import_edges = collect_import_edges(&staging);
        assert!(
            !import_edges.is_empty(),
            "Should extract include edge from nested class"
        );

        // Verify the outer class and included class nodes
        assert_has_node_with_kind(&staging, "outer", NodeKind::Class);
        assert_has_node(&staging, "nested_include");
    }
}

// Active tests for Unified Graph (Wave 8)
#[cfg(test)]
mod active_tests {
    use super::*;
    use sqry_core::graph::unified::build::StagingOp;
    use sqry_core::graph::unified::edge::EdgeKind as UnifiedEdgeKind;
    use std::path::PathBuf;

    fn parse_puppet(source: &str) -> Tree {
        let mut parser = tree_sitter::Parser::new();
        parser
            .set_language(&tree_sitter_puppet::LANGUAGE.into())
            .unwrap();
        parser.parse(source.as_bytes(), None).unwrap()
    }

    /// Helper to extract Import edges from staging operations
    fn extract_import_edges(staging: &StagingGraph) -> Vec<&UnifiedEdgeKind> {
        staging
            .operations()
            .iter()
            .filter_map(|op| {
                if let StagingOp::AddEdge { kind, .. } = op
                    && matches!(kind, UnifiedEdgeKind::Imports { .. })
                {
                    return Some(kind);
                }
                None
            })
            .collect()
    }

    /// Helper to extract Call edges from staging operations
    fn extract_call_edges(staging: &StagingGraph) -> Vec<&UnifiedEdgeKind> {
        staging
            .operations()
            .iter()
            .filter_map(|op| {
                if let StagingOp::AddEdge { kind, .. } = op
                    && matches!(kind, UnifiedEdgeKind::Calls { .. })
                {
                    return Some(kind);
                }
                None
            })
            .collect()
    }

    /// Helper to extract Inherits edges from staging operations
    fn extract_inherits_edges(staging: &StagingGraph) -> Vec<&UnifiedEdgeKind> {
        staging
            .operations()
            .iter()
            .filter_map(|op| {
                if let StagingOp::AddEdge { kind, .. } = op
                    && matches!(kind, UnifiedEdgeKind::Inherits)
                {
                    return Some(kind);
                }
                None
            })
            .collect()
    }

    #[test]
    fn test_puppet_graph_builder_language() {
        let builder = PuppetGraphBuilder;
        assert_eq!(builder.language(), Language::Puppet);
    }

    #[test]
    fn test_extracts_resource_declaration_calls() {
        let source = r"
class myapp {
  package { 'nginx':
    ensure => installed,
  }

  service { 'nginx':
    ensure => running,
  }

  file { '/etc/nginx/nginx.conf':
    ensure => present,
  }
}
";

        let tree = parse_puppet(source);
        let mut staging = StagingGraph::new();
        let builder = PuppetGraphBuilder;
        let file = PathBuf::from("manifests/myapp.pp");

        builder
            .build_graph(&tree, source.as_bytes(), &file, &mut staging)
            .expect("build_graph should succeed");

        let call_edges = extract_call_edges(&staging);
        assert_eq!(
            call_edges.len(),
            3,
            "Should extract three call edges for resource declarations (package, service, file)"
        );
    }

    #[test]
    fn test_extracts_function_calls() {
        let source = r#"
define myapp::config($port = 80) {
  file { "/etc/myapp/${name}.conf":
    content => template('myapp/config.erb'),
  }
}
"#;

        let tree = parse_puppet(source);
        let mut staging = StagingGraph::new();
        let builder = PuppetGraphBuilder;
        let file = PathBuf::from("manifests/myapp/config.pp");

        builder
            .build_graph(&tree, source.as_bytes(), &file, &mut staging)
            .expect("build_graph should succeed");

        let call_edges = extract_call_edges(&staging);
        // Should have at least: file resource + template function
        assert!(
            call_edges.len() >= 2,
            "Should extract call edges for file resource and template() function"
        );
    }

    #[test]
    fn test_extracts_include_import_edge() {
        let source = r"
class webserver {
  include myapp
}
";

        let tree = parse_puppet(source);
        let mut staging = StagingGraph::new();
        let builder = PuppetGraphBuilder;
        let file = PathBuf::from("manifests/webserver.pp");

        builder
            .build_graph(&tree, source.as_bytes(), &file, &mut staging)
            .expect("build_graph should succeed");

        let import_edges = extract_import_edges(&staging);
        assert_eq!(
            import_edges.len(),
            1,
            "Should extract one import edge for include statement"
        );
    }

    #[test]
    fn test_extracts_require_import_edge() {
        let source = r"
class webserver {
  require myapp::prereqs
}
";

        let tree = parse_puppet(source);
        let mut staging = StagingGraph::new();
        let builder = PuppetGraphBuilder;
        let file = PathBuf::from("manifests/webserver.pp");

        builder
            .build_graph(&tree, source.as_bytes(), &file, &mut staging)
            .expect("build_graph should succeed");

        let import_edges = extract_import_edges(&staging);
        assert_eq!(
            import_edges.len(),
            1,
            "Should extract one import edge for require statement"
        );
    }

    #[test]
    fn test_extracts_inheritance_edge() {
        let source = r"
class child inherits parent {
  # child class body
}
";

        let tree = parse_puppet(source);
        let mut staging = StagingGraph::new();
        let builder = PuppetGraphBuilder;
        let file = PathBuf::from("manifests/child.pp");

        builder
            .build_graph(&tree, source.as_bytes(), &file, &mut staging)
            .expect("build_graph should succeed");

        let inherits_edges = extract_inherits_edges(&staging);
        assert_eq!(
            inherits_edges.len(),
            1,
            "Should extract one inherits edge for class inheritance"
        );
    }

    #[test]
    fn test_empty_file_no_edges() {
        let source = "";

        let tree = parse_puppet(source);
        let mut staging = StagingGraph::new();
        let builder = PuppetGraphBuilder;
        let file = PathBuf::from("manifests/empty.pp");

        builder
            .build_graph(&tree, source.as_bytes(), &file, &mut staging)
            .expect("build_graph should succeed");

        let call_edges = extract_call_edges(&staging);
        assert!(
            call_edges.is_empty(),
            "Empty file should have no call edges"
        );

        let import_edges = extract_import_edges(&staging);
        assert!(
            import_edges.is_empty(),
            "Empty file should have no import edges"
        );
    }

    #[test]
    fn test_mixed_statements() {
        let source = r"
class myapp inherits base {
  include helper
  require prereqs

  package { 'app':
    ensure => installed,
  }

  $config = lookup('app::config')
}
";

        let tree = parse_puppet(source);
        let mut staging = StagingGraph::new();
        let builder = PuppetGraphBuilder;
        let file = PathBuf::from("manifests/myapp.pp");

        builder
            .build_graph(&tree, source.as_bytes(), &file, &mut staging)
            .expect("build_graph should succeed");

        // Should have import edges for include and require
        let import_edges = extract_import_edges(&staging);
        assert_eq!(
            import_edges.len(),
            2,
            "Should extract two import edges (include + require)"
        );

        // Should have inherits edge
        let inherits_edges = extract_inherits_edges(&staging);
        assert_eq!(inherits_edges.len(), 1, "Should have one inherits edge");

        // Should have call edges for package resource and lookup function
        let call_edges = extract_call_edges(&staging);
        assert!(
            call_edges.len() >= 2,
            "Should have at least 2 call edges (package resource + lookup function)"
        );
    }

    #[test]
    fn test_node_definition_with_resources() {
        let source = r"
node 'web01.example.com' {
  package { 'nginx':
    ensure => installed,
  }
}
";

        let tree = parse_puppet(source);
        let mut staging = StagingGraph::new();
        let builder = PuppetGraphBuilder;
        let file = PathBuf::from("manifests/nodes.pp");

        builder
            .build_graph(&tree, source.as_bytes(), &file, &mut staging)
            .expect("build_graph should succeed");

        let call_edges = extract_call_edges(&staging);
        assert_eq!(
            call_edges.len(),
            1,
            "Should extract one call edge for package resource"
        );
    }

    /// Helper to extract `TypeOf` edges from staging operations
    fn extract_typeof_edges(staging: &StagingGraph) -> Vec<&UnifiedEdgeKind> {
        staging
            .operations()
            .iter()
            .filter_map(|op| {
                if let StagingOp::AddEdge { kind, .. } = op
                    && matches!(kind, UnifiedEdgeKind::TypeOf { .. })
                {
                    return Some(kind);
                }
                None
            })
            .collect()
    }

    #[test]
    fn test_class_typed_params_create_typeof_edges() {
        let source = r"
class myapp (
  String $pkg,
  Integer $port = 80,
) {
  # class body
}
";

        let tree = parse_puppet(source);
        let mut staging = StagingGraph::new();
        let builder = PuppetGraphBuilder;
        let file = PathBuf::from("manifests/myapp.pp");

        builder
            .build_graph(&tree, source.as_bytes(), &file, &mut staging)
            .expect("build_graph should succeed");

        let typeof_edges = extract_typeof_edges(&staging);
        assert_eq!(
            typeof_edges.len(),
            2,
            "Class with 2 typed parameters should create 2 TypeOf edges"
        );
    }

    #[test]
    fn test_define_typed_params_create_typeof_edges() {
        let source = r"
define myapp::config (
  String $name,
  Boolean $ssl = false,
) {
  # define body
}
";

        let tree = parse_puppet(source);
        let mut staging = StagingGraph::new();
        let builder = PuppetGraphBuilder;
        let file = PathBuf::from("manifests/myapp/config.pp");

        builder
            .build_graph(&tree, source.as_bytes(), &file, &mut staging)
            .expect("build_graph should succeed");

        let typeof_edges = extract_typeof_edges(&staging);
        assert_eq!(
            typeof_edges.len(),
            2,
            "Define with 2 typed parameters should create 2 TypeOf edges"
        );
    }

    #[test]
    fn test_class_untyped_params_no_typeof_edges() {
        let source = r"
class myapp (
  $pkg = 'nginx',
  $port = 80,
) {
  # class body
}
";

        let tree = parse_puppet(source);
        let mut staging = StagingGraph::new();
        let builder = PuppetGraphBuilder;
        let file = PathBuf::from("manifests/myapp.pp");

        builder
            .build_graph(&tree, source.as_bytes(), &file, &mut staging)
            .expect("build_graph should succeed");

        let typeof_edges = extract_typeof_edges(&staging);
        assert!(
            typeof_edges.is_empty(),
            "Class with only untyped parameters should have no TypeOf edges"
        );
    }

    #[test]
    fn test_complex_puppet_types_create_typeof_edges() {
        let source = r"
class myapp (
  Array[String] $pkgs,
  Hash $config = {},
) {
  # class body
}
";

        let tree = parse_puppet(source);
        let mut staging = StagingGraph::new();
        let builder = PuppetGraphBuilder;
        let file = PathBuf::from("manifests/myapp.pp");

        builder
            .build_graph(&tree, source.as_bytes(), &file, &mut staging)
            .expect("build_graph should succeed");

        let typeof_edges = extract_typeof_edges(&staging);
        assert_eq!(
            typeof_edges.len(),
            2,
            "Class with 2 complex typed parameters should create 2 TypeOf edges"
        );
    }

    #[test]
    fn test_mixed_typed_untyped_params() {
        let source = r"
class myapp (
  String $name,
  $untyped_param,
  Integer $port = 80,
) {
  # class body
}
";

        let tree = parse_puppet(source);
        let mut staging = StagingGraph::new();
        let builder = PuppetGraphBuilder;
        let file = PathBuf::from("manifests/myapp.pp");

        builder
            .build_graph(&tree, source.as_bytes(), &file, &mut staging)
            .expect("build_graph should succeed");

        let typeof_edges = extract_typeof_edges(&staging);
        assert_eq!(
            typeof_edges.len(),
            2,
            "Class with 2 typed + 1 untyped should create 2 TypeOf edges"
        );
    }

    #[test]
    fn test_class_without_params_no_typeof_edges() {
        let source = r"
class myapp {
  package { 'nginx':
    ensure => installed,
  }
}
";

        let tree = parse_puppet(source);
        let mut staging = StagingGraph::new();
        let builder = PuppetGraphBuilder;
        let file = PathBuf::from("manifests/myapp.pp");

        builder
            .build_graph(&tree, source.as_bytes(), &file, &mut staging)
            .expect("build_graph should succeed");

        let typeof_edges = extract_typeof_edges(&staging);
        assert!(
            typeof_edges.is_empty(),
            "Class without parameters should have no TypeOf edges"
        );
    }

    #[test]
    #[allow(clippy::items_after_statements)] // Items near usage for clarity
    fn test_same_param_name_different_classes_distinct_nodes() {
        // Two classes with same parameter name should produce distinct Variable nodes
        // thanks to scope-qualified naming: foo::name vs bar::name
        let source = r"
class foo (
  String $name = 'a',
) { }

class bar (
  Integer $name = 1,
) { }
";

        let tree = parse_puppet(source);
        let mut staging = StagingGraph::new();
        let builder = PuppetGraphBuilder;
        let file = PathBuf::from("manifests/classes.pp");

        builder
            .build_graph(&tree, source.as_bytes(), &file, &mut staging)
            .expect("build_graph should succeed");

        let typeof_edges = extract_typeof_edges(&staging);
        assert_eq!(
            typeof_edges.len(),
            2,
            "Two classes with typed params should create 2 TypeOf edges"
        );

        // Verify distinct scope-qualified variable nodes
        use sqry_core::graph::unified::build::test_helpers::assert_has_node_with_kind;
        use sqry_core::graph::unified::node::NodeKind;
        assert_has_node_with_kind(&staging, "foo::name", NodeKind::Variable);
        assert_has_node_with_kind(&staging, "bar::name", NodeKind::Variable);

        // Verify distinct type nodes
        assert_has_node_with_kind(&staging, "String", NodeKind::Type);
        assert_has_node_with_kind(&staging, "Integer", NodeKind::Type);
    }

    #[test]
    #[allow(clippy::items_after_statements)] // Items near usage for clarity
    fn test_custom_namespaced_type_extracts_correctly() {
        // Validates that class_identifier types (e.g., Stdlib::Absolutepath)
        // are correctly extracted as type text
        let source = r"
class myapp (
  String $name,
  Stdlib::Absolutepath $config_dir = '/etc/myapp',
) {
  # class body
}
";

        let tree = parse_puppet(source);
        let mut staging = StagingGraph::new();
        let builder = PuppetGraphBuilder;
        let file = PathBuf::from("manifests/myapp.pp");

        builder
            .build_graph(&tree, source.as_bytes(), &file, &mut staging)
            .expect("build_graph should succeed");

        let typeof_edges = extract_typeof_edges(&staging);
        assert_eq!(
            typeof_edges.len(),
            2,
            "Should have 2 TypeOf edges (String + Stdlib::Absolutepath)"
        );

        // Verify the namespaced type node was created with correct text
        use sqry_core::graph::unified::build::test_helpers::assert_has_node_with_kind;
        use sqry_core::graph::unified::node::NodeKind;
        assert_has_node_with_kind(&staging, "Stdlib::Absolutepath", NodeKind::Type);
        assert_has_node_with_kind(&staging, "String", NodeKind::Type);
        assert_has_node_with_kind(&staging, "myapp::config_dir", NodeKind::Variable);
    }
}
// Collapsible nested conditionals kept for readability with early-exit patterns