interstellar 0.2.0

A high-performance graph database with Gremlin-style traversals and GQL query 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
//! Integration tests for GQL mutation statements.
//!
//! Tests for CREATE, SET, REMOVE, DELETE, DETACH DELETE, and MERGE clauses.

#![allow(unused_variables)]
use std::collections::HashMap;
use std::sync::Arc;

use interstellar::gql::{parse_statement, MutationError};
use interstellar::storage::{Graph, GraphStorage};
use interstellar::value::Value;

// =============================================================================
// Helper Functions
// =============================================================================

/// Creates a test graph with some initial data.
fn create_test_graph() -> Arc<Graph> {
    let graph = Arc::new(Graph::new());

    let alice_id = graph.add_vertex(
        "Person",
        HashMap::from([
            ("name".to_string(), Value::String("Alice".to_string())),
            ("age".to_string(), Value::Int(30)),
        ]),
    );

    let bob_id = graph.add_vertex(
        "Person",
        HashMap::from([
            ("name".to_string(), Value::String("Bob".to_string())),
            ("age".to_string(), Value::Int(25)),
        ]),
    );

    let _software_id = graph.add_vertex(
        "Software",
        HashMap::from([("name".to_string(), Value::String("Gremlin".to_string()))]),
    );

    graph
        .add_edge(
            alice_id,
            bob_id,
            "KNOWS",
            HashMap::from([("since".to_string(), Value::Int(2020))]),
        )
        .unwrap();

    graph
}

/// Execute a GQL mutation query against the graph.
fn execute_gql(graph: &Arc<Graph>, query: &str) -> Result<Vec<Value>, MutationError> {
    graph.gql(query).map_err(|e| {
        MutationError::Compile(interstellar::gql::CompileError::UnsupportedFeature(
            format!("GQL error: {}", e),
        ))
    })
}

// =============================================================================
// CREATE Tests
// =============================================================================

#[test]
fn test_create_single_vertex() {
    let graph = Arc::new(Graph::new());

    execute_gql(&graph, "CREATE (n:Person {name: 'Charlie', age: 35})").unwrap();

    assert_eq!(graph.vertex_count(), 1);

    let vertex = graph.snapshot().all_vertices().next().unwrap();
    assert_eq!(vertex.label, "Person");
    assert_eq!(
        vertex.properties.get("name"),
        Some(&Value::String("Charlie".to_string()))
    );
    assert_eq!(vertex.properties.get("age"), Some(&Value::Int(35)));
}

#[test]
fn test_create_multiple_vertices() {
    let graph = Arc::new(Graph::new());

    execute_gql(
        &graph,
        "CREATE (a:Person {name: 'Alice'}), (b:Person {name: 'Bob'})",
    )
    .unwrap();

    assert_eq!(graph.vertex_count(), 2);
}

#[test]
fn test_create_vertex_and_edge() {
    let graph = Arc::new(Graph::new());

    execute_gql(
        &graph,
        "CREATE (a:Person {name: 'Alice'})-[:KNOWS {since: 2020}]->(b:Person {name: 'Bob'})",
    )
    .unwrap();

    assert_eq!(graph.vertex_count(), 2);
    assert_eq!(graph.edge_count(), 1);

    let edge = graph.snapshot().all_edges().next().unwrap();
    assert_eq!(edge.label, "KNOWS");
    assert_eq!(edge.properties.get("since"), Some(&Value::Int(2020)));
}

#[test]
fn test_create_with_return() {
    let graph = Arc::new(Graph::new());

    let results = execute_gql(&graph, "CREATE (n:Person {name: 'Alice'}) RETURN n").unwrap();

    assert_eq!(results.len(), 1);
    assert!(matches!(results[0], Value::Vertex(_)));
}

#[test]
fn test_create_with_return_property() {
    let graph = Arc::new(Graph::new());

    let results = execute_gql(&graph, "CREATE (n:Person {name: 'Alice'}) RETURN n.name").unwrap();

    assert_eq!(results.len(), 1);
    assert_eq!(results[0], Value::String("Alice".to_string()));
}

// =============================================================================
// MATCH + CREATE Tests
// =============================================================================

#[test]
fn test_match_create_edge() {
    let graph = create_test_graph();
    let initial_edge_count = graph.edge_count();

    // First create a new edge between existing vertices by first matching them
    // Note: Our current implementation requires the pattern to include vertex labels for matching
    execute_gql(
        &graph,
        r#"
        MATCH (a:Person {name: 'Alice'})-[:KNOWS]->(b:Person {name: 'Bob'})
        CREATE (a)-[:WORKS_WITH {project: 'Gremlin'}]->(b)
        "#,
    )
    .unwrap();

    assert_eq!(graph.edge_count(), initial_edge_count + 1);
}

// =============================================================================
// SET Tests
// =============================================================================

#[test]
fn test_match_set_property() {
    let graph = create_test_graph();

    execute_gql(&graph, "MATCH (n:Person {name: 'Alice'}) SET n.age = 31").unwrap();

    let alice = graph
        .snapshot()
        .all_vertices()
        .find(|v| v.properties.get("name") == Some(&Value::String("Alice".to_string())))
        .expect("Alice should exist");
    assert_eq!(alice.properties.get("age"), Some(&Value::Int(31)));
}

