tellaro-query-language 2.0.0

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

use serde_json::json;
use tellaro_query_language::Tql;

// =============================================================================
// regexp operator (Python syntax)
// =============================================================================

/// Test regexp operator (Python's primary regex syntax)
#[test]
fn test_regexp_operator() {
    let tql = Tql::new();
    let data = vec![
        json!({"email": "alice@example.com"}),
        json!({"email": "bob@test.org"}),
        json!({"email": "invalid"}),
    ];

    let results = tql
        .query(&data, "email regexp '.*@example\\.com$'")
        .expect("Query should succeed");
    assert_eq!(results.len(), 1);
    assert_eq!(
        results[0].get("email").and_then(|v| v.as_str()),
        Some("alice@example.com")
    );
}

/// Test regexp with different patterns
#[test]
fn test_regexp_patterns() {
    let tql = Tql::new();
    let data = vec![
        json!({"name": "Alice"}),
        json!({"name": "Bob"}),
        json!({"name": "Charlie"}),
    ];

    // Pattern matching names starting with A or B
    let results = tql
        .query(&data, "name regexp '^[AB]'")
        .expect("Query should succeed");
    assert_eq!(results.len(), 2);
}

/// Test regexp case sensitivity
#[test]
fn test_regexp_case_sensitivity() {
    let tql = Tql::new();
    let data = vec![
        json!({"status": "ERROR"}),
        json!({"status": "error"}),
        json!({"status": "Error"}),
    ];

    // Case-insensitive pattern using (?i)
    let results = tql
        .query(&data, "status regexp '(?i)error'")
        .expect("Query should succeed");
    assert_eq!(results.len(), 3);
}

// =============================================================================
// not regexp operator
// =============================================================================

/// Test not regexp operator
#[test]
fn test_not_regexp_operator() {
    let tql = Tql::new();
    let data = vec![
        json!({"email": "alice@example.com"}),
        json!({"email": "bob@test.org"}),
        json!({"email": "invalid"}),
    ];

    let results = tql
        .query(&data, "email not regexp '.*@example\\.com$'")
        .expect("Query should succeed");
    assert_eq!(results.len(), 2);
}

/// Test !regexp operator (bang prefix)
#[test]
fn test_bang_regexp_operator() {
    let tql = Tql::new();
    let data = vec![json!({"name": "Alice"}), json!({"name": "Bob"})];

    let results = tql
        .query(&data, "name !regexp '^A'")
        .expect("Query should succeed");
    assert_eq!(results.len(), 1);
    assert_eq!(results[0].get("name").and_then(|v| v.as_str()), Some("Bob"));
}

// =============================================================================
// `regex` alias — three negated spellings (Rust accepts all; #109 ensures
// Python now matches). Pin Rust behavior so a future grammar tweak can't
// silently drop one of the spellings.
// =============================================================================

/// Test `not_regex` underscore alias — Rust grammar.pest:71 accepts this as
/// a third spelling of `not_matches`/`not_regexp`.
#[test]
fn test_not_regex_underscore_operator() {
    let tql = Tql::new();
    let data = vec![json!({"name": "Alice"}), json!({"name": "Bob"})];

    let results = tql
        .query(&data, "name not_regex '^A'")
        .expect("Query should succeed");
    assert_eq!(results.len(), 1);
    assert_eq!(results[0].get("name").and_then(|v| v.as_str()), Some("Bob"));
}

/// Test `not regex` two-word form.
#[test]
fn test_not_regex_two_word_operator() {
    let tql = Tql::new();
    let data = vec![json!({"name": "Alice"}), json!({"name": "Bob"})];

    let results = tql
        .query(&data, "name not regex '^A'")
        .expect("Query should succeed");
    assert_eq!(results.len(), 1);
    assert_eq!(results[0].get("name").and_then(|v| v.as_str()), Some("Bob"));
}

/// Test `!regex` bang form.
#[test]
fn test_bang_regex_operator() {
    let tql = Tql::new();
    let data = vec![json!({"name": "Alice"}), json!({"name": "Bob"})];

    let results = tql
        .query(&data, "name !regex '^A'")
        .expect("Query should succeed");
    assert_eq!(results.len(), 1);
    assert_eq!(results[0].get("name").and_then(|v| v.as_str()), Some("Bob"));
}

// =============================================================================
// between X and Y syntax (natural syntax)
// =============================================================================

/// Test between with natural "X and Y" syntax
#[test]
fn test_between_natural_syntax() {
    let tql = Tql::new();
    let data = vec![json!({"age": 20}), json!({"age": 30}), json!({"age": 40})];

    let results = tql
        .query(&data, "age between 25 and 35")
        .expect("Query should succeed");
    assert_eq!(results.len(), 1);
    assert_eq!(results[0].get("age").and_then(|v| v.as_i64()), Some(30));
}

/// Test between with list syntax still works
#[test]
fn test_between_list_syntax_still_works() {
    let tql = Tql::new();
    let data = vec![json!({"age": 20}), json!({"age": 30}), json!({"age": 40})];

    let results = tql
        .query(&data, "age between [25, 35]")
        .expect("Query should succeed");
    assert_eq!(results.len(), 1);
    assert_eq!(results[0].get("age").and_then(|v| v.as_i64()), Some(30));
}

/// Test not between with natural syntax
#[test]
fn test_not_between_natural_syntax() {
    let tql = Tql::new();
    let data = vec![json!({"age": 20}), json!({"age": 30}), json!({"age": 40})];

    let results = tql
        .query(&data, "age not between 25 and 35")
        .expect("Query should succeed");
    assert_eq!(results.len(), 2);
}

/// Test between with string values
#[test]
fn test_between_string_values() {
    let tql = Tql::new();
    let data = vec![
        json!({"score": "50"}),
        json!({"score": "75"}),
        json!({"score": "100"}),
    ];

    let results = tql
        .query(&data, "score between 60 and 90")
        .expect("Query should succeed");
    assert_eq!(results.len(), 1);
    assert_eq!(results[0].get("score").and_then(|v| v.as_str()), Some("75"));
}

