liven 0.0.9

LIVEN is a fast, lightweight database built to capture, store, and stream data in real time.
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
use liven::executor::{
    apply_pipeline_stages_to_vec, compare_values, execute_query, extract_field, project_record,
};
use liven::parser::parse_query;
use liven::storage::StorageEngine;
use liven::types::{DataValue, FilterExpr, Op, PipelineStage, Query, Record};

#[test]
fn test_extract_field() {
    let value =
        DataValue::String(r#"{"status": "error", "code": 500, "healthy": false}"#.to_string());
    assert_eq!(
        extract_field(&value, "status"),
        Some(DataValue::String("error".to_string()))
    );
    assert_eq!(extract_field(&value, "code"), Some(DataValue::Int(500)));
    assert_eq!(
        extract_field(&value, "healthy"),
        Some(DataValue::Bool(false))
    );
    assert_eq!(extract_field(&value, "missing"), None);
}

#[test]
fn test_compare_values_coerced() {
    let int_val = DataValue::Int(100);
    let uint_val = DataValue::UInt(100);
    let float_val = DataValue::Float(ordered_float::OrderedFloat(100.0));
    let larger_float_val = DataValue::Float(ordered_float::OrderedFloat(100.1));

    assert!(compare_values(&int_val, Op::Eq, &uint_val));
    assert!(compare_values(&int_val, Op::Eq, &float_val));
    assert!(compare_values(&float_val, Op::Lt, &larger_float_val));
    assert!(compare_values(&int_val, Op::Lt, &larger_float_val));
}

#[test]
fn test_project_record() {
    let mut record = Record {
        sequence_id: 1,
        timestamp: 12345,
        type_tag: 5,
        flags: 1,
        stream_name: "logs".to_string(),
        key: liven::storage::key::StreamKey::from_str_truncated("key1"),
        value: DataValue::String(
            r#"{"user": "alice", "role": "admin", "ip": "1.1.1.1"}"#.to_string(),
        ),
    };

    project_record(
        &mut record,
        &["key".to_string(), "user".to_string(), "role".to_string()],
    );

    let value_str = match &record.value {
        DataValue::String(s) => s,
        _ => panic!("Expected DataValue::String"),
    };

    let parsed: serde_json::Value = serde_json::from_str(value_str).unwrap();
    assert_eq!(parsed.get("key").unwrap(), "key1");
    assert_eq!(parsed.get("user").unwrap(), "alice");
    assert_eq!(parsed.get("role").unwrap(), "admin");
    assert!(parsed.get("ip").is_none());
}

#[test]
fn test_delete_trash_execution() {
    let records = vec![
        Record {
            sequence_id: 1,
            timestamp: 100,
            type_tag: 1,
            flags: 0x01, // Active key
            stream_name: "logs".to_string(),
            key: liven::storage::key::StreamKey::from_str_truncated("k1"),
            value: DataValue::Int(10),
        },
        Record {
            sequence_id: 2,
            timestamp: 200,
            type_tag: 0,
            flags: 0x02, // Deleted value (key tombstone)
            stream_name: "logs".to_string(),
            key: liven::storage::key::StreamKey::from_str_truncated("k2"),
            value: DataValue::Null,
        },
        Record {
            sequence_id: 3,
            timestamp: 300,
            type_tag: 0,
            flags: 0x04, // Trashed stream & values
            stream_name: "logs".to_string(),
            key: liven::storage::key::StreamKey::from_str_truncated("*"),
            value: DataValue::Null,
        },
    ];

    let temp_dir = std::env::temp_dir().join(format!(
        "test_exec_{}",
        std::time::SystemTime::now()
            .duration_since(std::time::UNIX_EPOCH)
            .unwrap()
            .as_nanos()
    ));
    let engine = StorageEngine::new(&temp_dir, 1024 * 1024).unwrap();

    // Test Delete stage
    let mut d_records = records.clone();
    apply_pipeline_stages_to_vec(&mut d_records, &engine, &[PipelineStage::Delete]);
    assert_eq!(d_records.len(), 1);
    assert_eq!(d_records[0].key.as_str(), "k2");

    // Test Trash stage
    let mut t_records = records.clone();
    apply_pipeline_stages_to_vec(&mut t_records, &engine, &[PipelineStage::Trash]);
    assert_eq!(t_records.len(), 1);
    assert_eq!(t_records[0].key.as_str(), "*");

    let _ = std::fs::remove_dir_all(&temp_dir);
}

#[test]
fn test_pipeline_delete_optimizations() {
    let temp_dir = std::env::temp_dir().join(format!(
        "test_exec_del_opt_{}",
        std::time::SystemTime::now()
            .duration_since(std::time::UNIX_EPOCH)
            .unwrap()
            .as_nanos()
    ));
    let engine = StorageEngine::new(&temp_dir, 1024 * 1024).unwrap();

    // Seed initial records
    let _ = engine
        .append(
            "users",
            "user_1",
            DataValue::String(r#"{"status": "active"}"#.to_string()),
            false,
        )
        .unwrap();
    let _ = engine
        .append(
            "users",
            "user_2",
            DataValue::String(r#"{"status": "inactive"}"#.to_string()),
            false,
        )
        .unwrap();
    let _ = engine
        .append(
            "users",
            "user_3",
            DataValue::String(r#"{"status": "inactive"}"#.to_string()),
            false,
        )
        .unwrap();

    // 1. Test short-circuiting unique-key deletion when key doesn't exist
    let q_missing = Query::PipelineDelete {
        pipeline: vec![
            PipelineStage::From {
                stream_name: "users".to_string(),
            },
            PipelineStage::Get {
                key: "user_99".to_string(),
            },
        ],
    };
    let res_missing = execute_query(&engine, &q_missing).unwrap();
    assert_eq!(res_missing.len(), 1);
    let status_val = match &res_missing[0].value {
        DataValue::String(s) => s,
        _ => panic!("Expected status json"),
    };
    assert!(status_val.contains("\"affected_rows\": 0"));

    // 2. Test unique-key deletion when key exists but filter doesn't match
    let q_exists_filtered_out = Query::PipelineDelete {
        pipeline: vec![
            PipelineStage::From {
                stream_name: "users".to_string(),
            },
            PipelineStage::Get {
                key: "user_1".to_string(),
            },
            PipelineStage::Filter {
                expr: FilterExpr::Simple {
                    field: "status".to_string(),
                    operator: Op::Eq,
                    value: DataValue::String("inactive".to_string()),
                },
            },
        ],
    };
    let res_filtered_out = execute_query(&engine, &q_exists_filtered_out).unwrap();
    let status_val = match &res_filtered_out[0].value {
        DataValue::String(s) => s,
        _ => panic!("Expected status json"),
    };
    assert!(status_val.contains("\"affected_rows\": 0"));
    assert!(engine.get("users", "user_1").unwrap().is_some());

    // 3. Test unique-key deletion when key exists and filter matches
    let q_exists_matched = Query::PipelineDelete {
        pipeline: vec![
            PipelineStage::From {
                stream_name: "users".to_string(),
            },
            PipelineStage::Get {
                key: "user_1".to_string(),
            },
            PipelineStage::Filter {
                expr: FilterExpr::Simple {
                    field: "status".to_string(),
                    operator: Op::Eq,
                    value: DataValue::String("active".to_string()),
                },
            },
        ],
    };
    let res_matched = execute_query(&engine, &q_exists_matched).unwrap();
    let status_val = match &res_matched[0].value {
        DataValue::String(s) => s,
        _ => panic!("Expected status json"),
    };
    assert!(status_val.contains("\"affected_rows\": 1"));
    assert!(engine.get("users", "user_1").unwrap().is_none());

    // 4. Test scan-based bulk tombstone delete
    let q_bulk_inactive = Query::PipelineDelete {
        pipeline: vec![
            PipelineStage::From {
                stream_name: "users".to_string(),
            },
            PipelineStage::Filter {
                expr: FilterExpr::Simple {
                    field: "status".to_string(),
                    operator: Op::Eq,
                    value: DataValue::String("inactive".to_string()),
                },
            },
        ],
    };
    let res_bulk = execute_query(&engine, &q_bulk_inactive).unwrap();
    let status_val = match &res_bulk[0].value {
        DataValue::String(s) => s,
        _ => panic!("Expected status json"),
    };
    assert!(status_val.contains("\"affected_rows\": 2"));
    assert!(engine.get("users", "user_2").unwrap().is_none());
    assert!(engine.get("users", "user_3").unwrap().is_none());

    let _ = std::fs::remove_dir_all(&temp_dir);
}

#[test]
fn test_status_query() {
    let temp_dir = format!("./data_test_status_{}", std::process::id());
    let engine = StorageEngine::new(&temp_dir, 1024 * 1024)
        .unwrap()
        .with_max_connections(500)
        .with_broadcast_capacity(100);

    let res = execute_query(&engine, &Query::Status).unwrap();
    assert_eq!(res.len(), 1);
    assert_eq!(res[0].stream_name, "status");

    let val_str = match &res[0].value {
        DataValue::String(s) => s,
        _ => panic!("Expected DataValue::String"),
    };

    let metrics: serde_json::Value = serde_json::from_str(val_str).unwrap();
    assert_eq!(metrics["max_connections"], 500);
    assert_eq!(metrics["broadcast_capacity"], 100);
    assert_eq!(metrics["active_connections"], 0);

    // If we acquire a permit, active_connections increases
    let permit = engine.conn_semaphore.clone().try_acquire_owned().unwrap();
    let res_with_permit = execute_query(&engine, &Query::Status).unwrap();
    let val_str_2 = match &res_with_permit[0].value {
        DataValue::String(s) => s,
        _ => panic!("Expected DataValue::String"),
    };
    let metrics_2: serde_json::Value = serde_json::from_str(val_str_2).unwrap();
    assert_eq!(metrics_2["active_connections"], 1);

    drop(permit);

    let _ = std::fs::remove_dir_all(&temp_dir);
}

// ============ CORRELATE TESTS ============

#[test]
fn test_correlate_matches_within_window() {
    let thread_id = std::thread::current().id();
    let temp_dir = std::env::temp_dir().join(format!(
        "test_correlate_window_{:?}_{}",
        thread_id,
        std::time::SystemTime::now()
            .duration_since(std::time::UNIX_EPOCH)
            .unwrap()
            .as_nanos()
    ));
    let engine = StorageEngine::new(&temp_dir, 1024 * 1024).unwrap();

    // Setup: stream "transactions" with record at timestamp=1000, user_id="u1"
    let txn_val = r#"{"user_id": "u1", "amount": 50}"#;
    engine
        .append(
            "transactions",
            "txn_1",
            DataValue::String(txn_val.to_string()),
            false,
        )
        .unwrap();

    // Setup: stream "logins" with record at timestamp=800, user_id="u1"
    let login_val = r#"{"user_id": "u1", "ip": "192.168.1.1"}"#;
    engine
        .append(
            "logins",
            "login_1",
            DataValue::String(login_val.to_string()),
            false,
        )
        .unwrap();

    // Query: from("transactions") | correlate("logins", "user_id", within: 500)
    let query =
        parse_query("from(\"transactions\") | correlate(\"logins\", \"user_id\", within: 500)")
            .unwrap();
    let result = execute_query(&engine, &query).unwrap();

    // Assert: Result contains 1 record with correlated_count: 1
    assert_eq!(result.len(), 1);
    let val_str = match &result[0].value {
        DataValue::String(s) => s,
        _ => panic!("Expected DataValue::String"),
    };
    let parsed: serde_json::Value = serde_json::from_str(val_str).unwrap();
    assert_eq!(parsed["correlated_count"], 1);
    assert_eq!(parsed["user_id"], "u1");

    let _ = std::fs::remove_dir_all(&temp_dir);
}

#[test]
fn test_correlate_discards_outside_window() {
    let thread_id = std::thread::current().id();
    let temp_dir = std::env::temp_dir().join(format!(
        "test_correlate_outside_window_{:?}_{}",
        thread_id,
        std::time::SystemTime::now()
            .duration_since(std::time::UNIX_EPOCH)
            .unwrap()
            .as_nanos()
    ));
    let engine = StorageEngine::new(&temp_dir, 1024 * 1024).unwrap();

    // Use explicit timestamps via Record struct directly to test window boundary
    // Setup: stream "transactions" with record at timestamp=1000, user_id="u1"
    let txn = Record {
        sequence_id: 1,
        timestamp: 1000,
        type_tag: 5,
        flags: 0x01,
        stream_name: "transactions".to_string(),
        key: liven::storage::key::StreamKey::from_str_truncated("txn_1"),
        value: DataValue::String(r#"{"user_id": "u1"}"#.to_string()),
    };

    // Setup: stream "logins" with record at timestamp=200, user_id="u1" (outside 500ms window)

    // Apply Correlate stage via apply_pipeline_stages_to_vec with explicit timestamp records
    let mut records: Vec<Record> = vec![txn];
    // We also need the login record in the engine's historical scan, so append it
    engine
        .append(
            "logins",
            "login_1",
            DataValue::String(r#"{"user_id": "u1"}"#.to_string()),
            false,
        )
        .unwrap();

    let stages = vec![PipelineStage::Correlate {
        source_stream: "logins".to_string(),
        join_key: "user_id".to_string(),
        within_ms: 500,
    }];
    apply_pipeline_stages_to_vec(&mut records, &engine, &stages);

    // Assert: result is empty — login at timestamp 200 is outside the 500ms window of txn at 1000
    assert!(
        records.is_empty(),
        "Expected empty result, got {} records",
        records.len()
    );

    let _ = std::fs::remove_dir_all(&temp_dir);
}

#[test]
fn test_correlate_no_key_match_discards_record() {
    let thread_id = std::thread::current().id();
    let temp_dir = std::env::temp_dir().join(format!(
        "test_correlate_no_key_match_{:?}_{}",
        thread_id,
        std::time::SystemTime::now()
            .duration_since(std::time::UNIX_EPOCH)
            .unwrap()
            .as_nanos()
    ));
    let engine = StorageEngine::new(&temp_dir, 1024 * 1024).unwrap();

    // Setup: stream "transactions" with user_id="u1"
    engine
        .append(
            "transactions",
            "txn_1",
            DataValue::String(r#"{"user_id": "u1"}"#.to_string()),
            false,
        )
        .unwrap();

    // Setup: stream "logins" with user_id="u2" (different user)
    engine
        .append(
            "logins",
            "login_1",
            DataValue::String(r#"{"user_id": "u2"}"#.to_string()),
            false,
        )
        .unwrap();

    // Query: from("transactions") | correlate("logins", "user_id", within: 5000)
    let query =
        parse_query("from(\"transactions\") | correlate(\"logins\", \"user_id\", within: 5000)")
            .unwrap();
    let result = execute_query(&engine, &query).unwrap();

    // Assert: result is empty — no matching user_id
    assert!(result.is_empty());

    let _ = std::fs::remove_dir_all(&temp_dir);
}

// ============ SEQUENCE TESTS ============

#[test]
fn test_sequence_complete_match() {
    let thread_id = std::thread::current().id();
    let temp_dir = std::env::temp_dir().join(format!(
        "test_seq_complete_{:?}_{}",
        thread_id,
        std::time::SystemTime::now()
            .duration_since(std::time::UNIX_EPOCH)
            .unwrap()
            .as_nanos()
    ));
    let engine = StorageEngine::new(&temp_dir, 1024 * 1024).unwrap();

    // Setup: stream "telemetry" with records
    let r1 = r#"{"event": "cpu_spike"}"#;
    let r2 = r#"{"event": "memory_leak"}"#;
    engine
        .append(
            "telemetry",
            "rec_1",
            DataValue::String(r1.to_string()),
            false,
        )
        .unwrap();
    engine
        .append(
            "telemetry",
            "rec_2",
            DataValue::String(r2.to_string()),
            false,
        )
        .unwrap();

    // Query: sequence(event == "cpu_spike", then: event == "memory_leak", within: 500)
    let query = parse_query(
        "from(\"telemetry\") | sequence(event == \"cpu_spike\", then: event == \"memory_leak\", within: 500)",
    )
    .unwrap();
    let result = execute_query(&engine, &query).unwrap();

    // Assert: result contains 1 record — the memory_leak record that completed the sequence
    assert_eq!(result.len(), 1);
    let val_str = match &result[0].value {
        DataValue::String(s) => s,
        _ => panic!("Expected DataValue::String"),
    };
    let parsed: serde_json::Value = serde_json::from_str(val_str).unwrap();
    assert_eq!(parsed["event"], "memory_leak");

    let _ = std::fs::remove_dir_all(&temp_dir);
}

#[test]
fn test_sequence_window_expired() {
    let thread_id = std::thread::current().id();
    let temp_dir = std::env::temp_dir().join(format!(
        "test_seq_window_expired_{:?}_{}",
        thread_id,
        std::time::SystemTime::now()
            .duration_since(std::time::UNIX_EPOCH)
            .unwrap()
            .as_nanos()
    ));
    let engine = StorageEngine::new(&temp_dir, 1024 * 1024).unwrap();

    // We inject records with explicit timestamps via the Record struct directly
    let rec1 = Record {
        sequence_id: 1,
        timestamp: 100,
        type_tag: 5,
        flags: 0x01,
        stream_name: "telemetry".to_string(),
        key: liven::storage::key::StreamKey::from_str_truncated("rec_1"),
        value: DataValue::String(r#"{"event": "cpu_spike"}"#.to_string()),
    };
    let rec2 = Record {
        sequence_id: 2,
        timestamp: 700,
        type_tag: 5,
        flags: 0x01,
        stream_name: "telemetry".to_string(),
        key: liven::storage::key::StreamKey::from_str_truncated("rec_2"),
        value: DataValue::String(r#"{"event": "memory_leak"}"#.to_string()),
    };

    let mut records: Vec<Record> = vec![rec1, rec2];
    let stages = vec![PipelineStage::Sequence {
        steps: vec![
            FilterExpr::Simple {
                field: "event".to_string(),
                operator: Op::Eq,
                value: DataValue::String("cpu_spike".to_string()),
            },
            FilterExpr::Simple {
                field: "event".to_string(),
                operator: Op::Eq,
                value: DataValue::String("memory_leak".to_string()),
            },
        ],
        within_ms: 500,
    }];
    apply_pipeline_stages_to_vec(&mut records, &engine, &stages);

    // Assert: result is empty — window of 500ms expired before memory_leak at 700
    assert!(records.is_empty());

    let _ = std::fs::remove_dir_all(&temp_dir);
}

#[test]
fn test_sequence_out_of_order_no_false_match() {
    let thread_id = std::thread::current().id();
    let temp_dir = std::env::temp_dir().join(format!(
        "test_seq_out_of_order_{:?}_{}",
        thread_id,
        std::time::SystemTime::now()
            .duration_since(std::time::UNIX_EPOCH)
            .unwrap()
            .as_nanos()
    ));
    let engine = StorageEngine::new(&temp_dir, 1024 * 1024).unwrap();

    // memory_leak appears before cpu_spike (wrong order)
    let rec1 = Record {
        sequence_id: 1,
        timestamp: 100,
        type_tag: 5,
        flags: 0x01,
        stream_name: "telemetry".to_string(),
        key: liven::storage::key::StreamKey::from_str_truncated("rec_1"),
        value: DataValue::String(r#"{"event": "memory_leak"}"#.to_string()),
    };
    let rec2 = Record {
        sequence_id: 2,
        timestamp: 200,
        type_tag: 5,
        flags: 0x01,
        stream_name: "telemetry".to_string(),
        key: liven::storage::key::StreamKey::from_str_truncated("rec_2"),
        value: DataValue::String(r#"{"event": "cpu_spike"}"#.to_string()),
    };

    let mut records: Vec<Record> = vec![rec1, rec2];
    let stages = vec![PipelineStage::Sequence {
        steps: vec![
            FilterExpr::Simple {
                field: "event".to_string(),
                operator: Op::Eq,
                value: DataValue::String("cpu_spike".to_string()),
            },
            FilterExpr::Simple {
                field: "event".to_string(),
                operator: Op::Eq,
                value: DataValue::String("memory_leak".to_string()),
            },
        ],
        within_ms: 500,
    }];
    apply_pipeline_stages_to_vec(&mut records, &engine, &stages);

    // Assert: result is empty — events are in wrong order
    assert!(records.is_empty());

    let _ = std::fs::remove_dir_all(&temp_dir);
}

#[test]
fn test_sequence_too_many_steps_rejected() {
    // Build a sequence query string with 11 then: steps
    let mut query_str = String::from("from(\"t\") | sequence(a == 1");
    for i in 0..11 {
        query_str.push_str(&format!(", then: a == {}", i + 2));
    }
    query_str.push_str(", within: 1000)");

    let result = parse_query(&query_str);
    assert!(result.is_err());
    let err = result.unwrap_err();
    assert!(
        err.contains("Sequence pattern too complex: maximum 10 steps allowed"),
        "Expected max steps error, got: {}",
        err
    );
}

// ============ CHAIN TESTS ============

#[test]
fn test_chain_single_hop() {
    let thread_id = std::thread::current().id();
    let temp_dir = std::env::temp_dir().join(format!(
        "test_chain_single_hop_{:?}_{}",
        thread_id,
        std::time::SystemTime::now()
            .duration_since(std::time::UNIX_EPOCH)
            .unwrap()
            .as_nanos()
    ));
    let engine = StorageEngine::new(&temp_dir, 1024 * 1024).unwrap();

    // Setup: stream "prompts" key="p1", value={prompt_id: "p1", text: "Hello"}
    engine
        .append(
            "prompts",
            "p1",
            DataValue::String(r#"{"prompt_id": "p1", "text": "Hello"}"#.to_string()),
            false,
        )
        .unwrap();

    // Setup: stream "responses" key="p1", value={response_id: "r1", text: "Hi"}
    engine
        .append(
            "responses",
            "p1",
            DataValue::String(r#"{"response_id": "r1", "text": "Hi"}"#.to_string()),
            false,
        )
        .unwrap();

    // Query: from("prompts") | chain("responses", "prompt_id")
    let query = parse_query("from(\"prompts\") | chain(\"responses\", prompt_id)").unwrap();
    let result = execute_query(&engine, &query).unwrap();

    // Assert: Result contains 1 record with fields from both streams
    assert_eq!(result.len(), 1);
    let val_str = match &result[0].value {
        DataValue::String(s) => s,
        _ => panic!("Expected DataValue::String"),
    };
    let parsed: serde_json::Value = serde_json::from_str(val_str).unwrap();
    assert_eq!(parsed["text"], "Hello");
    assert!(parsed.get("responses").is_some());
    assert_eq!(parsed["responses"]["text"], "Hi");

    let _ = std::fs::remove_dir_all(&temp_dir);
}

#[test]
fn test_chain_two_hops() {
    let thread_id = std::thread::current().id();
    let temp_dir = std::env::temp_dir().join(format!(
        "test_chain_two_hops_{:?}_{}",
        thread_id,
        std::time::SystemTime::now()
            .duration_since(std::time::UNIX_EPOCH)
            .unwrap()
            .as_nanos()
    ));
    let engine = StorageEngine::new(&temp_dir, 1024 * 1024).unwrap();

    // Setup: stream "prompts" key="p1", value={prompt_id: "p1"}
    engine
        .append(
            "prompts",
            "p1",
            DataValue::String(r#"{"prompt_id": "p1"}"#.to_string()),
            false,
        )
        .unwrap();

    // Setup: stream "responses" key="p1", value={response_id: "r1", prompt_id: "p1"}
    engine
        .append(
            "responses",
            "p1",
            DataValue::String(r#"{"response_id": "r1", "prompt_id": "p1"}"#.to_string()),
            false,
        )
        .unwrap();

    // Setup: stream "memory" key="r1", value={memory_id: "m1", response_id: "r1"}
    engine
        .append(
            "memory",
            "r1",
            DataValue::String(r#"{"memory_id": "m1", "response_id": "r1"}"#.to_string()),
            false,
        )
        .unwrap();

    // Query: from("prompts") | chain("responses", "prompt_id") | chain("memory", "response_id")
    let query = parse_query(
        "from(\"prompts\") | chain(\"responses\", prompt_id) | chain(\"memory\", response_id)",
    )
    .unwrap();
    let result = execute_query(&engine, &query).unwrap();

    // Assert: result contains fields from all three streams
    assert_eq!(result.len(), 1);
    let val_str = match &result[0].value {
        DataValue::String(s) => s,
        _ => panic!("Expected DataValue::String"),
    };
    let parsed: serde_json::Value = serde_json::from_str(val_str).unwrap();
    assert!(parsed.get("responses").is_some());
    assert!(parsed.get("memory").is_some());
    assert_eq!(parsed["prompt_id"], "p1");

    let _ = std::fs::remove_dir_all(&temp_dir);
}

#[test]
fn test_chain_no_match_retains_record() {
    let thread_id = std::thread::current().id();
    let temp_dir = std::env::temp_dir().join(format!(
        "test_chain_no_match_{:?}_{}",
        thread_id,
        std::time::SystemTime::now()
            .duration_since(std::time::UNIX_EPOCH)
            .unwrap()
            .as_nanos()
    ));
    let engine = StorageEngine::new(&temp_dir, 1024 * 1024).unwrap();

    // Setup: stream "prompts" key="p1", value={prompt_id: "p1"}
    engine
        .append(
            "prompts",
            "p1",
            DataValue::String(r#"{"prompt_id": "p1", "text": "Hello"}"#.to_string()),
            false,
        )
        .unwrap();

    // Stream "responses" is empty — no data inserted

    // Query: from("prompts") | chain("responses", "prompt_id")
    let query = parse_query("from(\"prompts\") | chain(\"responses\", prompt_id)").unwrap();
    let result = execute_query(&engine, &query).unwrap();

    // Assert: Result contains 1 record with unchanged value (left join behavior)
    assert_eq!(result.len(), 1);
    let val_str = match &result[0].value {
        DataValue::String(s) => s,
        _ => panic!("Expected DataValue::String"),
    };
    let parsed: serde_json::Value = serde_json::from_str(val_str).unwrap();
    assert_eq!(parsed["text"], "Hello");
    // No "responses" field should be present since there was no match
    assert!(
        parsed.get("responses").is_none(),
        "Left join should not add nested field when no match exists",
    );

    let _ = std::fs::remove_dir_all(&temp_dir);
}

// ── Deletion Fix 2: Drop removes stream from set ──

#[test]
fn test_drop_removes_stream_from_set() {
    use liven::executor::execute_query;
    use liven::parser::parse_query;
    use liven::storage::StorageEngine;
    use liven::types::DataValue;

    let path = std::env::temp_dir().join(format!(
        "liven_drop_stream_{}",
        std::time::SystemTime::now()
            .duration_since(std::time::UNIX_EPOCH)
            .unwrap()
            .as_nanos()
    ));
    let _ = std::fs::remove_dir_all(&path);
    let engine = StorageEngine::new(&path, 1024 * 1024).unwrap();

    engine
        .append("logs", "k1", DataValue::String("hello".to_string()), false)
        .unwrap();
    engine
        .append("logs", "k2", DataValue::String("world".to_string()), false)
        .unwrap();

    // Confirm stream exists
    assert!(engine.list_streams().contains(&"logs".to_string()));

    // Drop the stream
    let q = parse_query(r#"drop("logs")"#).unwrap();
    execute_query(&engine, &q).unwrap();

    // Stream must no longer appear in streams()
    assert!(
        !engine.list_streams().contains(&"logs".to_string()),
        "Dropped stream must not appear in list_streams"
    );

    // streams() query must not return it
    let q2 = parse_query("streams()").unwrap();
    let results = execute_query(&engine, &q2).unwrap();
    assert!(
        !results.iter().any(|r| r.key.as_str() == "logs"),
        "streams() must not return dropped stream"
    );

    // empty() on the dropped stream must return an error
    let q3 = parse_query(r#"from("logs").empty()"#).unwrap();
    assert!(
        execute_query(&engine, &q3).is_err(),
        "empty() on dropped stream must fail"
    );

    // Re-inserting into the dropped stream must succeed and re-create it
    let q4 = parse_query(r#"from("logs").insert("k3", {msg: "reborn"})"#).unwrap();
    execute_query(&engine, &q4).unwrap();
    assert!(
        engine.list_streams().contains(&"logs".to_string()),
        "Stream must reappear after re-insert"
    );

    let _ = std::fs::remove_dir_all(&path);
}

#[test]
fn test_empty_retains_stream_in_set() {
    use liven::executor::execute_query;
    use liven::parser::parse_query;
    use liven::storage::StorageEngine;
    use liven::types::DataValue;

    let path = std::env::temp_dir().join(format!(
        "liven_empty_stream_{}",
        std::time::SystemTime::now()
            .duration_since(std::time::UNIX_EPOCH)
            .unwrap()
            .as_nanos()
    ));
    let _ = std::fs::remove_dir_all(&path);
    let engine = StorageEngine::new(&path, 1024 * 1024).unwrap();

    engine
        .append("events", "e1", DataValue::Int(1), false)
        .unwrap();
    engine
        .append("events", "e2", DataValue::Int(2), false)
        .unwrap();

    let q = parse_query(r#"from("events").empty()"#).unwrap();
    execute_query(&engine, &q).unwrap();

    // Stream must still be in streams_set after empty()
    assert!(
        engine.list_streams().contains(&"events".to_string()),
        "Empty must retain stream in list"
    );

    // Keys must be gone
    assert!(
        engine.list_keys("events").is_empty(),
        "All keys must be removed after empty()"
    );

    let _ = std::fs::remove_dir_all(&path);
}

#[test]
fn test_drop_frees_stream_slot() {
    use liven::executor::execute_query;
    use liven::parser::parse_query;
    use liven::storage::StorageEngine;
    use liven::types::DataValue;

    let path = std::env::temp_dir().join(format!(
        "liven_drop_slot_{}",
        std::time::SystemTime::now()
            .duration_since(std::time::UNIX_EPOCH)
            .unwrap()
            .as_nanos()
    ));
    let _ = std::fs::remove_dir_all(&path);
    let mut engine = StorageEngine::new(&path, 1024 * 1024).unwrap();
    engine.set_max_streams(2);

    // Fill stream slots
    engine.append("s1", "k1", DataValue::Int(1), false).unwrap();
    engine.append("s2", "k1", DataValue::Int(1), false).unwrap();

    // Third stream must fail — at capacity
    let err = engine.append("s3", "k1", DataValue::Int(1), false);
    assert!(err.is_err(), "Should be at stream capacity");

    // Drop s1
    let q = parse_query(r#"drop("s1")"#).unwrap();
    execute_query(&engine, &q).unwrap();

    // Now s3 must succeed — slot was freed
    engine
        .append("s3", "k1", DataValue::Int(1), false)
        .expect("Stream slot should be available after drop");

    let _ = std::fs::remove_dir_all(&path);
}

// ── Deletion Fix 4: Null value record ──

#[test]
fn test_null_value_record_not_treated_as_tombstone() {
    use liven::executor::execute_query;
    use liven::parser::parse_query;
    use liven::storage::StorageEngine;
    use liven::types::DataValue;

    let path = std::env::temp_dir().join(format!(
        "liven_null_value_{}",
        std::time::SystemTime::now()
            .duration_since(std::time::UNIX_EPOCH)
            .unwrap()
            .as_nanos()
    ));
    let _ = std::fs::remove_dir_all(&path);
    let engine = StorageEngine::new(&path, 1024 * 1024).unwrap();

    // Insert a record with an explicit null value (active record, not tombstone)
    engine.append("data", "k1", DataValue::Null, false).unwrap();
    engine
        .append("data", "k2", DataValue::String("hello".to_string()), false)
        .unwrap();

    // Both records must be returned by a normal scan
    let q = parse_query(r#"from("data")"#).unwrap();
    let results = execute_query(&engine, &q).unwrap();
    assert_eq!(
        results.len(),
        2,
        "Null-value active record must appear in results"
    );

    // count() must return 2
    let q2 = parse_query(r#"from("data") | count()"#).unwrap();
    let results2 = execute_query(&engine, &q2).unwrap();
    assert_eq!(results2[0].value, DataValue::UInt(2));

    // Point lookup must find the null-value record
    let found = engine.get("data", "k1").unwrap();
    assert!(
        found.is_some(),
        "Null-value active record must be findable via get()"
    );
    assert_eq!(found.unwrap().value, DataValue::Null);

    let _ = std::fs::remove_dir_all(&path);
}

// ── Deletion Fix 5: write_lock serialization ──

#[test]
fn test_delete_key_write_lock_serialization() {
    use liven::executor::execute_query;
    use liven::parser::parse_query;
    use liven::storage::StorageEngine;
    use liven::types::DataValue;
    use std::sync::Arc;

    let path = std::env::temp_dir().join(format!(
        "liven_delete_race_{}",
        std::time::SystemTime::now()
            .duration_since(std::time::UNIX_EPOCH)
            .unwrap()
            .as_nanos()
    ));
    let _ = std::fs::remove_dir_all(&path);
    let engine = Arc::new(StorageEngine::new(&path, 1024 * 1024).unwrap());

    // Insert initial record
    engine
        .append(
            "test",
            "k1",
            DataValue::String("initial".to_string()),
            false,
        )
        .unwrap();

    // Spawn a thread that repeatedly upserts k1
    let engine_write = engine.clone();
    let write_handle = std::thread::spawn(move || {
        for i in 0..100 {
            let _ = engine_write.append(
                "test",
                "k1",
                DataValue::String(format!("write_{}", i)),
                false,
            );
            std::thread::yield_now();
        }
    });

    // Concurrently delete k1 repeatedly
    let engine_delete = engine.clone();
    let delete_handle = std::thread::spawn(move || {
        for _ in 0..100 {
            let q = parse_query(r#"from("test").delete("k1")"#).unwrap();
            let _ = execute_query(&engine_delete, &q);
            std::thread::yield_now();
        }
    });

    write_handle.join().unwrap();
    delete_handle.join().unwrap();

    // Database must be in a consistent state — no panic, no corruption
    // The key may or may not exist depending on last operation
    let final_state = engine.get("test", "k1").unwrap();
    // Just verify no panic and the result is coherent
    let in_skipmap = engine.skipmap.contains_key("test:k1");
    match final_state {
        Some(_) => assert!(in_skipmap, "If get() returns Some, key must be in SkipMap"),
        None => assert!(
            !in_skipmap,
            "If get() returns None, key must not be in SkipMap"
        ),
    }

    let _ = std::fs::remove_dir_all(&path);
}

// ── New filter operator tests ──

#[test]
fn test_contains_operator_execution() {
    use liven::executor::compare_values;

    let haystack = DataValue::String("authentication failed".to_string());
    let needle = DataValue::String("failed".to_string());
    assert!(compare_values(&haystack, Op::Contains, &needle));

    let no_match = DataValue::String("success".to_string());
    assert!(!compare_values(&haystack, Op::Contains, &no_match));

    // non-string fallback
    assert!(!compare_values(&DataValue::Int(42), Op::Contains, &needle));
}

#[test]
fn test_endswith_operator_execution() {
    use liven::executor::compare_values;

    let val = DataValue::String("data.log".to_string());
    let suffix = DataValue::String(".log".to_string());
    assert!(compare_values(&val, Op::EndsWith, &suffix));

    let no_match = DataValue::String(".txt".to_string());
    assert!(!compare_values(&val, Op::EndsWith, &no_match));

    // non-string fallback
    assert!(!compare_values(
        &DataValue::Bool(true),
        Op::EndsWith,
        &suffix
    ));
}

#[test]
fn test_between_operator_execution() {
    use liven::executor::compare_values;

    let val = DataValue::Int(250);
    let bounds = DataValue::Array(vec![
        DataValue::Int(100),
        DataValue::Float(ordered_float::OrderedFloat(500.0)),
    ]);
    assert!(compare_values(&val, Op::Between, &bounds));

    // below lower bound
    let low_val = DataValue::Int(50);
    assert!(!compare_values(&low_val, Op::Between, &bounds));

    // above upper bound
    let high_val = DataValue::UInt(600);
    assert!(!compare_values(&high_val, Op::Between, &bounds));

    // non-numeric value
    let string_val = DataValue::String("hello".to_string());
    assert!(!compare_values(&string_val, Op::Between, &bounds));

    // bounds array not length 2
    let bad_bounds = DataValue::Array(vec![DataValue::Int(1)]);
    assert!(!compare_values(&val, Op::Between, &bad_bounds));
}

// ── Not filter expression ──

#[test]
fn test_not_filter_execution() {
    let temp_dir = std::env::temp_dir().join(format!(
        "liven_test_not_{}",
        std::time::SystemTime::now()
            .duration_since(std::time::UNIX_EPOCH)
            .unwrap()
            .as_nanos()
    ));
    let engine = StorageEngine::new(&temp_dir, 1024 * 1024).unwrap();

    engine
        .append(
            "users",
            "u1",
            DataValue::String(r#"{"status": "active"}"#.to_string()),
            false,
        )
        .unwrap();
    engine
        .append(
            "users",
            "u2",
            DataValue::String(r#"{"status": "inactive"}"#.to_string()),
            false,
        )
        .unwrap();
    engine
        .append(
            "users",
            "u3",
            DataValue::String(r#"{"status": "active"}"#.to_string()),
            false,
        )
        .unwrap();

    // not status == "inactive" should return 2 records (u1, u3)
    let results = execute_query(
        &engine,
        &parse_query(r#"from("users") | filter(not status == "inactive")"#).unwrap(),
    )
    .unwrap();
    assert_eq!(results.len(), 2);

    // double negative: not not (status == "inactive") should return 1 record (u2)
    let results = execute_query(
        &engine,
        &parse_query(r#"from("users") | filter(not not status == "inactive")"#).unwrap(),
    )
    .unwrap();
    assert_eq!(results.len(), 1);

    let _ = std::fs::remove_dir_all(&temp_dir);
}

// ── Distinct stage ──

#[test]
fn test_distinct_execution() {
    let temp_dir = std::env::temp_dir().join(format!(
        "liven_test_distinct_{}",
        std::time::SystemTime::now()
            .duration_since(std::time::UNIX_EPOCH)
            .unwrap()
            .as_nanos()
    ));
    let engine = StorageEngine::new(&temp_dir, 1024 * 1024).unwrap();

    engine
        .append(
            "events",
            "e1",
            DataValue::String(r#"{"type": "click", "user": "alice"}"#.to_string()),
            false,
        )
        .unwrap();
    engine
        .append(
            "events",
            "e2",
            DataValue::String(r#"{"type": "click", "user": "bob"}"#.to_string()),
            false,
        )
        .unwrap();
    engine
        .append(
            "events",
            "e3",
            DataValue::String(r#"{"type": "pageview", "user": "alice"}"#.to_string()),
            false,
        )
        .unwrap();
    engine
        .append(
            "events",
            "e4",
            DataValue::String(r#"{"type": "pageview", "user": "bob"}"#.to_string()),
            false,
        )
        .unwrap();

    // distinct(type) should return 2 records (first click, first pageview)
    let results = execute_query(
        &engine,
        &parse_query(r#"from("events") | distinct(type)"#).unwrap(),
    )
    .unwrap();
    assert_eq!(results.len(), 2);

    // distinct on a field that is the same for all records should return 1
    let results = execute_query(
        &engine,
        &parse_query(r#"from("events") | filter(type == "click") | distinct(type)"#).unwrap(),
    )
    .unwrap();
    assert_eq!(results.len(), 1);

    // distinct on stream name should deduplicate by stream (all from "events", so 1)
    let results = execute_query(
        &engine,
        &parse_query(r#"from("events") | distinct(stream)"#).unwrap(),
    )
    .unwrap();
    assert_eq!(results.len(), 1);

    let _ = std::fs::remove_dir_all(&temp_dir);
}

// ── Explain ──

#[test]
fn test_explain_execution() {
    let temp_dir = std::env::temp_dir().join(format!(
        "liven_test_explain_{}",
        std::time::SystemTime::now()
            .duration_since(std::time::UNIX_EPOCH)
            .unwrap()
            .as_nanos()
    ));
    let engine = StorageEngine::new(&temp_dir, 1024 * 1024).unwrap();

    engine
        .append(
            "orders",
            "k1",
            DataValue::String(r#"{"amount": 100}"#.to_string()),
            false,
        )
        .unwrap();
    engine
        .append(
            "orders",
            "k2",
            DataValue::String(r#"{"amount": 200}"#.to_string()),
            false,
        )
        .unwrap();

    // explain a pipeline query (use bare identifiers to avoid escape issues in inner query)
    let results = execute_query(
        &engine,
        &parse_query(r#"explain("from(orders) | filter(amount > 100)")"#).unwrap(),
    )
    .unwrap();

    assert_eq!(results.len(), 1);
    assert_eq!(results[0].stream_name, "explain");

    // Parse the JSON plan
    if let DataValue::String(ref plan_str) = results[0].value {
        let plan: serde_json::Value =
            serde_json::from_str(plan_str).expect("Explain output should be valid JSON");
        let steps = plan["steps"]
            .as_array()
            .expect("Plan should have steps array");
        // step 0: scan, step 1: from, step 2: filter
        assert!(steps.len() >= 3, "Should have scan + from + filter steps");
        assert_eq!(steps[0]["stage"], "scan");
        assert_eq!(steps[1]["stage"], "from");
        assert_eq!(steps[2]["stage"], "filter");
    } else {
        panic!("Explain output should be DataValue::String");
    }

    // explain list streams
    let results = execute_query(&engine, &parse_query(r#"explain("streams")"#).unwrap()).unwrap();
    assert_eq!(results.len(), 1);
    if let DataValue::String(ref plan_str) = results[0].value {
        let plan: serde_json::Value = serde_json::from_str(plan_str).unwrap();
        assert_eq!(plan["steps"][0]["stage"], "streams_set");
    }

    // explain an insert
    let results = execute_query(
        &engine,
        &parse_query(r#"explain("from(orders).insert(k3, {amount: 300})")"#).unwrap(),
    )
    .unwrap();
    assert_eq!(results.len(), 1);
    if let DataValue::String(ref plan_str) = results[0].value {
        let plan: serde_json::Value = serde_json::from_str(plan_str).unwrap();
        assert_eq!(plan["steps"][0]["stage"], "existence_check");
        assert_eq!(plan["steps"][1]["stage"], "append");
    }

    let _ = std::fs::remove_dir_all(&temp_dir);
}