#[test]
fn test_match_set_multiple_properties() {
    let graph = create_test_graph();

    execute_gql(
        &graph,
        "MATCH (n:Person {name: 'Alice'}) SET n.age = 31, n.status = 'active'",
    )
    .unwrap();

    let alice = graph
        .snapshot()
        .all_vertices()
        .find(|v| v.properties.get("name") == Some(&Value::String("Alice".to_string())))
        .expect("Alice should exist");
    assert_eq!(alice.properties.get("age"), Some(&Value::Int(31)));
    assert_eq!(
        alice.properties.get("status"),
        Some(&Value::String("active".to_string()))
    );
}

#[test]
fn test_match_set_with_return() {
    let graph = create_test_graph();

    let results = execute_gql(
        &graph,
        "MATCH (n:Person {name: 'Alice'}) SET n.age = 31 RETURN n.age",
    )
    .unwrap();

    assert_eq!(results.len(), 1);
    assert_eq!(results[0], Value::Int(31));
}

// =============================================================================
// REMOVE Tests
// =============================================================================

#[test]
fn test_match_remove_property() {
    let graph = create_test_graph();

    execute_gql(&graph, "MATCH (n:Person {name: 'Alice'}) REMOVE n.age").unwrap();

    let alice = graph
        .snapshot()
        .all_vertices()
        .find(|v| v.properties.get("name") == Some(&Value::String("Alice".to_string())))
        .expect("Alice should exist");
    // Property should be set to Null (our REMOVE implementation)
    assert_eq!(alice.properties.get("age"), Some(&Value::Null));
}

// =============================================================================
// DELETE Tests
// =============================================================================

#[test]
fn test_delete_edge() {
    let graph = create_test_graph();
    assert_eq!(graph.edge_count(), 1);

    // Match the edge with explicit endpoint patterns
    execute_gql(&graph, "MATCH (a:Person)-[r:KNOWS]->(b:Person) DELETE r").unwrap();

    assert_eq!(graph.edge_count(), 0);
}

#[test]
fn test_delete_vertex_without_edges() {
    let graph = Arc::new(Graph::new());
    graph.add_vertex(
        "Person",
        HashMap::from([("name".to_string(), Value::String("Solo".to_string()))]),
    );

    assert_eq!(graph.vertex_count(), 1);

    execute_gql(&graph, "MATCH (n:Person {name: 'Solo'}) DELETE n").unwrap();

    assert_eq!(graph.vertex_count(), 0);
}

#[test]
fn test_delete_vertex_with_edges_fails() {
    let graph = create_test_graph();

    let result = execute_gql(&graph, "MATCH (n:Person {name: 'Alice'}) DELETE n");

    assert!(result.is_err());
    // Vertex should still exist
    assert_eq!(graph.vertex_count(), 3);
}

// =============================================================================
// DETACH DELETE Tests
// =============================================================================

#[test]
fn test_detach_delete_vertex() {
    let graph = create_test_graph();
    assert_eq!(graph.vertex_count(), 3);
    assert_eq!(graph.edge_count(), 1);

    execute_gql(&graph, "MATCH (n:Person {name: 'Alice'}) DETACH DELETE n").unwrap();

    // Alice is gone, but Bob and Gremlin remain
    assert_eq!(graph.vertex_count(), 2);
    // Edge is also gone
    assert_eq!(graph.edge_count(), 0);
}

// =============================================================================
// MERGE Tests
// =============================================================================

#[test]
fn test_merge_creates_when_not_exists() {
    let graph = Arc::new(Graph::new());

    execute_gql(
        &graph,
        "MERGE (n:Person {name: 'New'}) ON CREATE SET n.created = true",
    )
    .unwrap();

    assert_eq!(graph.vertex_count(), 1);

    let vertex = graph.snapshot().all_vertices().next().unwrap();
    assert_eq!(
        vertex.properties.get("name"),
        Some(&Value::String("New".to_string()))
    );
    assert_eq!(vertex.properties.get("created"), Some(&Value::Bool(true)));
}

#[test]
fn test_merge_matches_when_exists() {
    let graph = create_test_graph();
    let initial_count = graph.vertex_count();

    execute_gql(
        &graph,
        "MERGE (n:Person {name: 'Alice'}) ON MATCH SET n.updated = true",
    )
    .unwrap();

    // No new vertex created
    assert_eq!(graph.vertex_count(), initial_count);

    let alice = graph
        .snapshot()
        .all_vertices()
        .find(|v| v.properties.get("name") == Some(&Value::String("Alice".to_string())))
        .expect("Alice should exist");
    assert_eq!(alice.properties.get("updated"), Some(&Value::Bool(true)));
}

#[test]
fn test_merge_with_both_actions() {
    let graph = Arc::new(Graph::new());

    // First MERGE creates
    execute_gql(
        &graph,
        "MERGE (n:Person {name: 'Test'}) ON CREATE SET n.status = 'new' ON MATCH SET n.status = 'existing'",
    )
    .unwrap();

    let vertex = graph.snapshot().all_vertices().next().unwrap();
    assert_eq!(
        vertex.properties.get("status"),
        Some(&Value::String("new".to_string()))
    );

    // Second MERGE matches
    execute_gql(
        &graph,
        "MERGE (n:Person {name: 'Test'}) ON CREATE SET n.status = 'new' ON MATCH SET n.status = 'existing'",
    )
    .unwrap();

    // Still just one vertex
    assert_eq!(graph.vertex_count(), 1);

    let vertex = graph.snapshot().all_vertices().next().unwrap();
    assert_eq!(
        vertex.properties.get("status"),
        Some(&Value::String("existing".to_string()))
    );
}

// =============================================================================
// WHERE Clause Tests
// =============================================================================