// =============================================================================
// not exists with space
// =============================================================================

/// Test "not exists" with space (Python syntax)
#[test]
fn test_not_exists_with_space() {
    let tql = Tql::new();
    let data = vec![
        json!({"name": "Alice", "email": "alice@test.com"}),
        json!({"name": "Bob"}), // Missing email
    ];

    let results = tql
        .query(&data, "email not exists")
        .expect("Query should succeed");
    assert_eq!(results.len(), 1);
    assert_eq!(results[0].get("name").and_then(|v| v.as_str()), Some("Bob"));
}

/// Test not_exists with underscore still works
#[test]
fn test_not_exists_underscore_still_works() {
    let tql = Tql::new();
    let data = vec![
        json!({"name": "Alice", "email": "alice@test.com"}),
        json!({"name": "Bob"}),
    ];

    let results = tql
        .query(&data, "email not_exists")
        .expect("Query should succeed");
    assert_eq!(results.len(), 1);
}

/// Test !exists still works
#[test]
fn test_bang_exists_still_works() {
    let tql = Tql::new();
    let data = vec![
        json!({"name": "Alice", "email": "alice@test.com"}),
        json!({"name": "Bob"}),
    ];

    let results = tql
        .query(&data, "email !exists")
        .expect("Query should succeed");
    assert_eq!(results.len(), 1);
}

// =============================================================================
// Negated string operators with space
// =============================================================================

/// Test "not contains" with space
#[test]
fn test_not_contains_with_space() {
    let tql = Tql::new();
    let data = vec![
        json!({"message": "Error occurred"}),
        json!({"message": "Success"}),
    ];

    let results = tql
        .query(&data, "message not contains 'Error'")
        .expect("Query should succeed");
    assert_eq!(results.len(), 1);
    assert_eq!(
        results[0].get("message").and_then(|v| v.as_str()),
        Some("Success")
    );
}

/// Test !contains (bang prefix)
#[test]
fn test_bang_contains() {
    let tql = Tql::new();
    let data = vec![
        json!({"message": "Error occurred"}),
        json!({"message": "Success"}),
    ];

    let results = tql
        .query(&data, "message !contains 'Error'")
        .expect("Query should succeed");
    assert_eq!(results.len(), 1);
}

/// Test "not startswith" with space
#[test]
fn test_not_startswith_with_space() {
    let tql = Tql::new();
    let data = vec![json!({"path": "/api/users"}), json!({"path": "/web/home"})];

    let results = tql
        .query(&data, "path not startswith '/api'")
        .expect("Query should succeed");
    assert_eq!(results.len(), 1);
    assert_eq!(
        results[0].get("path").and_then(|v| v.as_str()),
        Some("/web/home")
    );
}

/// Test !startswith (bang prefix)
#[test]
fn test_bang_startswith() {
    let tql = Tql::new();
    let data = vec![json!({"path": "/api/users"}), json!({"path": "/web/home"})];

    let results = tql
        .query(&data, "path !startswith '/api'")
        .expect("Query should succeed");
    assert_eq!(results.len(), 1);
}

/// Test "not endswith" with space
#[test]
fn test_not_endswith_with_space() {
    let tql = Tql::new();
    let data = vec![json!({"file": "data.json"}), json!({"file": "data.csv"})];

    let results = tql
        .query(&data, "file not endswith '.json'")
        .expect("Query should succeed");
    assert_eq!(results.len(), 1);
    assert_eq!(
        results[0].get("file").and_then(|v| v.as_str()),
        Some("data.csv")
    );
}

/// Test !endswith (bang prefix)
#[test]
fn test_bang_endswith() {
    let tql = Tql::new();
    let data = vec![json!({"file": "data.json"}), json!({"file": "data.csv"})];

    let results = tql
        .query(&data, "file !endswith '.json'")
        .expect("Query should succeed");
    assert_eq!(results.len(), 1);
}

// =============================================================================
// Type hints with longer names
// =============================================================================

/// Test ::integer type hint (longer form)
#[test]
fn test_integer_type_hint() {
    let tql = Tql::new();
    let data = vec![json!({"value": "100"}), json!({"value": "50"})];

    let results = tql
        .query(&data, "value::integer > 75")
        .expect("Query should succeed");
    assert_eq!(results.len(), 1);
    assert_eq!(
        results[0].get("value").and_then(|v| v.as_str()),
        Some("100")
    );
}

/// Test ::boolean type hint (longer form)
#[test]
fn test_boolean_type_hint() {
    let tql = Tql::new();
    let data = vec![json!({"enabled": "true"}), json!({"enabled": "false"})];

    let results = tql
        .query(&data, "enabled::boolean = true")
        .expect("Query should succeed");
    assert!(!results.is_empty());
}

/// Test ::number type hint (Python's generic numeric type)
#[test]
fn test_number_type_hint() {
    let tql = Tql::new();
    let data = vec![json!({"value": "100"}), json!({"value": "50"})];

    let results = tql
        .query(&data, "value::number > 75")
        .expect("Query should succeed");
    assert_eq!(results.len(), 1);
}

/// Test ::decimal type hint
#[test]
fn test_decimal_type_hint() {
    let tql = Tql::new();
    let data = vec![json!({"price": "99.99"}), json!({"price": "49.99"})];

    let results = tql
        .query(&data, "price::decimal > 75.0")
        .expect("Query should succeed");
    assert_eq!(results.len(), 1);
}

// =============================================================================
// Negated collection operators with space
// =============================================================================

/// Test "not in" with space
#[test]
fn test_not_in_with_space() {
    let tql = Tql::new();
    let data = vec![
        json!({"status": "active"}),
        json!({"status": "pending"}),
        json!({"status": "archived"}),
    ];

    let results = tql
        .query(&data, "status not in ['active', 'pending']")
        .expect("Query should succeed");
    assert_eq!(results.len(), 1);
    assert_eq!(
        results[0].get("status").and_then(|v| v.as_str()),
        Some("archived")
    );
}

