orrery-parser 0.1.0

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

use std::collections::HashMap;

use orrery_core::{identifier::Id, semantic::DiagramKind};

use crate::{
    error::{Diagnostic, DiagnosticCollector, ErrorCode, ParseError},
    parser_types::{
        Attribute, AttributeValue, Diagram, Element, Fragment, FragmentSection, Note,
        TypeDefinition, TypeSpec,
    },
    span::{Span, Spanned},
};

/// Visitor trait for traversing/analyzing AST nodes.
///
/// Each method takes a reference to its input and can accumulate state or errors.
/// Default implementations perform recursive traversal so implementors can override
/// only the methods they care about.
trait Visitor<'a> {
    /// Visit a complete diagram
    fn visit_diagram(&mut self, diagram: &Diagram<'a>) {
        self.visit_diagram_kind(&diagram.kind);
        self.visit_attributes(&diagram.attributes);
        self.visit_type_definitions(&diagram.type_definitions);
        self.visit_elements(&diagram.elements);
    }

    /// Visit the diagram kind (component, sequence, etc.)
    fn visit_diagram_kind(&mut self, _kind: &Spanned<DiagramKind>) {}

    /// Visit a list of attributes
    fn visit_attributes(&mut self, attributes: &[Attribute<'a>]) {
        for attr in attributes {
            self.visit_attribute(attr);
        }
    }

    /// Visit a single attribute
    fn visit_attribute(&mut self, attribute: &Attribute<'a>) {
        self.visit_attribute_name(&attribute.name);
        self.visit_attribute_value(&attribute.value);
    }

    /// Visit an attribute name
    fn visit_attribute_name(&mut self, _name: &Spanned<&'a str>) {}

    /// Visit an attribute value
    fn visit_attribute_value(&mut self, value: &AttributeValue<'a>) {
        match value {
            AttributeValue::String(s) => self.visit_string_value(s),
            AttributeValue::Float(f) => self.visit_float_value(f),
            AttributeValue::TypeSpec(type_spec) => self.visit_type_spec(type_spec),
            AttributeValue::Identifiers(ids) => self.visit_identifiers(ids),
            AttributeValue::Empty => {}
        }
    }

    /// Visit a string attribute value
    fn visit_string_value(&mut self, _value: &Spanned<String>) {}

    /// Visit a float attribute value
    fn visit_float_value(&mut self, _value: &Spanned<f32>) {}

    /// Visit a single identifier (component reference)
    fn visit_identifier(&mut self, _identifier: &Spanned<Id>) {}

    /// Visit an identifiers attribute value (list of identifiers)
    fn visit_identifiers(&mut self, identifiers: &[Spanned<Id>]) {
        for identifier in identifiers {
            self.visit_identifier(identifier);
        }
    }

    /// Visit a list of type definitions
    fn visit_type_definitions(&mut self, type_definitions: &[TypeDefinition<'a>]) {
        for td in type_definitions {
            self.visit_type_definition(td);
        }
    }

    /// Visit a single type definition
    fn visit_type_definition(&mut self, type_def: &TypeDefinition<'a>) {
        self.visit_type_name(&type_def.name);
        self.visit_type_spec(&type_def.type_spec);
    }

    /// Visit a type name
    fn visit_type_name(&mut self, _name: &Spanned<Id>) {}

    /// Visit a base type
    fn visit_base_type(&mut self, _base_type: &Spanned<Id>) {}

    /// Visit a type specification
    fn visit_type_spec(&mut self, type_spec: &TypeSpec<'a>) {
        if let Some(ref type_name) = type_spec.type_name {
            self.visit_base_type(type_name);
        }
        self.visit_attributes(&type_spec.attributes);
    }

    /// Visit a list of elements
    fn visit_elements(&mut self, elements: &[Element<'a>]) {
        for elem in elements {
            self.visit_element(elem);
        }
    }

    /// Visit a single element
    fn visit_element(&mut self, element: &Element<'a>) {
        match *element {
            Element::Component {
                ref name,
                ref display_name,
                ref type_spec,
                ref nested_elements,
            } => self.visit_component(name, display_name, type_spec, nested_elements),
            Element::Relation {
                ref source,
                ref target,
                ref relation_type,
                ref type_spec,
                ref label,
            } => self.visit_relation(source, target, relation_type, type_spec, label),
            Element::Diagram(ref diagram) => self.visit_diagram(diagram),
            Element::ActivateBlock {
                ref component,
                ref type_spec,
                ref elements,
            } => self.visit_activate_block(component, type_spec, elements),
            Element::Activate {
                ref component,
                ref type_spec,
            } => self.visit_activate(component, type_spec),
            Element::Deactivate { ref component } => self.visit_deactivate(component),
            Element::Fragment(ref fragment) => self.visit_fragment(fragment),
            Element::AltElseBlock {
                keyword_span: _,
                ref type_spec,
                ref sections,
            } => {
                self.visit_type_spec(type_spec);
                for section in sections {
                    self.visit_elements(&section.elements);
                }
            }
            Element::OptBlock {
                keyword_span: _,
                ref type_spec,
                ref section,
            } => {
                self.visit_type_spec(type_spec);
                self.visit_elements(&section.elements);
            }
            Element::LoopBlock {
                keyword_span: _,
                ref type_spec,
                ref section,
            } => {
                self.visit_type_spec(type_spec);
                self.visit_elements(&section.elements);
            }
            Element::ParBlock {
                keyword_span: _,
                ref type_spec,
                ref sections,
            } => {
                self.visit_type_spec(type_spec);
                for section in sections {
                    self.visit_elements(&section.elements);
                }
            }
            Element::BreakBlock {
                keyword_span: _,
                ref type_spec,
                ref section,
            } => {
                self.visit_type_spec(type_spec);
                self.visit_elements(&section.elements);
            }
            Element::CriticalBlock {
                keyword_span: _,
                ref type_spec,
                ref section,
            } => {
                self.visit_type_spec(type_spec);
                self.visit_elements(&section.elements);
            }
            Element::Note(ref note) => {
                self.visit_note(note);
            }
        }
    }

    /// Visit a fragment
    fn visit_fragment(&mut self, fragment: &Fragment<'a>) {
        for section in &fragment.sections {
            self.visit_fragment_section(section);
        }
    }

    /// Visit a fragment section
    fn visit_fragment_section(&mut self, section: &FragmentSection<'a>) {
        // Traverse section title as a string literal and its elements
        if let Some(title) = &section.title {
            self.visit_string_value(title);
        }
        self.visit_elements(&section.elements);
    }

    /// Visit a component element
    fn visit_component(
        &mut self,
        name: &Spanned<Id>,
        display_name: &Option<Spanned<String>>,
        type_spec: &TypeSpec<'a>,
        nested_elements: &[Element<'a>],
    ) {
        self.visit_component_name(name);
        if let Some(dn) = display_name {
            self.visit_display_name(dn);
        }
        self.visit_type_spec(type_spec);
        self.visit_elements(nested_elements);
    }

    /// Visit a component name
    fn visit_component_name(&mut self, _name: &Spanned<Id>) {}

    /// Visit a display name
    fn visit_display_name(&mut self, _display_name: &Spanned<String>) {}

    /// Visit a relation element
    fn visit_relation(
        &mut self,
        source: &Spanned<Id>,
        target: &Spanned<Id>,
        relation_type: &Spanned<&'a str>,
        type_spec: &TypeSpec<'a>,
        label: &Option<Spanned<String>>,
    ) {
        self.visit_relation_source(source);
        self.visit_relation_target(target);
        self.visit_relation_type(relation_type);
        self.visit_type_spec(type_spec);
        if let Some(l) = label {
            self.visit_relation_label(l);
        }
    }

    /// Visit a relation source
    fn visit_relation_source(&mut self, source: &Spanned<Id>) {
        self.visit_identifier(source);
    }

    /// Visit a relation target
    fn visit_relation_target(&mut self, target: &Spanned<Id>) {
        self.visit_identifier(target);
    }

    /// Visit a relation type
    fn visit_relation_type(&mut self, _relation_type: &Spanned<&'a str>) {}

    /// Visit a relation label
    fn visit_relation_label(&mut self, _label: &Spanned<String>) {}

    /// Visit an activate block element
    fn visit_activate_block(
        &mut self,
        component: &Spanned<Id>,
        type_spec: &TypeSpec<'a>,
        elements: &[Element<'a>],
    ) {
        self.visit_activate_component(component);
        self.visit_type_spec(type_spec);
        self.visit_elements(elements);
    }

    /// Visit an activate block component reference
    fn visit_activate_component(&mut self, _component: &Spanned<Id>) {}

    /// Visit an activate statement
    fn visit_activate(&mut self, component: &Spanned<Id>, type_spec: &TypeSpec<'a>) {
        self.visit_identifier(component);
        self.visit_type_spec(type_spec);
    }

    /// Visit a deactivate statement
    fn visit_deactivate(&mut self, component: &Spanned<Id>) {
        self.visit_identifier(component);
    }

    /// Visit a note element
    fn visit_note(&mut self, note: &Note<'a>) {
        self.visit_type_spec(&note.type_spec);
        self.visit_note_content(&note.content);
    }

    /// Visit note content
    fn visit_note_content(&mut self, _content: &Spanned<String>) {}
}

/// Entry point for running a visitor on a diagram
fn visit_diagram<'a, V: Visitor<'a>>(visitor: &mut V, diagram: &Diagram<'a>) {
    visitor.visit_diagram(diagram)
}

/// Validator that checks all diagram semantic constraints
///
/// Uses a visitor-based traversal to validate:
/// - Component identifier references (relations, notes, activate/deactivate)
/// - Activate/deactivate pairing in sequence diagrams
/// - Note attribute values (align)
///
/// The validator collects all errors during traversal for reporting after traversal.
///
/// ## Component Registry
///
/// The validator maintains a component registry (`Vec<HashMap<String, Span>>`) with one
/// registry per diagram. Components are registered as they are visited, and all subsequent
/// identifier references (in relations, activations, and notes) are validated against this
/// registry. Since identifiers are fully qualified after desugaring, all components in a
/// diagram are accessible regardless of nesting depth.
pub struct Validator {
    // Activation validation state
    activation_stack: Vec<HashMap<Id, Vec<Span>>>,

    // Component identifier registry for validation
    component_registry: Vec<HashMap<Id, Span>>,

    // Note validation state
    diagram_kind: Option<DiagramKind>,

    // Shared error collection
    diagnostics: DiagnosticCollector,
}

impl Validator {
    pub fn new() -> Self {
        Self {
            activation_stack: Vec::new(),
            component_registry: Vec::new(),
            diagram_kind: None,
            diagnostics: DiagnosticCollector::new(),
        }
    }

    fn activation_state_mut(&mut self) -> &mut HashMap<Id, Vec<Span>> {
        self.activation_stack
            .last_mut()
            .expect("activation scope not initialized")
    }

    /// Validate that align value is appropriate for the diagram type
    ///
    /// Sequence diagrams support: over, left, right
    /// Component diagrams support: left, right, top, bottom
    ///
    /// Note: The None and unknown diagram type cases are defensive programming.
    /// The parser enforces valid diagram types, but we handle these cases
    /// to fail gracefully if the validation is called incorrectly.
    fn validate_align_for_diagram_type(&mut self, align_value: &str, span: Span) {
        match self.diagram_kind {
            Some(DiagramKind::Sequence) => {
                if !matches!(align_value, "over" | "left" | "right") {
                    self.diagnostics.emit(
                        Diagnostic::error(format!(
                            "invalid align value `{align_value}` for sequence diagram"
                        ))
                        .with_code(ErrorCode::E203)
                        .with_label(span, "invalid align value")
                        .with_help("valid values: over, left, right"),
                    );
                }
            }
            Some(DiagramKind::Component) => {
                if !matches!(align_value, "left" | "right" | "top" | "bottom") {
                    self.diagnostics.emit(
                        Diagnostic::error(format!(
                            "invalid align value `{align_value}` for component diagram"
                        ))
                        .with_code(ErrorCode::E203)
                        .with_label(span, "invalid align value")
                        .with_help("valid values: left, right, top, bottom"),
                    );
                }
            }
            None => {
                self.diagnostics.emit(
                    Diagnostic::error("diagram type not set, cannot validate align attribute")
                        .with_code(ErrorCode::E203)
                        .with_label(span, "missing diagram type"),
                );
            }
        }
    }
}

impl<'a> Visitor<'a> for Validator {
    fn visit_diagram(&mut self, diagram: &Diagram<'a>) {
        // Begin component registry for this diagram
        self.component_registry.push(HashMap::new());

        // Call default traversal
        self.visit_diagram_kind(&diagram.kind);
        self.visit_attributes(&diagram.attributes);
        self.visit_type_definitions(&diagram.type_definitions);
        self.visit_elements(&diagram.elements);

        // End component registry scope
        self.component_registry.pop();
    }

    fn visit_diagram_kind(&mut self, kind: &Spanned<DiagramKind>) {
        self.diagram_kind = Some(**kind);
    }

    fn visit_elements(&mut self, elements: &[Element<'a>]) {
        // Begin new activation scope
        self.activation_stack.push(HashMap::new());

        // Traverse elements
        for elem in elements {
            self.visit_element(elem);
        }

        // End scope
        // Validate any remaining unpaired activations in this scope
        if let Some(state) = self.activation_stack.pop() {
            for (component_id, spans) in state.iter() {
                if !spans.is_empty() {
                    let span = spans.last().cloned().unwrap_or_default();
                    self.diagnostics.emit(
                        Diagnostic::error(format!(
                            "component `{component_id}` was activated but never deactivated"
                        ))
                        .with_code(ErrorCode::E201)
                        .with_label(span, "unpaired activate")
                        .with_help("every activate statement must have a corresponding deactivate statement"),
                    );
                }
            }
        }
    }

    fn visit_component_name(&mut self, name: &Spanned<Id>) {
        // Register this component in the current diagram's registry
        let registry = self
            .component_registry
            .last_mut()
            .expect("component registry not initialized");
        registry.insert(*name.inner(), name.span());
    }

    fn visit_activate(&mut self, component: &Spanned<Id>, type_spec: &TypeSpec<'a>) {
        // Validate component identifier exists
        self.visit_identifier(component);

        self.visit_type_spec(type_spec);

        // Then handle activation stack logic
        let state = self.activation_state_mut();
        state
            .entry(*component.inner())
            .or_default()
            .push(component.span());
    }

    fn visit_deactivate(&mut self, component: &Spanned<Id>) {
        // Validate component identifier exists
        self.visit_identifier(component);

        // Then handle activation stack logic
        let state = self.activation_state_mut();
        match state.get_mut(component.inner()) {
            Some(spans) if !spans.is_empty() => {
                // Remove the most recent activation span (LIFO)
                let _ = spans.pop();
            }
            _ => {
                // No matching activate
                self.diagnostics.emit(
                    Diagnostic::error(format!(
                        "cannot deactivate component `{}`: no matching activate statement",
                        component.inner()
                    ))
                    .with_code(ErrorCode::E202)
                    .with_label(component.span(), "unpaired deactivate")
                    .with_help("deactivate statements must be preceded by a corresponding activate statement"),
                );
            }
        }
    }

    fn visit_note(&mut self, note: &Note<'a>) {
        self.visit_type_spec(&note.type_spec);

        // Validation for align attribute
        for attr in &note.type_spec.attributes {
            if *attr.name.inner() == "align"
                && let Ok(align_value) = attr.value.as_str()
            {
                self.validate_align_for_diagram_type(align_value, attr.value.span());
            }
        }

        // Visit content
        self.visit_note_content(&note.content);
    }

    fn visit_identifier(&mut self, identifier: &Spanned<Id>) {
        let registry = self
            .component_registry
            .last()
            .expect("component registry not initialized");

        if !registry.contains_key(identifier.inner()) {
            self.diagnostics.emit(
                Diagnostic::error(format!("component `{}` not found", identifier.inner()))
                    .with_code(ErrorCode::E200)
                    .with_label(identifier.span(), "undefined component")
                    .with_help("component must be defined before it can be referenced"),
            );
        }
    }
}

/// Convenience function to run all diagram validations
///
/// Returns:
/// - Ok(()) when no validation issues are found
/// - Err(ParseError) with all collected errors otherwise
pub fn validate_diagram(diagram: &Diagram<'_>) -> Result<(), ParseError> {
    let mut validator = Validator::new();
    visit_diagram(&mut validator, diagram);
    validator.diagnostics.finish()
}

#[cfg(test)]
mod tests {
    use super::*;

    /// Test visitor that counts different element types
    struct CountingVisitor {
        component_count: usize,
        relation_count: usize,
        activate_count: usize,
        deactivate_count: usize,
    }

    impl CountingVisitor {
        fn new() -> Self {
            Self {
                component_count: 0,
                relation_count: 0,
                activate_count: 0,
                deactivate_count: 0,
            }
        }
    }

    impl<'a> Visitor<'a> for CountingVisitor {
        fn visit_component(
            &mut self,
            name: &Spanned<Id>,
            display_name: &Option<Spanned<String>>,
            type_spec: &TypeSpec<'a>,
            nested_elements: &[Element<'a>],
        ) {
            self.component_count += 1;
            // Call default traversal
            self.visit_component_name(name);
            if let Some(dn) = display_name {
                self.visit_display_name(dn);
            }
            self.visit_type_spec(type_spec);
            self.visit_elements(nested_elements);
        }

        fn visit_relation(
            &mut self,
            source: &Spanned<Id>,
            target: &Spanned<Id>,
            relation_type: &Spanned<&'a str>,
            type_spec: &TypeSpec<'a>,
            label: &Option<Spanned<String>>,
        ) {
            self.relation_count += 1;
            // Call default traversal
            self.visit_relation_source(source);
            self.visit_relation_target(target);
            self.visit_relation_type(relation_type);
            self.visit_type_spec(type_spec);
            if let Some(l) = label {
                self.visit_relation_label(l);
            }
        }

        fn visit_activate(&mut self, component: &Spanned<Id>, type_spec: &TypeSpec<'a>) {
            self.visit_identifier(component);
            self.visit_type_spec(type_spec);
            self.activate_count += 1;
        }

        fn visit_deactivate(&mut self, component: &Spanned<Id>) {
            self.deactivate_count += 1;
            self.visit_identifier(component);
        }
    }

    #[test]
    fn test_visitor_traversal() {
        // Create a simple test diagram
        let diagram = Diagram {
            kind: Spanned::new(DiagramKind::Sequence, Span::new(0..8)),
            attributes: vec![],
            type_definitions: vec![],
            elements: vec![
                Element::Component {
                    name: Spanned::new(Id::new("user"), Span::new(10..14)),
                    display_name: None,
                    type_spec: TypeSpec {
                        type_name: Some(Spanned::new(Id::new("Rectangle"), Span::new(16..25))),
                        attributes: vec![],
                    },
                    nested_elements: vec![],
                },
                Element::Activate {
                    component: Spanned::new(Id::new("user"), Span::new(30..34)),
                    type_spec: TypeSpec::default(),
                },
                Element::Relation {
                    source: Spanned::new(Id::new("user"), Span::new(40..44)),
                    target: Spanned::new(Id::new("server"), Span::new(48..54)),
                    relation_type: Spanned::new("->", Span::new(45..47)),
                    type_spec: TypeSpec::default(),
                    label: None,
                },
                Element::Deactivate {
                    component: Spanned::new(Id::new("user"), Span::new(60..64)),
                },
            ],
        };

        let mut visitor = CountingVisitor::new();
        visit_diagram(&mut visitor, &diagram);

        assert_eq!(visitor.component_count, 1);
        assert_eq!(visitor.relation_count, 1);
        assert_eq!(visitor.activate_count, 1);
        assert_eq!(visitor.deactivate_count, 1);
    }

    #[test]
    fn test_validate_ok_pair() {
        let diagram = Diagram {
            kind: Spanned::new(DiagramKind::Sequence, Span::new(0..8)),
            attributes: vec![],
            type_definitions: vec![],
            elements: vec![
                Element::Component {
                    name: Spanned::new(Id::new("user"), Span::new(0..4)),
                    display_name: None,
                    type_spec: TypeSpec {
                        type_name: Some(Spanned::new(Id::new("Rectangle"), Span::new(6..15))),
                        attributes: vec![],
                    },
                    nested_elements: vec![],
                },
                Element::Activate {
                    component: Spanned::new(Id::new("user"), Span::new(17..21)),
                    type_spec: TypeSpec::default(),
                },
                Element::Deactivate {
                    component: Spanned::new(Id::new("user"), Span::new(23..27)),
                },
            ],
        };

        let result = super::validate_diagram(&diagram);
        assert!(result.is_ok());
    }

    #[test]
    fn test_validate_unpaired_deactivate() {
        let diagram = Diagram {
            kind: Spanned::new(DiagramKind::Sequence, Span::new(0..8)),
            attributes: vec![],
            type_definitions: vec![],
            elements: vec![Element::Deactivate {
                component: Spanned::new(Id::new("user"), Span::new(0..4)),
            }],
        };

        let result = super::validate_diagram(&diagram);
        assert!(result.is_err());
    }

    #[test]
    fn test_validate_unpaired_activate_end_of_scope() {
        let diagram = Diagram {
            kind: Spanned::new(DiagramKind::Sequence, Span::new(0..8)),
            attributes: vec![],
            type_definitions: vec![],
            elements: vec![Element::Activate {
                component: Spanned::new(Id::new("user"), Span::new(0..4)),
                type_spec: TypeSpec::default(),
            }],
        };

        let result = super::validate_diagram(&diagram);
        assert!(result.is_err());
    }

    #[test]
    fn test_validate_nested_activations_ok() {
        let diagram = Diagram {
            kind: Spanned::new(DiagramKind::Sequence, Span::new(0..8)),
            attributes: vec![],
            type_definitions: vec![],
            elements: vec![
                Element::Component {
                    name: Spanned::new(Id::new("user"), Span::new(0..4)),
                    display_name: None,
                    type_spec: TypeSpec {
                        type_name: Some(Spanned::new(Id::new("Rectangle"), Span::new(6..15))),
                        attributes: vec![],
                    },
                    nested_elements: vec![],
                },
                Element::Activate {
                    component: Spanned::new(Id::new("user"), Span::new(17..21)),
                    type_spec: TypeSpec::default(),
                },
                Element::Activate {
                    component: Spanned::new(Id::new("user"), Span::new(23..27)),
                    type_spec: TypeSpec::default(),
                },
                Element::Deactivate {
                    component: Spanned::new(Id::new("user"), Span::new(29..33)),
                },
                Element::Deactivate {
                    component: Spanned::new(Id::new("user"), Span::new(35..39)),
                },
            ],
        };

        let result = super::validate_diagram(&diagram);
        assert!(result.is_ok());
    }

    #[test]
    fn test_validate_interleaved_components_ok() {
        let diagram = Diagram {
            kind: Spanned::new(DiagramKind::Sequence, Span::new(0..8)),
            attributes: vec![],
            type_definitions: vec![],
            elements: vec![
                Element::Component {
                    name: Spanned::new(Id::new("user"), Span::new(0..4)),
                    display_name: None,
                    type_spec: TypeSpec {
                        type_name: Some(Spanned::new(Id::new("Rectangle"), Span::new(6..15))),
                        attributes: vec![],
                    },
                    nested_elements: vec![],
                },
                Element::Component {
                    name: Spanned::new(Id::new("server"), Span::new(17..23)),
                    display_name: None,
                    type_spec: TypeSpec {
                        type_name: Some(Spanned::new(Id::new("Rectangle"), Span::new(25..34))),
                        attributes: vec![],
                    },
                    nested_elements: vec![],
                },
                Element::Activate {
                    component: Spanned::new(Id::new("user"), Span::new(36..40)),
                    type_spec: TypeSpec::default(),
                },
                Element::Activate {
                    component: Spanned::new(Id::new("server"), Span::new(42..48)),
                    type_spec: TypeSpec::default(),
                },
                Element::Deactivate {
                    component: Spanned::new(Id::new("user"), Span::new(50..54)),
                },
                Element::Deactivate {
                    component: Spanned::new(Id::new("server"), Span::new(56..62)),
                },
            ],
        };

        let result = super::validate_diagram(&diagram);
        assert!(result.is_ok());
    }

    #[test]
    fn test_validate_out_of_order_deactivate_first() {
        let diagram = Diagram {
            kind: Spanned::new(DiagramKind::Sequence, Span::new(0..8)),
            attributes: vec![],
            type_definitions: vec![],
            elements: vec![
                Element::Deactivate {
                    component: Spanned::new(Id::new("user"), Span::new(0..4)),
                },
                Element::Activate {
                    component: Spanned::new(Id::new("user"), Span::new(5..9)),
                    type_spec: TypeSpec::default(),
                },
            ],
        };

        let result = super::validate_diagram(&diagram);
        assert!(result.is_err());
    }
}

#[cfg(test)]
mod note_validation_tests {
    use super::*;
    use crate::{lexer::tokenize, parser::build_diagram};

    #[test]
    fn test_valid_note_sequence_diagram() {
        let input = r#"
        diagram sequence;
        client: Rectangle;
        server: Rectangle;

        note [on=[client], align="left"]: "Valid note";
        note [on=[server], align="right"]: "Another valid note";
        note [align="over"]: "Margin note";
        "#;

        let tokens = tokenize(input).expect("Failed to tokenize");
        let element = build_diagram(&tokens).expect("Failed to parse");
        if let Element::Diagram(diagram) = element.inner() {
            let result = validate_diagram(diagram);
            assert!(result.is_ok(), "Valid notes should pass validation");
        } else {
            panic!("Expected Diagram element");
        }
    }

    #[test]
    fn test_valid_note_component_diagram() {
        let input = r#"
        diagram component;
        api: Rectangle;
        db: Rectangle;

        note [on=[api], align="top"]: "Valid note";
        note [on=[db], align="bottom"]: "Another valid note";
        note [align="left"]: "Margin note";
        "#;

        let tokens = tokenize(input).expect("Failed to tokenize");
        let element = build_diagram(&tokens).expect("Failed to parse");
        if let Element::Diagram(diagram) = element.inner() {
            let result = validate_diagram(diagram);
            assert!(result.is_ok(), "Valid notes should pass validation");
        } else {
            panic!("Expected Diagram element");
        }
    }

    #[test]
    fn test_invalid_align_sequence_diagram() {
        let input = r#"
        diagram sequence;
        client: Rectangle;

        note [on=[client], align="top"]: "Invalid align for sequence";
        "#;

        let tokens = tokenize(input).expect("Failed to tokenize");
        let element = build_diagram(&tokens).expect("Failed to parse");
        if let Element::Diagram(diagram) = element.inner() {
            let result = validate_diagram(diagram);
            assert!(result.is_err(), "Invalid align should fail validation");

            let err = result.unwrap_err();
            assert!(format!("{}", err).contains("invalid align value `top` for sequence diagram"));
        } else {
            panic!("Expected Diagram element");
        }
    }

    #[test]
    fn test_invalid_align_component_diagram() {
        let input = r#"
        diagram component;
        api: Rectangle;

        note [on=[api], align="over"]: "Invalid align for component";
        "#;

        let tokens = tokenize(input).expect("Failed to tokenize");
        let element = build_diagram(&tokens).expect("Failed to parse");
        if let Element::Diagram(diagram) = element.inner() {
            let result = validate_diagram(diagram);
            assert!(result.is_err(), "Invalid align should fail validation");

            let err = result.unwrap_err();
            assert!(
                format!("{}", err).contains("invalid align value `over` for component diagram")
            );
        } else {
            panic!("Expected Diagram element");
        }
    }

    #[test]
    fn test_multiple_component_references() {
        let input = r#"
        diagram sequence;
        client: Rectangle;
        server: Rectangle;

        note [on=[client, server]]: "Valid spanning note";
        "#;

        let tokens = tokenize(input).expect("Failed to tokenize");
        let element = build_diagram(&tokens).expect("Failed to parse");
        if let Element::Diagram(diagram) = element.inner() {
            let result = validate_diagram(diagram);
            assert!(result.is_ok(), "Valid spanning note should pass validation");
        } else {
            panic!("Expected Diagram element");
        }
    }

    #[test]
    fn test_empty_on_attribute() {
        let input = r#"
        diagram sequence;
        client: Rectangle;

        note [on=[]]: "Margin note with empty on";
        "#;

        let tokens = tokenize(input).expect("Failed to tokenize");
        let element = build_diagram(&tokens).expect("Failed to parse");
        if let Element::Diagram(diagram) = element.inner() {
            let result = validate_diagram(diagram);
            assert!(
                result.is_ok(),
                "Empty on attribute should be valid (margin note)"
            );
        } else {
            panic!("Expected Diagram element");
        }
    }
}

#[cfg(test)]
mod identifier_validation_tests {
    use super::*;

    #[test]
    fn test_component_registry_fully_qualified_access() {
        // Test that fully qualified identifiers from nested components
        // are all accessible in a single diagram-level registry
        let diagram = Diagram {
            kind: Spanned::new(DiagramKind::Component, Span::new(0..9)),
            attributes: vec![],
            type_definitions: vec![],
            elements: vec![
                Element::Component {
                    name: Spanned::new(Id::new("frontend"), Span::new(0..8)),
                    display_name: None,
                    type_spec: TypeSpec {
                        type_name: Some(Spanned::new(Id::new("Rectangle"), Span::new(10..19))),
                        attributes: vec![],
                    },
                    nested_elements: vec![
                        Element::Component {
                            name: Spanned::new(Id::new("frontend::app"), Span::new(20..33)),
                            display_name: None,
                            type_spec: TypeSpec {
                                type_name: Some(Spanned::new(
                                    Id::new("Rectangle"),
                                    Span::new(35..44),
                                )),
                                attributes: vec![],
                            },
                            nested_elements: vec![],
                        },
                        Element::Component {
                            name: Spanned::new(Id::new("frontend::ui"), Span::new(45..57)),
                            display_name: None,
                            type_spec: TypeSpec {
                                type_name: Some(Spanned::new(
                                    Id::new("Rectangle"),
                                    Span::new(59..68),
                                )),
                                attributes: vec![],
                            },
                            nested_elements: vec![],
                        },
                    ],
                },
                Element::Component {
                    name: Spanned::new(Id::new("backend"), Span::new(69..76)),
                    display_name: None,
                    type_spec: TypeSpec {
                        type_name: Some(Spanned::new(Id::new("Rectangle"), Span::new(78..87))),
                        attributes: vec![],
                    },
                    nested_elements: vec![Element::Component {
                        name: Spanned::new(Id::new("backend::api"), Span::new(88..100)),
                        display_name: None,
                        type_spec: TypeSpec {
                            type_name: Some(Spanned::new(
                                Id::new("Rectangle"),
                                Span::new(102..111),
                            )),
                            attributes: vec![],
                        },
                        nested_elements: vec![],
                    }],
                },
            ],
        };

        let mut validator = Validator::new();
        visit_diagram(&mut validator, &diagram);

        // All components should be registered at diagram level with fully qualified names
        // This includes: frontend, frontend::app, frontend::ui, backend, backend::api
        assert!(validator.diagnostics.finish().is_ok());
    }

    #[test]
    fn test_visit_identifier_not_found() {
        let mut validator = Validator::new();

        // Set up registry with a component
        validator.component_registry.push(
            vec![(Id::new("app"), Span::new(0..3))]
                .into_iter()
                .collect(),
        );

        // Test visit_identifier with a non-existent component
        validator.visit_identifier(&Spanned::new(Id::new("unknown"), Span::new(10..17)));

        // Should have an error
        let err = validator.diagnostics.finish().unwrap_err();
        assert_eq!(err.diagnostics().len(), 1);
        assert!(
            err.diagnostics()[0]
                .to_string()
                .contains("component `unknown` not found")
        );
    }

    #[test]
    fn test_visit_identifiers_multiple() {
        let mut validator = Validator::new();

        // Set up registry with multiple components
        validator.component_registry.push(
            vec![
                (Id::new("client"), Span::new(0..6)),
                (Id::new("server"), Span::new(18..24)),
            ]
            .into_iter()
            .collect(),
        );

        // Test visit_identifier with multiple components
        validator.visit_identifier(&Spanned::new(Id::new("client"), Span::new(40..46)));
        validator.visit_identifier(&Spanned::new(Id::new("server"), Span::new(48..54)));

        // Should not add any errors
        assert!(validator.diagnostics.finish().is_ok());
    }

    #[test]
    fn test_visit_identifiers_some_missing() {
        let mut validator = Validator::new();

        // Set up registry with one component
        validator.component_registry.push(
            vec![(Id::new("client"), Span::new(0..6))]
                .into_iter()
                .collect(),
        );

        // Test visit_identifier with one valid and one invalid component
        validator.visit_identifier(&Spanned::new(Id::new("client"), Span::new(40..46)));
        validator.visit_identifier(&Spanned::new(Id::new("unknown"), Span::new(48..55)));

        // Should have one error for the missing component
        let err = validator.diagnostics.finish().unwrap_err();
        assert_eq!(err.diagnostics().len(), 1);
        assert!(
            err.diagnostics()[0]
                .to_string()
                .contains("component `unknown` not found")
        );
    }

    #[test]
    fn test_relation_with_valid_components() {
        let diagram = Diagram {
            kind: Spanned::new(DiagramKind::Component, Span::new(0..9)),
            attributes: vec![],
            type_definitions: vec![],
            elements: vec![
                Element::Component {
                    name: Spanned::new(Id::new("app"), Span::new(0..3)),
                    display_name: None,
                    type_spec: TypeSpec {
                        type_name: Some(Spanned::new(Id::new("Rectangle"), Span::new(5..14))),
                        attributes: vec![],
                    },
                    nested_elements: vec![],
                },
                Element::Component {
                    name: Spanned::new(Id::new("db"), Span::new(15..17)),
                    display_name: None,
                    type_spec: TypeSpec {
                        type_name: Some(Spanned::new(Id::new("Rectangle"), Span::new(19..28))),
                        attributes: vec![],
                    },
                    nested_elements: vec![],
                },
                Element::Relation {
                    source: Spanned::new(Id::new("app"), Span::new(30..33)),
                    target: Spanned::new(Id::new("db"), Span::new(37..39)),
                    relation_type: Spanned::new("->", Span::new(34..36)),
                    type_spec: TypeSpec::default(),
                    label: None,
                },
            ],
        };

        let result = validate_diagram(&diagram);
        assert!(result.is_ok(), "Valid relation should pass validation");
    }

    #[test]
    fn test_relation_with_invalid_source() {
        let diagram = Diagram {
            kind: Spanned::new(DiagramKind::Component, Span::new(0..9)),
            attributes: vec![],
            type_definitions: vec![],
            elements: vec![
                Element::Component {
                    name: Spanned::new(Id::new("db"), Span::new(15..17)),
                    display_name: None,
                    type_spec: TypeSpec {
                        type_name: Some(Spanned::new(Id::new("Rectangle"), Span::new(19..28))),
                        attributes: vec![],
                    },
                    nested_elements: vec![],
                },
                Element::Relation {
                    source: Spanned::new(Id::new("unknown"), Span::new(30..37)),
                    target: Spanned::new(Id::new("db"), Span::new(41..43)),
                    relation_type: Spanned::new("->", Span::new(38..40)),
                    type_spec: TypeSpec::default(),
                    label: None,
                },
            ],
        };

        let result = validate_diagram(&diagram);
        assert!(result.is_err(), "Invalid source should fail validation");
        let err = result.unwrap_err();
        assert!(err.to_string().contains("component `unknown` not found"));
    }

    #[test]
    fn test_relation_with_invalid_target() {
        let diagram = Diagram {
            kind: Spanned::new(DiagramKind::Component, Span::new(0..9)),
            attributes: vec![],
            type_definitions: vec![],
            elements: vec![
                Element::Component {
                    name: Spanned::new(Id::new("app"), Span::new(0..3)),
                    display_name: None,
                    type_spec: TypeSpec {
                        type_name: Some(Spanned::new(Id::new("Rectangle"), Span::new(5..14))),
                        attributes: vec![],
                    },
                    nested_elements: vec![],
                },
                Element::Relation {
                    source: Spanned::new(Id::new("app"), Span::new(30..33)),
                    target: Spanned::new(Id::new("missing"), Span::new(37..44)),
                    relation_type: Spanned::new("->", Span::new(34..36)),
                    type_spec: TypeSpec::default(),
                    label: None,
                },
            ],
        };

        let result = validate_diagram(&diagram);
        assert!(result.is_err(), "Invalid target should fail validation");
        let err = result.unwrap_err();
        assert!(err.to_string().contains("component `missing` not found"));
    }

    #[test]
    fn test_activate_with_valid_component() {
        let diagram = Diagram {
            kind: Spanned::new(DiagramKind::Sequence, Span::new(0..8)),
            attributes: vec![],
            type_definitions: vec![],
            elements: vec![
                Element::Component {
                    name: Spanned::new(Id::new("server"), Span::new(0..6)),
                    display_name: None,
                    type_spec: TypeSpec {
                        type_name: Some(Spanned::new(Id::new("Rectangle"), Span::new(8..17))),
                        attributes: vec![],
                    },
                    nested_elements: vec![],
                },
                Element::Activate {
                    component: Spanned::new(Id::new("server"), Span::new(20..26)),
                    type_spec: TypeSpec::default(),
                },
                Element::Deactivate {
                    component: Spanned::new(Id::new("server"), Span::new(30..36)),
                },
            ],
        };

        let result = validate_diagram(&diagram);
        assert!(result.is_ok(), "Valid activate should pass validation");
    }

    #[test]
    fn test_activate_with_invalid_component() {
        let diagram = Diagram {
            kind: Spanned::new(DiagramKind::Sequence, Span::new(0..8)),
            attributes: vec![],
            type_definitions: vec![],
            elements: vec![
                Element::Component {
                    name: Spanned::new(Id::new("server"), Span::new(0..6)),
                    display_name: None,
                    type_spec: TypeSpec {
                        type_name: Some(Spanned::new(Id::new("Rectangle"), Span::new(8..17))),
                        attributes: vec![],
                    },
                    nested_elements: vec![],
                },
                Element::Activate {
                    component: Spanned::new(Id::new("unknown"), Span::new(20..27)),
                    type_spec: TypeSpec::default(),
                },
            ],
        };

        let result = validate_diagram(&diagram);
        assert!(result.is_err(), "Invalid activate should fail validation");
        let err = result.unwrap_err();
        assert!(err.to_string().contains("component `unknown` not found"));
    }

    #[test]
    fn test_deactivate_with_invalid_component() {
        let diagram = Diagram {
            kind: Spanned::new(DiagramKind::Sequence, Span::new(0..8)),
            attributes: vec![],
            type_definitions: vec![],
            elements: vec![
                Element::Component {
                    name: Spanned::new(Id::new("server"), Span::new(0..6)),
                    display_name: None,
                    type_spec: TypeSpec {
                        type_name: Some(Spanned::new(Id::new("Rectangle"), Span::new(8..17))),
                        attributes: vec![],
                    },
                    nested_elements: vec![],
                },
                Element::Deactivate {
                    component: Spanned::new(Id::new("missing"), Span::new(20..27)),
                },
            ],
        };

        let result = validate_diagram(&diagram);
        assert!(result.is_err(), "Invalid deactivate should fail validation");
        let err = result.unwrap_err();
        assert!(err.to_string().contains("component `missing` not found"));
    }

    #[test]
    fn test_note_with_invalid_component() {
        let diagram = Diagram {
            kind: Spanned::new(DiagramKind::Sequence, Span::new(0..8)),
            attributes: vec![],
            type_definitions: vec![],
            elements: vec![
                Element::Component {
                    name: Spanned::new(Id::new("client"), Span::new(0..6)),
                    display_name: None,
                    type_spec: TypeSpec {
                        type_name: Some(Spanned::new(Id::new("Rectangle"), Span::new(8..17))),
                        attributes: vec![],
                    },
                    nested_elements: vec![],
                },
                Element::Note(Note {
                    type_spec: TypeSpec {
                        type_name: None,
                        attributes: vec![Attribute {
                            name: Spanned::new("on", Span::new(20..22)),
                            value: AttributeValue::Identifiers(vec![Spanned::new(
                                Id::new("unknown"),
                                Span::new(24..31),
                            )]),
                        }],
                    },
                    content: Spanned::new("Invalid note".to_string(), Span::new(33..47)),
                }),
            ],
        };

        let result = validate_diagram(&diagram);
        assert!(result.is_err(), "Note with invalid component should fail");
        let err = result.unwrap_err();
        assert!(err.to_string().contains("component `unknown` not found"));
    }

    #[test]
    fn test_note_with_multiple_components() {
        let diagram = Diagram {
            kind: Spanned::new(DiagramKind::Sequence, Span::new(0..8)),
            attributes: vec![],
            type_definitions: vec![],
            elements: vec![
                Element::Component {
                    name: Spanned::new(Id::new("client"), Span::new(0..6)),
                    display_name: None,
                    type_spec: TypeSpec {
                        type_name: Some(Spanned::new(Id::new("Rectangle"), Span::new(8..17))),
                        attributes: vec![],
                    },
                    nested_elements: vec![],
                },
                Element::Component {
                    name: Spanned::new(Id::new("server"), Span::new(19..25)),
                    display_name: None,
                    type_spec: TypeSpec {
                        type_name: Some(Spanned::new(Id::new("Rectangle"), Span::new(27..36))),
                        attributes: vec![],
                    },
                    nested_elements: vec![],
                },
                Element::Note(Note {
                    type_spec: TypeSpec {
                        type_name: None,
                        attributes: vec![Attribute {
                            name: Spanned::new("on", Span::new(38..40)),
                            value: AttributeValue::Identifiers(vec![
                                Spanned::new(Id::new("client"), Span::new(42..48)),
                                Spanned::new(Id::new("server"), Span::new(50..56)),
                            ]),
                        }],
                    },
                    content: Spanned::new("Multi-component note".to_string(), Span::new(58..78)),
                }),
            ],
        };

        let result = validate_diagram(&diagram);
        assert!(
            result.is_ok(),
            "Note with multiple valid components should pass"
        );
    }

    #[test]
    fn test_note_with_empty_on_attribute() {
        let diagram = Diagram {
            kind: Spanned::new(DiagramKind::Sequence, Span::new(0..8)),
            attributes: vec![],
            type_definitions: vec![],
            elements: vec![
                Element::Component {
                    name: Spanned::new(Id::new("client"), Span::new(0..6)),
                    display_name: None,
                    type_spec: TypeSpec {
                        type_name: Some(Spanned::new(Id::new("Rectangle"), Span::new(8..17))),
                        attributes: vec![],
                    },
                    nested_elements: vec![],
                },
                Element::Note(Note {
                    type_spec: TypeSpec {
                        type_name: None,
                        attributes: vec![Attribute {
                            name: Spanned::new("on", Span::new(20..22)),
                            value: AttributeValue::Identifiers(vec![]),
                        }],
                    },
                    content: Spanned::new("Margin note".to_string(), Span::new(26..39)),
                }),
            ],
        };

        let result = validate_diagram(&diagram);
        assert!(result.is_ok(), "Note with empty on attribute should pass");
    }

    #[test]
    fn test_validation_with_typespec() {
        let diagram = Diagram {
            kind: Spanned::new(DiagramKind::Sequence, Span::new(0..8)),
            attributes: vec![],
            type_definitions: vec![TypeDefinition {
                name: Spanned::new(Id::new("CustomArrow"), Span::new(10..21)),
                type_spec: TypeSpec {
                    type_name: Some(Spanned::new(Id::new("Arrow"), Span::new(24..29))),
                    attributes: vec![Attribute {
                        name: Spanned::new("color", Span::new(30..35)),
                        value: AttributeValue::String(Spanned::new(
                            "red".to_string(),
                            Span::new(37..42),
                        )),
                    }],
                },
            }],
            elements: vec![
                Element::Component {
                    name: Spanned::new(Id::new("client"), Span::new(50..56)),
                    display_name: None,
                    type_spec: TypeSpec {
                        type_name: Some(Spanned::new(Id::new("Rectangle"), Span::new(58..67))),
                        attributes: vec![Attribute {
                            name: Spanned::new("fill", Span::new(68..72)),
                            value: AttributeValue::String(Spanned::new(
                                "blue".to_string(),
                                Span::new(74..80),
                            )),
                        }],
                    },
                    nested_elements: vec![],
                },
                Element::Component {
                    name: Spanned::new(Id::new("server"), Span::new(85..91)),
                    display_name: None,
                    type_spec: TypeSpec {
                        type_name: Some(Spanned::new(Id::new("Rectangle"), Span::new(93..102))),
                        attributes: vec![],
                    },
                    nested_elements: vec![],
                },
                Element::Activate {
                    component: Spanned::new(Id::new("server"), Span::new(110..116)),
                    type_spec: TypeSpec {
                        type_name: Some(Spanned::new(Id::new("Activation"), Span::new(118..128))),
                        attributes: vec![Attribute {
                            name: Spanned::new("fill", Span::new(129..133)),
                            value: AttributeValue::String(Spanned::new(
                                "yellow".to_string(),
                                Span::new(135..143),
                            )),
                        }],
                    },
                },
                Element::Relation {
                    source: Spanned::new(Id::new("client"), Span::new(150..156)),
                    target: Spanned::new(Id::new("server"), Span::new(160..166)),
                    relation_type: Spanned::new("->", Span::new(157..159)),
                    type_spec: TypeSpec {
                        type_name: Some(Spanned::new(Id::new("CustomArrow"), Span::new(168..179))),
                        attributes: vec![Attribute {
                            name: Spanned::new("width", Span::new(180..185)),
                            value: AttributeValue::Float(Spanned::new(2.0, Span::new(187..188))),
                        }],
                    },
                    label: Some(Spanned::new("request".to_string(), Span::new(190..199))),
                },
                Element::Note(Note {
                    type_spec: TypeSpec {
                        type_name: Some(Spanned::new(Id::new("Note"), Span::new(205..209))),
                        attributes: vec![
                            Attribute {
                                name: Spanned::new("on", Span::new(210..212)),
                                value: AttributeValue::Identifiers(vec![
                                    Spanned::new(Id::new("client"), Span::new(214..220)),
                                    Spanned::new(Id::new("server"), Span::new(222..228)),
                                ]),
                            },
                            Attribute {
                                name: Spanned::new("align", Span::new(230..235)),
                                value: AttributeValue::String(Spanned::new(
                                    "right".to_string(),
                                    Span::new(237..245),
                                )),
                            },
                        ],
                    },
                    content: Spanned::new("Processing".to_string(), Span::new(247..258)),
                }),
                Element::Deactivate {
                    component: Spanned::new(Id::new("server"), Span::new(265..271)),
                },
            ],
        };

        let result = validate_diagram(&diagram);
        assert!(
            result.is_ok(),
            "Diagram with comprehensive TypeSpec usage should pass validation"
        );
    }
}