#[test]
fn test_match_where_set() {
    let graph = create_test_graph();

    // Only update vertices where age > 26
    execute_gql(
        &graph,
        "MATCH (n:Person) WHERE n.age > 26 SET n.adult = true",
    )
    .unwrap();

    // Only Alice (age 30) should be updated
    let alice = graph
        .snapshot()
        .all_vertices()
        .find(|v| v.properties.get("name") == Some(&Value::String("Alice".to_string())))
        .expect("Alice should exist");
    assert_eq!(alice.properties.get("adult"), Some(&Value::Bool(true)));

    // Bob (age 25) should not be updated
    let bob = graph
        .snapshot()
        .all_vertices()
        .find(|v| v.properties.get("name") == Some(&Value::String("Bob".to_string())))
        .expect("Bob should exist");
    assert_eq!(bob.properties.get("adult"), None);
}

#[test]
fn test_match_where_no_matches() {
    let graph = create_test_graph();

    // No matches - no updates
    let results = execute_gql(
        &graph,
        "MATCH (n:Person) WHERE n.age > 100 SET n.centenarian = true RETURN n",
    )
    .unwrap();

    assert!(results.is_empty());
}

// =============================================================================
// Complex Query Tests
// =============================================================================

#[test]
fn test_create_multiple_edges_chain() {
    let graph = Arc::new(Graph::new());

    execute_gql(
        &graph,
        "CREATE (a:Person {name: 'A'})-[:FOLLOWS]->(b:Person {name: 'B'})-[:FOLLOWS]->(c:Person {name: 'C'})",
    )
    .unwrap();

    assert_eq!(graph.vertex_count(), 3);
    assert_eq!(graph.edge_count(), 2);
}

#[test]
fn test_set_expression_value() {
    let graph = create_test_graph();

    // Set a computed value
    execute_gql(
        &graph,
        "MATCH (n:Person {name: 'Alice'}) SET n.next_age = n.age + 1",
    )
    .unwrap();

    let alice = graph
        .snapshot()
        .all_vertices()
        .find(|v| v.properties.get("name") == Some(&Value::String("Alice".to_string())))
        .expect("Alice should exist");
    assert_eq!(alice.properties.get("next_age"), Some(&Value::Int(31)));
}

// =============================================================================
// Error Case Tests
// =============================================================================

#[test]
fn test_set_unbound_variable_fails() {
    let graph = create_test_graph();

    let result = execute_gql(&graph, "MATCH (n:Person) SET m.age = 50");

    assert!(result.is_err());
}

#[test]
fn test_delete_unbound_variable_fails() {
    let graph = create_test_graph();

    let result = execute_gql(&graph, "MATCH (n:Person) DELETE m");

    assert!(result.is_err());
}

// =============================================================================
// Schema Validation Tests
// =============================================================================

use interstellar::gql::execute_mutation_with_schema;
use interstellar::schema::{PropertyType, SchemaBuilder, SchemaError, ValidationMode};
use interstellar::storage::{GraphMutWrapper, GraphStorageMut};

/// Create a test schema for validation tests.
fn create_test_schema(mode: ValidationMode) -> interstellar::schema::GraphSchema {
    SchemaBuilder::new()
        .mode(mode)
        .vertex("Person")
        .property("name", PropertyType::String)
        .optional("age", PropertyType::Int)
        .done()
        .vertex("Company")
        .property("name", PropertyType::String)
        .property("founded", PropertyType::Int)
        .done()
        .edge("KNOWS")
        .from(&["Person"])
        .to(&["Person"])
        .optional("since", PropertyType::Int)
        .done()
        .edge("WORKS_AT")
        .from(&["Person"])
        .to(&["Company"])
        .property("role", PropertyType::String)
        .done()
        .build()
}

/// Execute a GQL mutation with schema validation.
fn execute_gql_with_schema(
    storage: &mut GraphMutWrapper<'_>,
    query: &str,
    schema: &interstellar::schema::GraphSchema,
) -> Result<Vec<Value>, MutationError> {
    let stmt = parse_statement(query).unwrap();
    execute_mutation_with_schema(&stmt, storage, Some(schema))
}

// --- CREATE Vertex Validation Tests ---

#[test]
fn test_create_vertex_valid_schema() {
    let graph = Arc::new(Graph::new());
    let mut storage = graph.as_storage_mut();
    let schema = create_test_schema(ValidationMode::Strict);

    let result = execute_gql_with_schema(
        &mut storage,
        "CREATE (n:Person {name: 'Alice', age: 30})",
        &schema,
    );

    assert!(result.is_ok());
    assert_eq!(storage.vertex_count(), 1);
}

#[test]
fn test_create_vertex_missing_required_property_strict() {
    let graph = Arc::new(Graph::new());
    let mut storage = graph.as_storage_mut();
    let schema = create_test_schema(ValidationMode::Strict);

    // Person requires 'name' property
    let result = execute_gql_with_schema(&mut storage, "CREATE (n:Person {age: 30})", &schema);

    assert!(result.is_err());
    if let Err(MutationError::Schema(SchemaError::MissingRequired { property, .. })) = result {
        assert_eq!(property, "name");
    } else {
        panic!("Expected MissingRequired error, got {:?}", result);
    }
    // Vertex should not be created
    assert_eq!(storage.vertex_count(), 0);
}