/// Test "not cidr" with space
#[test]
fn test_not_cidr_with_space() {
    let tql = Tql::new();
    let data = vec![json!({"ip": "192.168.1.1"}), json!({"ip": "10.0.0.1"})];

    let results = tql
        .query(&data, "ip not cidr '192.168.0.0/16'")
        .expect("Query should succeed");
    assert_eq!(results.len(), 1);
    assert_eq!(
        results[0].get("ip").and_then(|v| v.as_str()),
        Some("10.0.0.1")
    );
}

// =============================================================================
// Complex queries combining new features
// =============================================================================

/// Test combining regexp with logical operators
#[test]
fn test_regexp_with_logical_operators() {
    let tql = Tql::new();
    let data = vec![
        json!({"email": "admin@example.com", "active": true}),
        json!({"email": "user@example.com", "active": false}),
        json!({"email": "guest@test.org", "active": true}),
    ];

    let results = tql
        .query(&data, "email regexp '@example\\.com$' and active = true")
        .expect("Query should succeed");
    assert_eq!(results.len(), 1);
}

/// Test combining not operators in complex query
#[test]
fn test_complex_not_operators() {
    let tql = Tql::new();
    let data = vec![
        json!({"name": "Alice", "role": "admin", "age": 30}),
        json!({"name": "Bob", "role": "user", "age": 25}),
        json!({"name": "Charlie", "role": "guest", "age": 40}),
    ];

    let results = tql
        .query(
            &data,
            "role not in ['admin', 'guest'] and age between 20 and 30",
        )
        .expect("Query should succeed");
    assert_eq!(results.len(), 1);
    assert_eq!(results[0].get("name").and_then(|v| v.as_str()), Some("Bob"));
}

/// Test between natural syntax with type hints
#[test]
fn test_between_with_type_hint() {
    let tql = Tql::new();
    let data = vec![
        json!({"score": "50"}),
        json!({"score": "75"}),
        json!({"score": "100"}),
    ];

    let results = tql
        .query(&data, "score::number between 60 and 90")
        .expect("Query should succeed");
    assert_eq!(results.len(), 1);
}

// =============================================================================
// Field-first collection operators (Python syntax)
// =============================================================================

/// Test "tags any 'value'" syntax (Python style)
#[test]
fn test_field_first_any_operator() {
    let tql = Tql::new();
    let data = vec![
        json!({"tags": ["python", "rust"]}),
        json!({"tags": ["javascript"]}),
        json!({"tags": []}),
    ];

    let results = tql
        .query(&data, "tags any 'python'")
        .expect("Query should succeed");
    assert_eq!(results.len(), 1);
}

/// Test "tags all 'value'" syntax (Python style)
#[test]
fn test_field_first_all_operator() {
    let tql = Tql::new();
    let data = vec![
        json!({"tags": ["admin", "admin"]}),
        json!({"tags": ["admin", "user"]}),
        json!({"tags": ["user"]}),
    ];

    // ALL with single value means all elements equal that value
    let results = tql
        .query(&data, "tags all 'admin'")
        .expect("Query should succeed");
    assert_eq!(results.len(), 1);
}

/// Test "tags none 'value'" syntax (Python style)
#[test]
fn test_field_first_none_operator() {
    let tql = Tql::new();
    let data = vec![
        json!({"tags": ["python", "rust"]}),
        json!({"tags": ["javascript"]}),
        json!({"tags": []}),
    ];

    let results = tql
        .query(&data, "tags none 'python'")
        .expect("Query should succeed");
    assert_eq!(results.len(), 2); // javascript and empty array
}

/// Test "not tags any 'value'" syntax (Python style)
#[test]
fn test_not_field_first_any_operator() {
    let tql = Tql::new();
    let data = vec![
        json!({"tags": ["python", "rust"]}),
        json!({"tags": ["javascript"]}),
    ];

    let results = tql
        .query(&data, "not tags any 'python'")
        .expect("Query should succeed");
    assert_eq!(results.len(), 1);
    assert_eq!(
        results[0]
            .get("tags")
            .and_then(|v| v.as_array())
            .map(|a| a.len()),
        Some(1)
    );
}