#[test]
fn test_create_vertex_wrong_property_type_strict() {
    let graph = Arc::new(Graph::new());
    let mut storage = graph.as_storage_mut();
    let schema = create_test_schema(ValidationMode::Strict);

    // age should be Int, not String
    let result = execute_gql_with_schema(
        &mut storage,
        "CREATE (n:Person {name: 'Alice', age: 'thirty'})",
        &schema,
    );

    assert!(result.is_err());
    if let Err(MutationError::Schema(SchemaError::TypeMismatch { property, .. })) = result {
        assert_eq!(property, "age");
    } else {
        panic!("Expected TypeMismatch error, got {:?}", result);
    }
    assert_eq!(storage.vertex_count(), 0);
}

#[test]
fn test_create_vertex_unknown_label_closed() {
    let graph = Arc::new(Graph::new());
    let mut storage = graph.as_storage_mut();
    let schema = create_test_schema(ValidationMode::Closed);

    // 'Animal' is not defined in the schema
    let result =
        execute_gql_with_schema(&mut storage, "CREATE (n:Animal {name: 'Fluffy'})", &schema);

    assert!(result.is_err());
    if let Err(MutationError::Schema(SchemaError::UnknownVertexLabel { label })) = result {
        assert_eq!(label, "Animal");
    } else {
        panic!("Expected UnknownVertexLabel error, got {:?}", result);
    }
    assert_eq!(storage.vertex_count(), 0);
}

#[test]
fn test_create_vertex_unknown_label_strict_allowed() {
    let graph = Arc::new(Graph::new());
    let mut storage = graph.as_storage_mut();
    let schema = create_test_schema(ValidationMode::Strict);

    // Unknown labels are allowed in Strict mode
    let result =
        execute_gql_with_schema(&mut storage, "CREATE (n:Animal {name: 'Fluffy'})", &schema);

    assert!(result.is_ok());
    assert_eq!(storage.vertex_count(), 1);
}

#[test]
fn test_create_vertex_validation_mode_none() {
    let graph = Arc::new(Graph::new());
    let mut storage = graph.as_storage_mut();
    let schema = create_test_schema(ValidationMode::None);

    // All validation is skipped in None mode
    let result =
        execute_gql_with_schema(&mut storage, "CREATE (n:Person {age: 'invalid'})", &schema);

    assert!(result.is_ok());
    assert_eq!(storage.vertex_count(), 1);
}

// --- CREATE Edge Validation Tests ---

#[test]
fn test_create_edge_valid_schema() {
    let graph = Arc::new(Graph::new());
    let mut storage = graph.as_storage_mut();
    let schema = create_test_schema(ValidationMode::Strict);

    // Create two Person vertices and a KNOWS edge between them
    let result = execute_gql_with_schema(
        &mut storage,
        "CREATE (a:Person {name: 'Alice'})-[:KNOWS {since: 2020}]->(b:Person {name: 'Bob'})",
        &schema,
    );

    assert!(result.is_ok());
    assert_eq!(storage.vertex_count(), 2);
    assert_eq!(storage.edge_count(), 1);
}

#[test]
fn test_create_edge_invalid_source_label() {
    let graph = Arc::new(Graph::new());
    let mut storage = graph.as_storage_mut();
    let schema = create_test_schema(ValidationMode::Strict);

    // WORKS_AT only allows Person -> Company, not Company -> Company
    // First create a Company
    storage.add_vertex(
        "Company",
        HashMap::from([
            ("name".to_string(), Value::String("Acme".to_string())),
            ("founded".to_string(), Value::Int(1990)),
        ]),
    );

    let result = execute_gql_with_schema(
        &mut storage,
        "CREATE (c:Company {name: 'Corp', founded: 2000})-[:WORKS_AT {role: 'Manager'}]->(c2:Company {name: 'Other', founded: 2010})",
        &schema,
    );

    assert!(result.is_err());
    if let Err(MutationError::Schema(SchemaError::InvalidSourceLabel { edge_label, .. })) = result {
        assert_eq!(edge_label, "WORKS_AT");
    } else {
        panic!("Expected InvalidSourceLabel error, got {:?}", result);
    }
}

#[test]
fn test_create_edge_invalid_target_label() {
    let graph = Arc::new(Graph::new());
    let mut storage = graph.as_storage_mut();
    let schema = create_test_schema(ValidationMode::Strict);

    // WORKS_AT requires Company as target, not Person
    let result = execute_gql_with_schema(
        &mut storage,
        "CREATE (a:Person {name: 'Alice'})-[:WORKS_AT {role: 'Developer'}]->(b:Person {name: 'Bob'})",
        &schema,
    );

    assert!(result.is_err());
    if let Err(MutationError::Schema(SchemaError::InvalidTargetLabel { edge_label, .. })) = result {
        assert_eq!(edge_label, "WORKS_AT");
    } else {
        panic!("Expected InvalidTargetLabel error, got {:?}", result);
    }
}

#[test]
fn test_create_edge_missing_required_property() {
    let graph = Arc::new(Graph::new());
    let mut storage = graph.as_storage_mut();
    let schema = create_test_schema(ValidationMode::Strict);

    // WORKS_AT requires 'role' property
    let result = execute_gql_with_schema(
        &mut storage,
        "CREATE (a:Person {name: 'Alice'})-[:WORKS_AT]->(c:Company {name: 'Acme', founded: 2000})",
        &schema,
    );

    assert!(result.is_err());
    if let Err(MutationError::Schema(SchemaError::MissingRequired { property, .. })) = result {
        assert_eq!(property, "role");
    } else {
        panic!("Expected MissingRequired error, got {:?}", result);
    }
}

// --- SET Property Validation Tests ---

#[test]
fn test_set_property_valid_type() {
    let graph = Arc::new(Graph::new());
    let mut storage = graph.as_storage_mut();
    let schema = create_test_schema(ValidationMode::Strict);

    // Create a Person
    execute_gql_with_schema(&mut storage, "CREATE (n:Person {name: 'Alice'})", &schema).unwrap();

    // Set age to an integer (correct type)
    let result = execute_gql_with_schema(&mut storage, "MATCH (n:Person) SET n.age = 30", &schema);

    assert!(result.is_ok());
}

#[test]
fn test_set_property_wrong_type() {
    let graph = Arc::new(Graph::new());
    let mut storage = graph.as_storage_mut();
    let schema = create_test_schema(ValidationMode::Strict);

    // Create a Person
    execute_gql_with_schema(&mut storage, "CREATE (n:Person {name: 'Alice'})", &schema).unwrap();

    // Try to set age to a string (wrong type)
    let result = execute_gql_with_schema(
        &mut storage,
        "MATCH (n:Person) SET n.age = 'thirty'",
        &schema,
    );

    assert!(result.is_err());
    if let Err(MutationError::Schema(SchemaError::TypeMismatch { property, .. })) = result {
        assert_eq!(property, "age");
    } else {
        panic!("Expected TypeMismatch error, got {:?}", result);
    }
}

#[test]
fn test_set_required_property_to_null() {
    let graph = Arc::new(Graph::new());
    let mut storage = graph.as_storage_mut();
    let schema = create_test_schema(ValidationMode::Strict);

    // Create a Person
    execute_gql_with_schema(&mut storage, "CREATE (n:Person {name: 'Alice'})", &schema).unwrap();

    // Try to set required 'name' property to null
    let result =
        execute_gql_with_schema(&mut storage, "MATCH (n:Person) SET n.name = null", &schema);

    assert!(result.is_err());
    if let Err(MutationError::Schema(SchemaError::NullRequired { property, .. })) = result {
        assert_eq!(property, "name");
    } else {
        panic!("Expected NullRequired error, got {:?}", result);
    }
}

// --- MERGE Validation Tests ---

#[test]
fn test_merge_create_with_validation() {
    let graph = Arc::new(Graph::new());
    let mut storage = graph.as_storage_mut();
    let schema = create_test_schema(ValidationMode::Strict);

    // MERGE creates when pattern doesn't exist, should validate
    let result = execute_gql_with_schema(
        &mut storage,
        "MERGE (n:Person {name: 'Alice'}) ON CREATE SET n.age = 30",
        &schema,
    );

    assert!(result.is_ok());
    assert_eq!(storage.vertex_count(), 1);
}

#[test]
fn test_merge_create_fails_validation() {
    let graph = Arc::new(Graph::new());
    let mut storage = graph.as_storage_mut();
    let schema = create_test_schema(ValidationMode::Strict);

    // MERGE creates, but missing required 'name' property
    let result = execute_gql_with_schema(&mut storage, "MERGE (n:Person {age: 30})", &schema);

    assert!(result.is_err());
    assert!(matches!(
        result,
        Err(MutationError::Schema(SchemaError::MissingRequired { .. }))
    ));
    assert_eq!(storage.vertex_count(), 0);
}

#[test]
fn test_merge_match_with_set_validation() {
    let graph = Arc::new(Graph::new());
    let mut storage = graph.as_storage_mut();
    let schema = create_test_schema(ValidationMode::Strict);

    // Create a person first
    execute_gql_with_schema(&mut storage, "CREATE (n:Person {name: 'Alice'})", &schema).unwrap();

    // MERGE matches existing, ON MATCH SET should validate
    let result = execute_gql_with_schema(
        &mut storage,
        "MERGE (n:Person {name: 'Alice'}) ON MATCH SET n.age = 30",
        &schema,
    );

    assert!(result.is_ok());
}

#[test]
fn test_merge_match_set_wrong_type() {
    let graph = Arc::new(Graph::new());
    let mut storage = graph.as_storage_mut();
    let schema = create_test_schema(ValidationMode::Strict);

    // Create a person first
    execute_gql_with_schema(&mut storage, "CREATE (n:Person {name: 'Alice'})", &schema).unwrap();

    // MERGE matches existing, but ON MATCH SET has wrong type
    let result = execute_gql_with_schema(
        &mut storage,
        "MERGE (n:Person {name: 'Alice'}) ON MATCH SET n.age = 'thirty'",
        &schema,
    );

    assert!(result.is_err());
    assert!(matches!(
        result,
        Err(MutationError::Schema(SchemaError::TypeMismatch { .. }))
    ));
}

// --- No Schema (backwards compatibility) Tests ---

#[test]
fn test_mutation_without_schema() {
    let graph = Arc::new(Graph::new());

    // Using gql() without schema should work without validation
    let result = execute_gql(&graph, "CREATE (n:Person {name: 42})"); // name as Int instead of String

    assert!(result.is_ok());
    assert_eq!(graph.vertex_count(), 1);
}

#[test]
fn test_mutation_with_none_schema() {
    let graph = Arc::new(Graph::new());
    let mut storage = graph.as_storage_mut();

    // Passing None as schema should behave the same as no schema
    let stmt = parse_statement("CREATE (n:Person {name: 42})").unwrap();
    let result = execute_mutation_with_schema(&stmt, &mut storage, None);

    assert!(result.is_ok());
    assert_eq!(storage.vertex_count(), 1);
}

// =============================================================================
// Graph API DDL Integration Tests
// =============================================================================

// These tests use the Graph API (COW-based) with direct ddl() method.