/// Test field-first syntax with quoted strings
#[test]
fn test_field_first_any_with_quoted_string() {
    let tql = Tql::new();
    let data = vec![
        json!({"roles": ["admin", "editor"]}),
        json!({"roles": ["viewer"]}),
    ];

    let results = tql
        .query(&data, r#"roles any "admin""#)
        .expect("Query should succeed");
    assert_eq!(results.len(), 1);
}

/// Test field-first syntax combined with other conditions
#[test]
fn test_field_first_any_with_and() {
    let tql = Tql::new();
    let data = vec![
        json!({"tags": ["python"], "active": true}),
        json!({"tags": ["python"], "active": false}),
        json!({"tags": ["javascript"], "active": true}),
    ];

    let results = tql
        .query(&data, "tags any 'python' and active = true")
        .expect("Query should succeed");
    assert_eq!(results.len(), 1);
}

/// Test both syntaxes produce same results (field-first vs operator-first)
#[test]
fn test_both_collection_syntaxes_equivalent() {
    let tql = Tql::new();
    let data = vec![
        json!({"tags": ["python", "rust"]}),
        json!({"tags": ["javascript"]}),
        json!({"tags": []}),
    ];

    // Python style: tags any 'python'
    let results_python = tql
        .query(&data, "tags any 'python'")
        .expect("Query should succeed");

    // Rust style: any tags eq 'python'
    let results_rust = tql
        .query(&data, "any tags eq 'python'")
        .expect("Query should succeed");

    assert_eq!(results_python.len(), results_rust.len());
}

// =============================================================================
// Additional IS operator variants
// =============================================================================

/// Test "field is null" syntax
#[test]
fn test_is_null() {
    let tql = Tql::new();
    let data = vec![
        json!({"value": null}),
        json!({"value": "something"}),
        json!({"other": "field"}), // missing value
    ];

    // `is null` means HAS NO VALUE -- absent OR explicitly null -- so it covers
    // the null record AND the record with no `value` key. Was 1 under the
    // previous three-state model, in which the third record satisfied neither
    // `value is null` nor `value is not null`.
    let results = tql
        .query(&data, "value is null")
        .expect("Query should succeed");
    assert_eq!(results.len(), 2);
}

/// Test "field is not null" syntax
#[test]
fn test_is_not_null() {
    let tql = Tql::new();
    let data = vec![json!({"value": null}), json!({"value": "something"})];

    let results = tql
        .query(&data, "value is not null")
        .expect("Query should succeed");
    assert_eq!(results.len(), 1);
    assert_eq!(
        results[0].get("value").and_then(|v| v.as_str()),
        Some("something")
    );
}

/// Test `is_not null` single-token underscore alias — Rust grammar.pest:88
/// accepts both `is not` (two-token) and `is_not` (single-token). Regression
/// pin for #109: Python now accepts the underscore form too.
#[test]
fn test_is_not_null_underscore() {
    let tql = Tql::new();
    let data = vec![json!({"value": null}), json!({"value": "something"})];

    let results = tql
        .query(&data, "value is_not null")
        .expect("Query should succeed");
    assert_eq!(results.len(), 1);
    assert_eq!(
        results[0].get("value").and_then(|v| v.as_str()),
        Some("something")
    );
}

// =============================================================================
// 'value' in field syntax (Python syntax for checking value in array)
// =============================================================================

/// Test 'value' in field syntax for array membership check
#[test]
fn test_value_in_field_basic() {
    let tql = Tql::new();
    let data = vec![
        json!({"tags": ["python", "rust", "go"]}),
        json!({"tags": ["javascript", "typescript"]}),
        json!({"tags": []}),
    ];

    let results = tql
        .query(&data, "'python' in tags")
        .expect("Query should succeed");
    assert_eq!(results.len(), 1);
    assert_eq!(
        results[0]
            .get("tags")
            .and_then(|v| v.as_array())
            .map(|a| a.len()),
        Some(3)
    );
}

/// Test 'value' in field with double quoted string
#[test]
fn test_value_in_field_double_quotes() {
    let tql = Tql::new();
    let data = vec![
        json!({"roles": ["admin", "user"]}),
        json!({"roles": ["user"]}),
    ];

    let results = tql
        .query(&data, r#""admin" in roles"#)
        .expect("Query should succeed");
    assert_eq!(results.len(), 1);
}

/// Test 'value' in field with nested field
#[test]
fn test_value_in_nested_field() {
    let tql = Tql::new();
    let data = vec![
        json!({"user": {"permissions": ["read", "write", "delete"]}}),
        json!({"user": {"permissions": ["read"]}}),
    ];

    let results = tql
        .query(&data, "'write' in user.permissions")
        .expect("Query should succeed");
    assert_eq!(results.len(), 1);
}

/// Test 'value' in field combined with AND
#[test]
fn test_value_in_field_with_and() {
    let tql = Tql::new();
    let data = vec![
        json!({"tags": ["python"], "active": true}),
        json!({"tags": ["python"], "active": false}),
        json!({"tags": ["rust"], "active": true}),
    ];

    let results = tql
        .query(&data, "'python' in tags and active = true")
        .expect("Query should succeed");
    assert_eq!(results.len(), 1);
}

/// Test 'value' in field is equivalent to 'tags any value'
#[test]
fn test_value_in_field_equivalent_to_any() {
    let tql = Tql::new();
    let data = vec![
        json!({"categories": ["tech", "science", "art"]}),
        json!({"categories": ["sports", "news"]}),
    ];

    // Python reversed syntax: 'value' in field
    let results_in = tql
        .query(&data, "'tech' in categories")
        .expect("Query should succeed");

    // Field-first syntax: field any 'value'
    let results_any = tql
        .query(&data, "categories any 'tech'")
        .expect("Query should succeed");

    assert_eq!(results_in.len(), results_any.len());
    assert_eq!(results_in.len(), 1);
}

/// Test 'value' in field with numeric value
#[test]
fn test_value_in_field_numeric() {
    let tql = Tql::new();
    let data = vec![
        json!({"codes": [100, 200, 300]}),
        json!({"codes": [400, 500]}),
    ];

    let results = tql
        .query(&data, "200 in codes")
        .expect("Query should succeed");
    assert_eq!(results.len(), 1);
}

// =============================================================================
// Symbolic logical operators (&& and ||)
// =============================================================================

/// Test && operator (symbolic AND)
#[test]
fn test_symbolic_and_operator() {
    let tql = Tql::new();
    let data = vec![
        json!({"name": "Alice", "active": true}),
        json!({"name": "Bob", "active": false}),
        json!({"name": "Charlie", "active": true}),
    ];

    let results = tql
        .query(&data, "name startswith 'A' && active = true")
        .expect("Query should succeed");
    assert_eq!(results.len(), 1);
    assert_eq!(
        results[0].get("name").and_then(|v| v.as_str()),
        Some("Alice")
    );
}

/// Test || operator (symbolic OR)
#[test]
fn test_symbolic_or_operator() {
    let tql = Tql::new();
    let data = vec![
        json!({"status": "active"}),
        json!({"status": "pending"}),
        json!({"status": "inactive"}),
    ];

    let results = tql
        .query(&data, "status = 'active' || status = 'pending'")
        .expect("Query should succeed");
    assert_eq!(results.len(), 2);
}

/// Test mixed symbolic and keyword operators
#[test]
fn test_mixed_symbolic_and_keyword_operators() {
    let tql = Tql::new();
    let data = vec![
        json!({"a": 1, "b": 2, "c": 3}),
        json!({"a": 1, "b": 2, "c": 4}),
        json!({"a": 2, "b": 2, "c": 3}),
    ];

    // Mix && with 'or'
    let results = tql
        .query(&data, "a = 1 && b = 2 or c = 4")
        .expect("Query should succeed");
    assert_eq!(results.len(), 2);
}

/// Test ! as NOT operator
#[test]
fn test_symbolic_not_operator() {
    let tql = Tql::new();
    let data = vec![json!({"active": true}), json!({"active": false})];

    let results = tql
        .query(&data, "!(active = true)")
        .expect("Query should succeed");
    assert_eq!(results.len(), 1);
    assert_eq!(
        results[0].get("active").and_then(|v| v.as_bool()),
        Some(false)
    );
}

/// Test complex expression with all symbolic operators
#[test]
fn test_all_symbolic_operators_combined() {
    let tql = Tql::new();
    let data = vec![
        json!({"x": 1, "y": 2, "z": 3}),
        json!({"x": 1, "y": 3, "z": 3}),
        json!({"x": 2, "y": 2, "z": 4}),
    ];

    // (x = 1 && y = 2) || !(z = 3)
    let results = tql
        .query(&data, "(x = 1 && y = 2) || !(z = 3)")
        .expect("Query should succeed");
    assert_eq!(results.len(), 2); // First record matches first condition, third matches second
}

// =============================================================================
// Value in fields list syntax ('value' in [field1, field2])
// =============================================================================

/// Test value in fields list - basic case
#[test]
fn test_value_in_fields_list_basic() {
    let tql = Tql::new();
    let data = vec![
        json!({"role": "admin", "backup_role": "user"}),
        json!({"role": "user", "backup_role": "admin"}),
        json!({"role": "guest", "backup_role": "viewer"}),
    ];

    // 'admin' in [role, backup_role] should match first two records
    let results = tql
        .query(&data, "'admin' in [role, backup_role]")
        .expect("Query should succeed");
    assert_eq!(results.len(), 2);
}

/// Test value in fields list - single field
#[test]
fn test_value_in_fields_list_single_field() {
    let tql = Tql::new();
    let data = vec![json!({"status": "active"}), json!({"status": "inactive"})];

    let results = tql
        .query(&data, "'active' in [status]")
        .expect("Query should succeed");
    assert_eq!(results.len(), 1);
}

/// Test value in fields list - no matches
#[test]
fn test_value_in_fields_list_no_match() {
    let tql = Tql::new();
    let data = vec![json!({"a": "x", "b": "y", "c": "z"})];

    let results = tql
        .query(&data, "'not_found' in [a, b, c]")
        .expect("Query should succeed");
    assert_eq!(results.len(), 0);
}

/// Test value in fields list - with numeric value
#[test]
fn test_value_in_fields_list_numeric() {
    let tql = Tql::new();
    let data = vec![
        json!({"primary_code": 100, "secondary_code": 200}),
        json!({"primary_code": 300, "secondary_code": 100}),
        json!({"primary_code": 400, "secondary_code": 500}),
    ];

    let results = tql
        .query(&data, "100 in [primary_code, secondary_code]")
        .expect("Query should succeed");
    assert_eq!(results.len(), 2);
}

/// Test value in fields list - combined with AND
#[test]
fn test_value_in_fields_list_with_and() {
    let tql = Tql::new();
    let data = vec![
        json!({"role": "admin", "backup_role": "user", "active": true}),
        json!({"role": "user", "backup_role": "admin", "active": false}),
        json!({"role": "guest", "backup_role": "viewer", "active": true}),
    ];

    let results = tql
        .query(&data, "'admin' in [role, backup_role] and active = true")
        .expect("Query should succeed");
    assert_eq!(results.len(), 1);
}

// =============================================================================
// NOT operator permutation tests (ported from Python)
// =============================================================================

/// Test NOT with equality operators
#[test]
fn test_not_eq_permutations() {
    let tql = Tql::new();
    let data = vec![
        json!({"role": "admin"}),
        json!({"role": "user"}),
        json!({"role": "guest"}),
    ];

    // Basic eq
    let results = tql
        .query(&data, "role eq 'admin'")
        .expect("Query should succeed");
    assert_eq!(results.len(), 1);

    // NOT eq
    let results = tql
        .query(&data, "not role eq 'admin'")
        .expect("Query should succeed");
    assert_eq!(results.len(), 2);

    // ne (built-in negation)
    let results = tql
        .query(&data, "role ne 'admin'")
        .expect("Query should succeed");
    assert_eq!(results.len(), 2);

    // NOT ne (double negation)
    let results = tql
        .query(&data, "not role ne 'admin'")
        .expect("Query should succeed");
    assert_eq!(results.len(), 1);
}

/// Test NOT with relational operators
#[test]
fn test_not_relational_permutations() {
    let tql = Tql::new();
    let data = vec![json!({"age": 25}), json!({"age": 30}), json!({"age": 35})];

    // gt
    let results = tql.query(&data, "age > 30").expect("Query should succeed");
    assert_eq!(results.len(), 1); // 35

    // NOT gt
    let results = tql
        .query(&data, "not age > 30")
        .expect("Query should succeed");
    assert_eq!(results.len(), 2); // 25, 30

    // gte
    let results = tql.query(&data, "age >= 30").expect("Query should succeed");
    assert_eq!(results.len(), 2); // 30, 35

    // NOT gte
    let results = tql
        .query(&data, "not age >= 30")
        .expect("Query should succeed");
    assert_eq!(results.len(), 1); // 25

    // lt
    let results = tql.query(&data, "age < 30").expect("Query should succeed");
    assert_eq!(results.len(), 1); // 25

    // NOT lt
    let results = tql
        .query(&data, "not age < 30")
        .expect("Query should succeed");
    assert_eq!(results.len(), 2); // 30, 35

    // lte
    let results = tql.query(&data, "age <= 30").expect("Query should succeed");
    assert_eq!(results.len(), 2); // 25, 30

    // NOT lte
    let results = tql
        .query(&data, "not age <= 30")
        .expect("Query should succeed");
    assert_eq!(results.len(), 1); // 35
}

/// Test NOT with string operators
#[test]
fn test_not_string_operator_permutations() {
    let tql = Tql::new();
    let data = vec![
        json!({"desc": "Senior developer"}),
        json!({"desc": "Junior developer"}),
        json!({"desc": "Team lead"}),
    ];

    // contains
    let results = tql
        .query(&data, "desc contains 'developer'")
        .expect("Query should succeed");
    assert_eq!(results.len(), 2);

    // NOT contains
    let results = tql
        .query(&data, "not desc contains 'developer'")
        .expect("Query should succeed");
    assert_eq!(results.len(), 1);

    // not contains (negated operator)
    let results = tql
        .query(&data, "desc not contains 'developer'")
        .expect("Query should succeed");
    assert_eq!(results.len(), 1);

    // NOT (not contains) - double negation
    let results = tql
        .query(&data, "not desc not contains 'developer'")
        .expect("Query should succeed");
    assert_eq!(results.len(), 2);

    // startswith
    let results = tql
        .query(&data, "desc startswith 'Senior'")
        .expect("Query should succeed");
    assert_eq!(results.len(), 1);

    // NOT startswith
    let results = tql
        .query(&data, "not desc startswith 'Senior'")
        .expect("Query should succeed");
    assert_eq!(results.len(), 2);

    // endswith
    let results = tql
        .query(&data, "desc endswith 'lead'")
        .expect("Query should succeed");
    assert_eq!(results.len(), 1);

    // NOT endswith
    let results = tql
        .query(&data, "not desc endswith 'lead'")
        .expect("Query should succeed");
    assert_eq!(results.len(), 2);
}

/// Test NOT with regexp operators
#[test]
fn test_not_regexp_permutations() {
    let tql = Tql::new();
    let data = vec![
        json!({"name": "Alice"}),
        json!({"name": "Bob"}),
        json!({"name": "Charlie"}),
    ];

    // regexp
    let results = tql
        .query(&data, "name regexp '^[AB]'")
        .expect("Query should succeed");
    assert_eq!(results.len(), 2); // Alice, Bob

    // NOT regexp
    let results = tql
        .query(&data, "not name regexp '^[AB]'")
        .expect("Query should succeed");
    assert_eq!(results.len(), 1); // Charlie

    // not regexp (negated operator)
    let results = tql
        .query(&data, "name not regexp '^[AB]'")
        .expect("Query should succeed");
    assert_eq!(results.len(), 1); // Charlie

    // NOT (not regexp) - double negation
    let results = tql
        .query(&data, "not name not regexp '^[AB]'")
        .expect("Query should succeed");
    assert_eq!(results.len(), 2); // Alice, Bob
}

/// Test NOT with between operators
#[test]
fn test_not_between_permutations() {
    let tql = Tql::new();
    let data = vec![json!({"age": 20}), json!({"age": 30}), json!({"age": 40})];

    // between (list syntax)
    let results = tql
        .query(&data, "age between [25, 35]")
        .expect("Query should succeed");
    assert_eq!(results.len(), 1); // 30

    // NOT between
    let results = tql
        .query(&data, "not age between [25, 35]")
        .expect("Query should succeed");
    assert_eq!(results.len(), 2); // 20, 40

    // not between (negated operator)
    let results = tql
        .query(&data, "age not between [25, 35]")
        .expect("Query should succeed");
    assert_eq!(results.len(), 2); // 20, 40

    // between (natural syntax)
    let results = tql
        .query(&data, "age between 25 and 35")
        .expect("Query should succeed");
    assert_eq!(results.len(), 1); // 30

    // NOT between (natural syntax)
    let results = tql
        .query(&data, "not age between 25 and 35")
        .expect("Query should succeed");
    assert_eq!(results.len(), 2); // 20, 40
}

/// Test NOT with CIDR operators
#[test]
fn test_not_cidr_permutations() {
    let tql = Tql::new();
    let data = vec![
        json!({"ip": "192.168.1.10"}),
        json!({"ip": "10.0.0.5"}),
        json!({"ip": "172.16.0.100"}),
    ];

    // cidr
    let results = tql
        .query(&data, "ip cidr '192.168.0.0/16'")
        .expect("Query should succeed");
    assert_eq!(results.len(), 1);

    // NOT cidr
    let results = tql
        .query(&data, "not ip cidr '192.168.0.0/16'")
        .expect("Query should succeed");
    assert_eq!(results.len(), 2);

    // not cidr (negated operator)
    let results = tql
        .query(&data, "ip not cidr '192.168.0.0/16'")
        .expect("Query should succeed");
    assert_eq!(results.len(), 2);
}

/// Test NOT with existence operators
#[test]
fn test_not_existence_permutations() {
    let tql = Tql::new();
    let data = vec![
        json!({"name": "Alice", "email": "alice@example.com"}),
        json!({"name": "Bob"}),
    ];

    // exists
    let results = tql
        .query(&data, "email exists")
        .expect("Query should succeed");
    assert_eq!(results.len(), 1);

    // NOT exists
    let results = tql
        .query(&data, "not email exists")
        .expect("Query should succeed");
    assert_eq!(results.len(), 1);

    // not exists (negated operator)
    let results = tql
        .query(&data, "email not exists")
        .expect("Query should succeed");
    assert_eq!(results.len(), 1);

    // NOT (not exists) - double negation
    let results = tql
        .query(&data, "not email not exists")
        .expect("Query should succeed");
    assert_eq!(results.len(), 1);
}

/// Test NOT with IS NULL operators
#[test]
fn test_not_is_null_permutations() {
    let tql = Tql::new();
    let data = vec![
        json!({"value": null}),
        json!({"value": "something"}),
        json!({"other": "field"}), // missing value field
    ];

    // `is null` HAS NO VALUE: the null record and the absent-key record. Was 1.
    let results = tql
        .query(&data, "value is null")
        .expect("Query should succeed");
    assert_eq!(results.len(), 2);

    // NOT is null == is not null == exists: only the record with a value. Was 2
    // -- and note `is not null` below already asserted 1, so the two spellings
    // openly disagreed about the absent-key record. That is the hole closed.
    let results = tql
        .query(&data, "not value is null")
        .expect("Query should succeed");
    assert_eq!(results.len(), 1);

    // is not null
    let results = tql
        .query(&data, "value is not null")
        .expect("Query should succeed");
    assert_eq!(results.len(), 1);

    // NOT (is not null) == is null
    let results = tql
        .query(&data, "not value is not null")
        .expect("Query should succeed");
    assert_eq!(results.len(), 2);
}

/// Test NOT with collection operators (any, all, none)
#[test]
fn test_not_collection_permutations() {
    let tql = Tql::new();
    let data = vec![
        json!({"tags": ["python", "rust"]}),
        json!({"tags": ["javascript"]}),
        json!({"tags": []}),
    ];

    // any
    let results = tql
        .query(&data, "tags any 'python'")
        .expect("Query should succeed");
    assert_eq!(results.len(), 1);

    // NOT any
    let results = tql
        .query(&data, "not tags any 'python'")
        .expect("Query should succeed");
    assert_eq!(results.len(), 2);

    // !any (bang prefix)
    let results = tql
        .query(&data, "tags !any 'python'")
        .expect("Query should succeed");
    assert_eq!(results.len(), 2);

    // not any (space syntax)
    let results = tql
        .query(&data, "tags not any 'python'")
        .expect("Query should succeed");
    assert_eq!(results.len(), 2);

    // none (equivalent to not any)
    let results = tql
        .query(&data, "tags none 'python'")
        .expect("Query should succeed");
    assert_eq!(results.len(), 2);

    // NOT none (double negation, equivalent to any)
    let results = tql
        .query(&data, "not tags none 'python'")
        .expect("Query should succeed");
    assert_eq!(results.len(), 1);
}

/// Test complex NOT expressions
#[test]
fn test_complex_not_expressions() {
    let tql = Tql::new();
    let data = vec![
        json!({"role": "admin", "age": 30, "active": true}),
        json!({"role": "user", "age": 25, "active": false}),
        json!({"role": "admin", "age": 35, "active": false}),
    ];

    // NOT with AND
    let results = tql
        .query(&data, "not role eq 'admin' and not age > 30")
        .expect("Query should succeed");
    assert_eq!(results.len(), 1); // user, age 25

    // NOT with OR
    let results = tql
        .query(&data, "not role eq 'admin' or not active is true")
        .expect("Query should succeed");
    assert_eq!(results.len(), 2);

    // NOT with complex AND expression
    let results = tql
        .query(&data, "not (role eq 'admin' and age > 30)")
        .expect("Query should succeed");
    assert_eq!(results.len(), 2); // excludes admin with age 35

    // NOT with complex OR expression
    let results = tql
        .query(&data, "not (role eq 'admin' or age < 27)")
        .expect("Query should succeed");
    assert_eq!(results.len(), 0); // all match either condition
}

/// Test multiple negation (Python supports 'not not expr' without parentheses)
#[test]
fn test_multiple_negation() {
    let tql = Tql::new();
    let data = vec![json!({"role": "admin"}), json!({"role": "user"})];

    // Double negation = original (now works without parentheses like Python)
    let results = tql
        .query(&data, "not not role eq 'admin'")
        .expect("Query should succeed");
    assert_eq!(results.len(), 1);

    // Triple negation = NOT original
    let results = tql
        .query(&data, "not not not role eq 'admin'")
        .expect("Query should succeed");
    assert_eq!(results.len(), 1);

    // Also test with parentheses (still supported)
    let results = tql
        .query(&data, "not (not (role eq 'admin'))")
        .expect("Query should succeed");
    assert_eq!(results.len(), 1);
}

// =============================================================================
// New Python Syntax Parity Tests
// =============================================================================

#[test]
fn test_stats_without_pipe_prefix() {
    let tql = Tql::new();
    let data = vec![
        json!({"category": "A", "value": 10}),
        json!({"category": "A", "value": 20}),
        json!({"category": "B", "value": 30}),
    ];

    // Python allows: stats count(*) without the pipe
    let result = tql
        .evaluate_stats(&data, "stats count(*)")
        .expect("Should parse stats without pipe");
    // Result should have results or value key
    assert!(result.get("results").is_some() || result.get("value").is_some());
}

#[test]
fn test_stats_without_pipe_with_aggregations() {
    let tql = Tql::new();
    let data = vec![
        json!({"value": 10}),
        json!({"value": 20}),
        json!({"value": 30}),
    ];

    // Multiple aggregations without pipe prefix
    let result = tql
        .evaluate_stats(&data, "stats sum(value), avg(value)")
        .expect("Should parse multiple stats");
    assert!(result.get("results").is_some() || result.get("value").is_some());
}

#[test]
fn test_stats_without_pipe_with_group_by() {
    let tql = Tql::new();
    let data = vec![
        json!({"category": "A", "value": 10}),
        json!({"category": "A", "value": 20}),
        json!({"category": "B", "value": 30}),
    ];

    // Group by without pipe prefix
    let result = tql
        .evaluate_stats(&data, "stats sum(value) by category")
        .expect("Should parse stats with group by");
    assert!(result.get("results").is_some() || result.get("value").is_some());
}

#[test]
fn test_python_style_tags_any_value() {
    let tql = Tql::new();
    let data = vec![
        json!({"name": "Alice", "tags": ["python", "rust"]}),
        json!({"name": "Bob", "tags": ["java"]}),
        json!({"name": "Charlie", "tags": []}),
    ];

    // Python syntax: tags any 'python' (implicit eq)
    let results = tql
        .query(&data, "tags any 'python'")
        .expect("Should parse Python-style collection");
    assert_eq!(results.len(), 1);
    assert_eq!(results[0]["name"], "Alice");
}

#[test]
fn test_python_style_tags_any_eq_value() {
    let tql = Tql::new();
    let data = vec![
        json!({"name": "Alice", "tags": ["python", "rust"]}),
        json!({"name": "Bob", "tags": ["java"]}),
    ];

    // Python syntax: tags any eq 'python' (explicit eq)
    let results = tql
        .query(&data, "tags any eq 'python'")
        .expect("Should parse Python-style collection with eq");
    assert_eq!(results.len(), 1);
    assert_eq!(results[0]["name"], "Alice");
}

#[test]
fn test_python_style_tags_any_contains() {
    let tql = Tql::new();
    let data = vec![
        json!({"name": "Alice", "tags": ["python", "rust"]}),
        json!({"name": "Bob", "tags": ["java"]}),
    ];

    // Python syntax: tags any contains 'py'
    let results = tql
        .query(&data, "tags any contains 'py'")
        .expect("Should parse Python-style with contains");
    assert_eq!(results.len(), 1);
    assert_eq!(results[0]["name"], "Alice");
}

#[test]
fn test_python_style_scores_all_gt() {
    let tql = Tql::new();
    let data = vec![
        json!({"name": "A", "scores": [80, 90, 85]}),
        json!({"name": "B", "scores": [50, 60, 70]}),
        json!({"name": "C", "scores": [90, 95, 100]}),
    ];

    // Python syntax: scores all gt 75
    let results = tql
        .query(&data, "scores all gt 75")
        .expect("Should parse Python-style all gt");
    assert_eq!(results.len(), 2); // A and C
}

#[test]
fn test_python_style_tags_none_eq() {
    let tql = Tql::new();
    let data = vec![
        json!({"name": "Alice", "tags": ["python", "rust"]}),
        json!({"name": "Bob", "tags": ["java"]}),
        json!({"name": "Charlie", "tags": []}),
    ];

    // Python syntax: tags none eq 'python'
    let results = tql
        .query(&data, "tags none eq 'python'")
        .expect("Should parse Python-style none eq");
    assert_eq!(results.len(), 2); // Bob and Charlie
}

#[test]
fn test_unquoted_cidr_notation() {
    let tql = Tql::new();
    let data = vec![
        json!({"ip": "192.168.1.100"}),
        json!({"ip": "10.0.0.5"}),
        json!({"ip": "192.168.50.1"}),
    ];

    // Unquoted CIDR notation (Python syntax)
    let results = tql
        .query(&data, "ip cidr 192.168.0.0/16")
        .expect("Should parse unquoted CIDR");
    assert_eq!(results.len(), 2); // Two IPs in 192.168.x.x range
}

#[test]
fn test_unquoted_cidr_not_operator() {
    let tql = Tql::new();
    let data = vec![
        json!({"ip": "192.168.1.100"}),
        json!({"ip": "10.0.0.5"}),
        json!({"ip": "192.168.50.1"}),
    ];

    // Unquoted CIDR with NOT
    let results = tql
        .query(&data, "ip not cidr 192.168.0.0/16")
        .expect("Should parse unquoted not cidr");
    assert_eq!(results.len(), 1); // Only 10.0.0.5
    assert_eq!(results[0]["ip"], "10.0.0.5");
}

#[test]
fn test_both_stats_syntaxes_work() {
    let tql = Tql::new();
    let data = vec![json!({"value": 10}), json!({"value": 20})];

    // With pipe
    let results1 = tql
        .evaluate_stats(&data, "| stats count(*)")
        .expect("Should work with pipe");
    // Without pipe
    let results2 = tql
        .evaluate_stats(&data, "stats count(*)")
        .expect("Should work without pipe");

    assert_eq!(results1[0]["count"], results2[0]["count"]);
}

#[test]
fn test_both_collection_syntaxes_work() {
    let tql = Tql::new();
    let data = vec![
        json!({"name": "Alice", "tags": ["python", "rust"]}),
        json!({"name": "Bob", "tags": ["java"]}),
    ];

    // Rust-style (operator first)
    let results1 = tql
        .query(&data, "any tags eq 'python'")
        .expect("Rust-style should work");
    // Python-style (field first)
    let results2 = tql
        .query(&data, "tags any 'python'")
        .expect("Python-style should work");

    assert_eq!(results1.len(), results2.len());
    assert_eq!(results1[0]["name"], results2[0]["name"]);
}

#[test]
fn test_python_style_collection_with_logical_operators() {
    let tql = Tql::new();
    let data = vec![
        json!({"name": "Alice", "tags": ["python", "rust"], "active": true}),
        json!({"name": "Bob", "tags": ["java"], "active": true}),
        json!({"name": "Charlie", "tags": ["python"], "active": false}),
    ];

    // Python-style collection with AND
    let results = tql
        .query(&data, "tags any 'python' AND active = true")
        .expect("Should work with AND");
    assert_eq!(results.len(), 1);
    assert_eq!(results[0]["name"], "Alice");
}

#[test]
fn test_python_style_not_any() {
    let tql = Tql::new();
    let data = vec![
        json!({"name": "Alice", "tags": ["python", "rust"]}),
        json!({"name": "Bob", "tags": ["java"]}),
    ];

    // Python syntax: tags not any 'python' (equivalent to tags none 'python')
    let results = tql
        .query(&data, "tags not any 'python'")
        .expect("Should parse not any");
    assert_eq!(results.len(), 1);
    assert_eq!(results[0]["name"], "Bob");
}

#[test]
fn test_python_style_bang_any() {
    let tql = Tql::new();
    let data = vec![
        json!({"name": "Alice", "tags": ["python", "rust"]}),
        json!({"name": "Bob", "tags": ["java"]}),
    ];

    // Python syntax: tags !any 'python' (equivalent to tags none 'python')
    let results = tql
        .query(&data, "tags !any 'python'")
        .expect("Should parse !any");
    assert_eq!(results.len(), 1);
    assert_eq!(results[0]["name"], "Bob");
}