#[test]
fn test_graph_ddl_create_node_type() {
    let graph = Arc::new(Graph::new());

    // Create a node type using DDL
    let schema = graph
        .ddl("CREATE NODE TYPE Person (name STRING NOT NULL, age INT)")
        .unwrap();

    assert!(schema.has_vertex_schema("Person"));
    let person = schema.vertex_schema("Person").unwrap();
    assert!(person.properties.get("name").unwrap().required);
    assert!(!person.properties.get("age").unwrap().required);

    // Schema should persist on the graph
    let schema = graph.schema().expect("Schema should be set");
    assert!(schema.has_vertex_schema("Person"));
}

#[test]
fn test_graph_ddl_create_edge_type() {
    let graph = Arc::new(Graph::new());

    // Create node types first
    graph
        .ddl("CREATE NODE TYPE Person (name STRING NOT NULL)")
        .unwrap();
    graph
        .ddl("CREATE NODE TYPE Company (name STRING NOT NULL)")
        .unwrap();

    // Create an edge type
    let schema = graph
        .ddl("CREATE EDGE TYPE WORKS_AT (role STRING NOT NULL) FROM Person TO Company")
        .unwrap();

    assert!(schema.has_edge_schema("WORKS_AT"));
    let works_at = schema.edge_schema("WORKS_AT").unwrap();
    assert_eq!(works_at.from_labels, vec!["Person"]);
    assert_eq!(works_at.to_labels, vec!["Company"]);
}

#[test]
fn test_graph_ddl_set_validation_mode() {
    let graph = Arc::new(Graph::new());

    graph
        .ddl("CREATE NODE TYPE Person (name STRING NOT NULL)")
        .unwrap();

    let schema = graph.ddl("SET SCHEMA VALIDATION STRICT").unwrap();

    assert_eq!(schema.mode, ValidationMode::Strict);

    let schema = graph.schema().unwrap();
    assert_eq!(schema.mode, ValidationMode::Strict);
}

#[test]
fn test_graph_ddl_alter_node_type() {
    let graph = Arc::new(Graph::new());

    graph
        .ddl("CREATE NODE TYPE Person (name STRING NOT NULL)")
        .unwrap();

    // Add a property
    let schema = graph
        .ddl("ALTER NODE TYPE Person ADD email STRING")
        .unwrap();

    let person = schema.vertex_schema("Person").unwrap();
    assert!(person.properties.contains_key("email"));
    assert!(!person.properties.get("email").unwrap().required); // Added properties are optional

    // Allow additional properties
    let schema = graph
        .ddl("ALTER NODE TYPE Person ALLOW ADDITIONAL PROPERTIES")
        .unwrap();
    assert!(
        schema
            .vertex_schema("Person")
            .unwrap()
            .additional_properties
    );
}

#[test]
fn test_graph_ddl_drop_node_type() {
    let graph = Arc::new(Graph::new());

    graph
        .ddl("CREATE NODE TYPE Person (name STRING NOT NULL)")
        .unwrap();
    graph
        .ddl("CREATE NODE TYPE Company (name STRING NOT NULL)")
        .unwrap();

    assert!(graph.schema().unwrap().has_vertex_schema("Person"));
    assert!(graph.schema().unwrap().has_vertex_schema("Company"));

    // Drop Person type
    let schema = graph.ddl("DROP NODE TYPE Person").unwrap();

    assert!(!schema.has_vertex_schema("Person"));
    assert!(schema.has_vertex_schema("Company"));
}

#[test]
fn test_graph_ddl_full_workflow() {
    let graph = Arc::new(Graph::new());

    // Build schema using DDL
    graph
        .ddl("CREATE NODE TYPE Person (name STRING NOT NULL, age INT)")
        .unwrap();
    graph
        .ddl("CREATE NODE TYPE Software (name STRING NOT NULL, language STRING)")
        .unwrap();
    graph
        .ddl("CREATE EDGE TYPE KNOWS (since INT) FROM Person TO Person")
        .unwrap();
    graph
        .ddl("CREATE EDGE TYPE CREATED (year INT NOT NULL) FROM Person TO Software")
        .unwrap();
    graph.ddl("SET SCHEMA VALIDATION STRICT").unwrap();

    // Verify schema
    let schema = graph.schema().unwrap();
    assert_eq!(schema.mode, ValidationMode::Strict);
    assert!(schema.has_vertex_schema("Person"));
    assert!(schema.has_vertex_schema("Software"));
    assert!(schema.has_edge_schema("KNOWS"));
    assert!(schema.has_edge_schema("CREATED"));

    // Verify edge endpoints
    let created = schema.edge_schema("CREATED").unwrap();
    assert_eq!(created.from_labels, vec!["Person"]);
    assert_eq!(created.to_labels, vec!["Software"]);
}

#[test]
fn test_graph_ddl_error_handling() {
    let graph = Arc::new(Graph::new());

    // Create a type
    graph
        .ddl("CREATE NODE TYPE Person (name STRING NOT NULL)")
        .unwrap();

    // Try to create duplicate type - should fail
    let result = graph.ddl("CREATE NODE TYPE Person (name STRING)");
    assert!(result.is_err());

    // Try to drop non-existent type - should fail
    let result = graph.ddl("DROP NODE TYPE NonExistent");
    assert!(result.is_err());

    // Try to alter non-existent type - should fail
    let result = graph.ddl("ALTER NODE TYPE NonExistent ADD prop STRING");
    assert!(result.is_err());
}

#[test]
fn test_graph_ddl_parse_error() {
    let graph = Arc::new(Graph::new());

    // Invalid DDL syntax
    let result = graph.ddl("CREATE NODE TYPE");
    assert!(result.is_err());

    // Not a DDL statement (this is a query, not DDL)
    let result = graph.ddl("MATCH (n) RETURN n");
    assert!(result.is_err());
}

// =============================================================================
// FOREACH Clause Integration Tests
// =============================================================================

/// Helper to create a graph for FOREACH tests with relationships.
fn create_foreach_test_graph() -> Arc<Graph> {
    let graph = Arc::new(Graph::new());

    // Create several people
    let alice_id = graph.add_vertex(
        "Person",
        HashMap::from([
            ("name".to_string(), Value::String("Alice".to_string())),
            ("visited".to_string(), Value::Bool(false)),
        ]),
    );

    let bob_id = graph.add_vertex(
        "Person",
        HashMap::from([
            ("name".to_string(), Value::String("Bob".to_string())),
            ("visited".to_string(), Value::Bool(false)),
        ]),
    );

    let charlie_id = graph.add_vertex(
        "Person",
        HashMap::from([
            ("name".to_string(), Value::String("Charlie".to_string())),
            ("visited".to_string(), Value::Bool(false)),
        ]),
    );

    // Alice knows Bob and Charlie
    graph
        .add_edge(alice_id, bob_id, "KNOWS", HashMap::new())
        .unwrap();
    graph
        .add_edge(alice_id, charlie_id, "KNOWS", HashMap::new())
        .unwrap();

    // Bob knows Charlie
    graph
        .add_edge(bob_id, charlie_id, "KNOWS", HashMap::new())
        .unwrap();

    graph
}

#[test]
fn test_foreach_set_property() {
    let graph = create_foreach_test_graph();

    // Use FOREACH to set a counter property based on list values
    // Note: FOREACH must come after at least one mutation clause per grammar
    execute_gql(
        &graph,
        r#"
        MATCH (p:Person {name: 'Alice'})
        SET p.marker = true
        FOREACH (i IN [1, 2, 3] | SET p.counter = i)
        "#,
    )
    .unwrap();

    // Alice should have counter = 3 (last value wins)
    let alice = graph
        .snapshot()
        .all_vertices()
        .find(|v| v.properties.get("name") == Some(&Value::String("Alice".to_string())))
        .expect("Alice should exist");
    assert_eq!(alice.properties.get("counter"), Some(&Value::Int(3)));
    assert_eq!(alice.properties.get("marker"), Some(&Value::Bool(true)));
}

#[test]
fn test_foreach_remove_property() {
    let graph = Arc::new(Graph::new());

    // Create a vertex with properties we'll remove
    graph.add_vertex(
        "Person",
        HashMap::from([
            ("name".to_string(), Value::String("Alice".to_string())),
            ("temp1".to_string(), Value::Int(1)),
            ("temp2".to_string(), Value::Int(2)),
        ]),
    );

    // Use FOREACH to remove properties (by setting to null)
    // Note: FOREACH must come after at least one mutation clause per grammar
    execute_gql(
        &graph,
        r#"
        MATCH (p:Person {name: 'Alice'})
        SET p.marker = true
        FOREACH (prop IN [1, 2] | REMOVE p.temp1)
        "#,
    )
    .unwrap();

    let alice = graph
        .snapshot()
        .all_vertices()
        .next()
        .expect("Alice should exist");
    // temp1 should be set to null (our REMOVE implementation)
    assert_eq!(alice.properties.get("temp1"), Some(&Value::Null));
}

#[test]
fn test_foreach_multiple_mutations() {
    let graph = Arc::new(Graph::new());

    // Create vertices
    graph.add_vertex(
        "Person",
        HashMap::from([("name".to_string(), Value::String("Alice".to_string()))]),
    );
    graph.add_vertex(
        "Person",
        HashMap::from([("name".to_string(), Value::String("Bob".to_string()))]),
    );

    // Use FOREACH with multiple SET operations
    // Note: FOREACH must come after at least one mutation clause per grammar
    execute_gql(
        &graph,
        r#"
        MATCH (p:Person {name: 'Alice'})
        SET p.marker = true
        FOREACH (i IN [1, 2] | SET p.a = i, p.b = i * 10)
        "#,
    )
    .unwrap();

    let alice = graph
        .snapshot()
        .all_vertices()
        .find(|v| v.properties.get("name") == Some(&Value::String("Alice".to_string())))
        .expect("Alice should exist");
    // Last iteration: i=2, so a=2, b=20
    assert_eq!(alice.properties.get("a"), Some(&Value::Int(2)));
    assert_eq!(alice.properties.get("b"), Some(&Value::Int(20)));
}

#[test]
fn test_foreach_empty_list() {
    let graph = Arc::new(Graph::new());

    graph.add_vertex(
        "Person",
        HashMap::from([("name".to_string(), Value::String("Alice".to_string()))]),
    );

    // FOREACH with empty list should be a no-op
    // Note: FOREACH must come after at least one mutation clause per grammar
    let result = execute_gql(
        &graph,
        r#"
        MATCH (p:Person {name: 'Alice'})
        SET p.marker = true
        FOREACH (i IN [] | SET p.updated = true)
        RETURN p.name
        "#,
    );

    assert!(result.is_ok());

    let alice = graph
        .snapshot()
        .all_vertices()
        .next()
        .expect("Alice should exist");
    // marker should be set, but updated should not be since list was empty
    assert_eq!(alice.properties.get("marker"), Some(&Value::Bool(true)));
    assert_eq!(alice.properties.get("updated"), None);
}

#[test]
fn test_foreach_null_list() {
    let graph = Arc::new(Graph::new());

    graph.add_vertex(
        "Person",
        HashMap::from([
            ("name".to_string(), Value::String("Alice".to_string())),
            ("items".to_string(), Value::Null),
        ]),
    );

    // FOREACH with null list should be a no-op (not an error)
    // Note: FOREACH must come after at least one mutation clause per grammar
    let result = execute_gql(
        &graph,
        r#"
        MATCH (p:Person {name: 'Alice'})
        SET p.marker = true
        FOREACH (i IN p.items | SET p.processed = true)
        RETURN p.name
        "#,
    );

    assert!(result.is_ok());

    let alice = graph
        .snapshot()
        .all_vertices()
        .next()
        .expect("Alice should exist");
    // marker should be set, but processed should not since list was null
    assert_eq!(alice.properties.get("marker"), Some(&Value::Bool(true)));
    assert_eq!(alice.properties.get("processed"), None);
}

#[test]
fn test_foreach_non_list_error() {
    let graph = Arc::new(Graph::new());

    graph.add_vertex(
        "Person",
        HashMap::from([
            ("name".to_string(), Value::String("Alice".to_string())),
            ("age".to_string(), Value::Int(30)),
        ]),
    );

    // FOREACH with non-list expression should fail
    // Note: FOREACH must come after at least one mutation clause per grammar
    let result = execute_gql(
        &graph,
        r#"
        MATCH (p:Person {name: 'Alice'})
        SET p.marker = true
        FOREACH (i IN p.age | SET p.processed = true)
        "#,
    );

    assert!(result.is_err());
}

#[test]
fn test_foreach_variable_scope() {
    let graph = Arc::new(Graph::new());

    graph.add_vertex(
        "Person",
        HashMap::from([("name".to_string(), Value::String("Alice".to_string()))]),
    );

    // Test that the FOREACH variable is available inside the mutations
    // Note: FOREACH must come after at least one mutation clause per grammar
    let result = execute_gql(
        &graph,
        r#"
        MATCH (p:Person {name: 'Alice'})
        SET p.marker = true
        FOREACH (x IN [100, 200, 300] | SET p.value = x)
        RETURN p.value
        "#,
    );

    assert!(result.is_ok());
    let results = result.unwrap();
    assert_eq!(results.len(), 1);
    assert_eq!(results[0], Value::Int(300)); // Last value
}

#[test]
fn test_foreach_with_collected_list() {
    let graph = create_foreach_test_graph();

    // Use FOREACH with a collected list from a pattern
    // This test uses a standard MATCH + SET pattern since WITH...FOREACH is complex
    // Note: FOREACH must come after at least one mutation clause per grammar
    execute_gql(
        &graph,
        r#"
        MATCH (a:Person {name: 'Alice'})
        SET a.marker = true
        FOREACH (i IN [1, 2, 3] | SET a.lastValue = i)
        "#,
    )
    .unwrap();

    let alice = graph
        .snapshot()
        .all_vertices()
        .find(|v| v.properties.get("name") == Some(&Value::String("Alice".to_string())))
        .expect("Alice should exist");
    // Should have lastValue set to 3 (last iteration)
    assert_eq!(alice.properties.get("lastValue"), Some(&Value::Int(3)));
}

#[test]
fn test_foreach_mark_friends_visited() {
    let graph = create_foreach_test_graph();

    // A practical use case: mark all friends of Alice as visited
    execute_gql(
        &graph,
        r#"
        MATCH (a:Person {name: 'Alice'})-[:KNOWS]->(friend:Person)
        SET friend.visited = true
        "#,
    )
    .unwrap();

    // Bob and Charlie should be marked as visited
    let bob = graph
        .snapshot()
        .all_vertices()
        .find(|v| v.properties.get("name") == Some(&Value::String("Bob".to_string())))
        .expect("Bob should exist");
    assert_eq!(bob.properties.get("visited"), Some(&Value::Bool(true)));

    let charlie = graph
        .snapshot()
        .all_vertices()
        .find(|v| v.properties.get("name") == Some(&Value::String("Charlie".to_string())))
        .expect("Charlie should exist");
    assert_eq!(charlie.properties.get("visited"), Some(&Value::Bool(true)));

    // Alice should NOT be marked as visited (she was not a friend in the pattern)
    let alice = graph
        .snapshot()
        .all_vertices()
        .find(|v| v.properties.get("name") == Some(&Value::String("Alice".to_string())))
        .expect("Alice should exist");
    assert_eq!(alice.properties.get("visited"), Some(&Value::Bool(false)));
}

#[test]
fn test_foreach_nested_iteration() {
    let graph = Arc::new(Graph::new());

    graph.add_vertex(
        "Counter",
        HashMap::from([
            ("name".to_string(), Value::String("counter".to_string())),
            ("value".to_string(), Value::Int(0)),
        ]),
    );

    // Nested FOREACH to multiply iterations
    // Note: FOREACH must come after at least one mutation clause per grammar
    execute_gql(
        &graph,
        r#"
        MATCH (c:Counter)
        SET c.marker = true
        FOREACH (x IN [1, 2] | FOREACH (y IN [10, 20] | SET c.value = x * y))
        "#,
    )
    .unwrap();

    let counter = graph
        .snapshot()
        .all_vertices()
        .next()
        .expect("Counter should exist");
    // Last iteration: x=2, y=20, so value = 40
    assert_eq!(counter.properties.get("value"), Some(&Value::Int(40)));
}