velesdb-core 2.0.0

High-performance vector database engine written in Rust
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
use super::*;
use crate::collection::graph::GraphEdge;
use crate::point::Point;
use crate::velesql::Parser;
use crate::{CollectionType, DistanceMetric, StorageMode};
use tempfile::tempdir;

#[test]
fn test_database_open() {
    let dir = tempdir().unwrap();
    let db = Database::open(dir.path()).unwrap();
    assert!(db.list_collections().is_empty());
}

#[test]
fn test_open_with_config_rejects_invalid_config() {
    // #907 follow-up: a `VelesConfig` built programmatically (bypassing the
    // loader, which is the only place that used to call validate()) must be
    // validated at the open boundary, so an out-of-range field is rejected.
    let dir = tempdir().unwrap();
    let mut config = crate::config::VelesConfig::default();
    config.limits.max_collections = 0; // out of range [1, ..]

    let result = Database::open_with_config(dir.path(), config);
    assert!(
        result.is_err(),
        "open_with_config must reject an invalid (unloader-validated) config"
    );
    let msg = result.err().unwrap().to_string();
    assert!(
        msg.contains("limits.max_collections"),
        "error should name the offending key, got: {msg}"
    );
}

#[test]
fn test_create_collection() {
    let dir = tempdir().unwrap();
    let db = Database::open(dir.path()).unwrap();

    db.create_collection("test", 768, DistanceMetric::Cosine)
        .unwrap();

    assert_eq!(db.list_collections(), vec!["test"]);
}

#[test]
fn test_duplicate_collection_error() {
    let dir = tempdir().unwrap();
    let db = Database::open(dir.path()).unwrap();

    db.create_collection("test", 768, DistanceMetric::Cosine)
        .unwrap();

    let result = db.create_collection("test", 768, DistanceMetric::Cosine);
    assert!(result.is_err());
}

#[test]
fn test_get_collection() {
    let dir = tempdir().unwrap();
    let db = Database::open(dir.path()).unwrap();

    // Non-existent collection returns None
    assert!(db.get_vector_collection("nonexistent").is_none());

    // Create and retrieve collection
    db.create_collection("test", 768, DistanceMetric::Cosine)
        .unwrap();

    let collection = db.get_vector_collection("test");
    assert!(collection.is_some());

    let config = collection.unwrap().config();
    assert_eq!(config.dimension, 768);
    assert_eq!(config.metric, DistanceMetric::Cosine);
}

#[test]
fn test_delete_collection() {
    let dir = tempdir().unwrap();
    let db = Database::open(dir.path()).unwrap();

    db.create_collection("to_delete", 768, DistanceMetric::Cosine)
        .unwrap();
    assert_eq!(db.list_collections().len(), 1);

    // Delete the collection
    db.delete_collection("to_delete").unwrap();
    assert!(db.list_collections().is_empty());
    assert!(db.get_vector_collection("to_delete").is_none());
}

#[test]
fn test_delete_nonexistent_collection() {
    let dir = tempdir().unwrap();
    let db = Database::open(dir.path()).unwrap();

    let result = db.delete_collection("nonexistent");
    assert!(result.is_err());
}

#[test]
fn test_multiple_collections() {
    let dir = tempdir().unwrap();
    let db = Database::open(dir.path()).unwrap();

    db.create_collection("coll1", 128, DistanceMetric::Cosine)
        .unwrap();
    db.create_collection("coll2", 256, DistanceMetric::Euclidean)
        .unwrap();
    db.create_collection("coll3", 768, DistanceMetric::DotProduct)
        .unwrap();

    let collections = db.list_collections();
    assert_eq!(collections.len(), 3);
    assert!(collections.contains(&"coll1".to_string()));
    assert!(collections.contains(&"coll2".to_string()));
    assert!(collections.contains(&"coll3".to_string()));
}

#[test]
fn test_database_execute_query_join_on_end_to_end() {
    let dir = tempdir().unwrap();
    let db = Database::open(dir.path()).unwrap();

    db.create_collection("orders", 2, DistanceMetric::Cosine)
        .unwrap();
    db.create_collection("customers", 2, DistanceMetric::Cosine)
        .unwrap();

    let orders = db.get_vector_collection("orders").unwrap();
    let customers = db.get_vector_collection("customers").unwrap();

    orders
        .upsert(vec![
            Point::new(
                1,
                vec![1.0, 0.0],
                Some(serde_json::json!({"id": 1, "customer_id": 10, "total": 100})),
            ),
            Point::new(
                2,
                vec![0.0, 1.0],
                Some(serde_json::json!({"id": 2, "customer_id": 999, "total": 50})),
            ),
        ])
        .unwrap();
    customers
        .upsert(vec![Point::new(
            10,
            vec![1.0, 0.0],
            Some(serde_json::json!({"id": 10, "name": "Alice", "tier": "gold"})),
        )])
        .unwrap();

    let query =
        Parser::parse("SELECT * FROM orders JOIN customers ON orders.customer_id = customers.id")
            .unwrap();
    let results = db
        .execute_query(&query, &std::collections::HashMap::new())
        .unwrap();

    assert_eq!(results.len(), 1);
    let payload = results[0].point.payload.as_ref().unwrap();
    assert_eq!(payload.get("name").unwrap().as_str(), Some("Alice"));
}

#[test]
fn test_database_execute_query_join_using_with_graph_match_filter() {
    let dir = tempdir().unwrap();
    let db = Database::open(dir.path()).unwrap();

    db.create_collection("orders", 2, DistanceMetric::Cosine)
        .unwrap();
    db.create_collection("profiles", 2, DistanceMetric::Cosine)
        .unwrap();

    // Use get_vector_collection() here to get the shared instance that supports both
    // vector operations and graph operations (add_edge) on the same Collection.
    let orders = db.get_vector_collection("orders").unwrap();
    let profiles = db.get_vector_collection("profiles").unwrap();

    orders
        .upsert(vec![
            Point::new(
                1,
                vec![1.0, 0.0],
                Some(serde_json::json!({"id": 1, "_labels": ["Doc"], "kind": "source"})),
            ),
            Point::new(
                2,
                vec![0.0, 1.0],
                Some(serde_json::json!({"id": 2, "_labels": ["Doc"], "kind": "target"})),
            ),
        ])
        .unwrap();
    orders
        .add_edge(GraphEdge::new(100, 1, 2, "REL").unwrap())
        .unwrap();

    profiles
        .upsert(vec![
            Point::new(
                1,
                vec![1.0, 0.0],
                Some(serde_json::json!({"id": 1, "nickname": "alpha"})),
            ),
            Point::new(
                2,
                vec![0.0, 1.0],
                Some(serde_json::json!({"id": 2, "nickname": "beta"})),
            ),
        ])
        .unwrap();

    let query = Parser::parse(
        "SELECT * FROM orders AS o JOIN profiles USING (id) WHERE MATCH (o:Doc)-[:REL]->(x:Doc)",
    )
    .unwrap();
    let results = db
        .execute_query(&query, &std::collections::HashMap::new())
        .unwrap();

    assert_eq!(results.len(), 1);
    assert_eq!(results[0].point.id, 1);
    let payload = results[0].point.payload.as_ref().unwrap();
    assert_eq!(payload.get("nickname").unwrap().as_str(), Some("alpha"));
}

#[test]
fn test_database_execute_query_supports_left_join_runtime() {
    let dir = tempdir().unwrap();
    let db = Database::open(dir.path()).unwrap();
    db.create_collection("orders", 2, DistanceMetric::Cosine)
        .unwrap();
    db.create_collection("customers", 2, DistanceMetric::Cosine)
        .unwrap();

    let orders = db.get_vector_collection("orders").unwrap();
    orders
        .upsert(vec![Point::new(
            1,
            vec![1.0, 0.0],
            Some(serde_json::json!({"customer_id": 999})),
        )])
        .unwrap();

    let query = Parser::parse(
        "SELECT * FROM orders LEFT JOIN customers ON customers.id = orders.customer_id",
    )
    .unwrap();
    let results = db
        .execute_query(&query, &std::collections::HashMap::new())
        .unwrap();
    assert_eq!(results.len(), 1);
    assert_eq!(results[0].point.id, 1);
    let payload = results[0].point.payload.as_ref().unwrap();
    assert_eq!(payload.get("customer_id"), Some(&serde_json::json!(999)));
    assert_eq!(payload.get("id"), Some(&serde_json::Value::Null));
}

#[test]
fn test_database_execute_query_rejects_join_using_multi_column() {
    let dir = tempdir().unwrap();
    let db = Database::open(dir.path()).unwrap();
    db.create_collection("orders", 2, DistanceMetric::Cosine)
        .unwrap();
    db.create_collection("customers", 2, DistanceMetric::Cosine)
        .unwrap();

    let query =
        Parser::parse("SELECT * FROM orders JOIN customers USING (id, customer_id)").unwrap();
    let err = db
        .execute_query(&query, &std::collections::HashMap::new())
        .unwrap_err();
    assert!(err.to_string().contains("USING(single_column)"));
}

#[test]
fn test_collection_execute_query_match_order_by_property() {
    let dir = tempdir().unwrap();
    let db = Database::open(dir.path()).unwrap();
    db.create_collection("docs", 2, DistanceMetric::Cosine)
        .unwrap();
    let docs = db.get_vector_collection("docs").unwrap();

    docs.upsert(vec![
        Point::new(
            1,
            vec![1.0, 0.0],
            Some(serde_json::json!({"_labels": ["Doc"], "name": "Charlie"})),
        ),
        Point::new(
            2,
            vec![1.0, 0.0],
            Some(serde_json::json!({"_labels": ["Doc"], "name": "Alice"})),
        ),
        Point::new(
            3,
            vec![1.0, 0.0],
            Some(serde_json::json!({"_labels": ["Doc"], "name": "Bob"})),
        ),
    ])
    .unwrap();

    let query = Parser::parse("MATCH (d:Doc) RETURN d.name ORDER BY d.name ASC LIMIT 3").unwrap();
    let results = docs
        .execute_query(&query, &std::collections::HashMap::new())
        .unwrap();

    let names: Vec<String> = results
        .iter()
        .map(|r| {
            r.point
                .payload
                .as_ref()
                .and_then(|p| p.get("name"))
                .and_then(serde_json::Value::as_str)
                .unwrap()
                .to_string()
        })
        .collect();
    assert_eq!(names, vec!["Alice", "Bob", "Charlie"]);
}

#[test]
fn test_database_execute_query_rejects_top_level_match_queries() {
    let dir = tempdir().unwrap();
    let db = Database::open(dir.path()).unwrap();
    db.create_collection("docs", 2, DistanceMetric::Cosine)
        .unwrap();

    // MATCH without FROM or _collection param → clear guidance error
    let query = Parser::parse("MATCH (d:Doc) RETURN d LIMIT 10").unwrap();
    let err = db
        .execute_query(&query, &std::collections::HashMap::new())
        .unwrap_err();
    assert!(
        err.to_string().contains("target collection"),
        "Should guide user to specify collection, got: {}",
        err
    );
}

#[test]
fn test_database_execute_query_insert_metadata_only() {
    let dir = tempdir().unwrap();
    let db = Database::open(dir.path()).unwrap();
    db.create_collection_typed("products", &CollectionType::MetadataOnly)
        .unwrap();

    let query = Parser::parse(
        "INSERT INTO products (id, name, price, active) VALUES (1, 'Notebook', 12.5, true)",
    )
    .unwrap();
    let results = db
        .execute_query(&query, &std::collections::HashMap::new())
        .unwrap();

    assert_eq!(results.len(), 1);
    assert_eq!(results[0].point.id, 1);
    let payload = results[0].point.payload.as_ref().unwrap();
    assert_eq!(payload["name"], serde_json::json!("Notebook"));
    assert_eq!(payload["price"], serde_json::json!(12.5));
    assert_eq!(payload["active"], serde_json::json!(true));
}

#[test]
fn test_database_execute_query_update_metadata_only_where_id() {
    let dir = tempdir().unwrap();
    let db = Database::open(dir.path()).unwrap();
    db.create_collection_typed("products", &CollectionType::MetadataOnly)
        .unwrap();
    let products = db.get_metadata_collection("products").unwrap();
    products
        .upsert_metadata(vec![Point::metadata_only(
            1,
            serde_json::json!({"name": "Notebook", "price": 10.0}),
        )])
        .unwrap();

    let query = Parser::parse("UPDATE products SET price = 19.99 WHERE id = 1").unwrap();
    let results = db
        .execute_query(&query, &std::collections::HashMap::new())
        .unwrap();
    assert_eq!(results.len(), 1);

    let updated = products.get(&[1]).into_iter().flatten().next().unwrap();
    let payload = updated.payload.unwrap();
    assert_eq!(payload["price"], serde_json::json!(19.99));
}

#[test]
fn test_database_execute_query_insert_with_params() {
    let dir = tempdir().unwrap();
    let db = Database::open(dir.path()).unwrap();
    db.create_collection_typed("profiles", &CollectionType::MetadataOnly)
        .unwrap();
    // get_vector_collection() returns the shared registry instance for INSERT to be visible
    let _profiles = db.get_metadata_collection("profiles").unwrap();

    let query =
        Parser::parse("INSERT INTO profiles (id, name, age) VALUES ($id, $name, $age)").unwrap();
    let mut params = std::collections::HashMap::new();
    params.insert("id".to_string(), serde_json::json!(7));
    params.insert("name".to_string(), serde_json::json!("Alice"));
    params.insert("age".to_string(), serde_json::json!(30));

    db.execute_query(&query, &params).unwrap();

    let profiles = db.get_metadata_collection("profiles").unwrap();
    let point = profiles.get(&[7]).into_iter().flatten().next().unwrap();
    let payload = point.payload.unwrap();
    assert_eq!(payload["name"], serde_json::json!("Alice"));
    assert_eq!(payload["age"], serde_json::json!(30));
}

#[test]
fn test_create_collection_rejects_existing_on_disk_dir_not_loaded() {
    let dir = tempdir().unwrap();
    let coll_dir = dir.path().join("orphaned");
    std::fs::create_dir_all(&coll_dir).unwrap();
    // Simulate a corrupted collection that load_collections() skips.
    std::fs::write(coll_dir.join("config.json"), "{invalid json").unwrap();

    let db = Database::open(dir.path()).unwrap();
    let result = db.create_collection("orphaned", 8, DistanceMetric::Cosine);
    assert!(matches!(result, Err(Error::CollectionExists(_))));
}

// ---------------------------------------------------------------------------
// execute_train tests
// ---------------------------------------------------------------------------

/// Helper: insert vectors into a collection for training.
fn seed_training_vectors(db: &Database, name: &str, dim: usize, count: usize) {
    let coll = db.get_vector_collection(name).unwrap();
    let points: Vec<Point> = (0..count)
        .map(|i| {
            #[allow(clippy::cast_precision_loss)]
            let v: Vec<f32> = (0..dim)
                .map(|d| ((i * 31 + d * 17 + 11) % 1000) as f32 / 1000.0)
                .collect();
            Point::new(i as u64, v, Some(serde_json::json!({})))
        })
        .collect();
    coll.upsert(points).unwrap();
}

#[test]
fn test_execute_train_pq_success() {
    let dir = tempdir().unwrap();
    let db = Database::open(dir.path()).unwrap();
    // dimension=16, m=4 => 16 % 4 == 0
    db.create_collection("docs", 16, DistanceMetric::Euclidean)
        .unwrap();
    seed_training_vectors(&db, "docs", 16, 300);

    let query = Parser::parse("TRAIN QUANTIZER ON docs WITH (m=4, k=16)").unwrap();
    let results = db
        .execute_query(&query, &std::collections::HashMap::new())
        .unwrap();

    assert_eq!(results.len(), 1);
    let payload = results[0].point.payload.as_ref().unwrap();
    assert_eq!(payload["status"], serde_json::json!("trained"));
    assert_eq!(payload["type"], serde_json::json!("pq"));

    // Verify storage mode updated
    let coll = db.get_vector_collection("docs").unwrap();
    assert_eq!(coll.config().storage_mode, StorageMode::ProductQuantization);
}

#[test]
fn test_execute_train_collection_not_found() {
    let dir = tempdir().unwrap();
    let db = Database::open(dir.path()).unwrap();

    let query = Parser::parse("TRAIN QUANTIZER ON nonexistent WITH (m=4, k=16)").unwrap();
    let err = db
        .execute_query(&query, &std::collections::HashMap::new())
        .unwrap_err();
    assert!(matches!(err, Error::CollectionNotFound(_)));
}

#[test]
fn test_execute_train_invalid_m_zero() {
    let dir = tempdir().unwrap();
    let db = Database::open(dir.path()).unwrap();
    db.create_collection("docs", 16, DistanceMetric::Euclidean)
        .unwrap();
    seed_training_vectors(&db, "docs", 16, 100);

    let query = Parser::parse("TRAIN QUANTIZER ON docs WITH (m=0, k=16)").unwrap();
    let err = db
        .execute_query(&query, &std::collections::HashMap::new())
        .unwrap_err();
    assert!(matches!(err, Error::InvalidQuantizerConfig(_)));
}

#[test]
fn test_execute_train_opq_success() {
    let dir = tempdir().unwrap();
    let db = Database::open(dir.path()).unwrap();
    db.create_collection("vecs", 16, DistanceMetric::Euclidean)
        .unwrap();
    seed_training_vectors(&db, "vecs", 16, 300);

    let query = Parser::parse("TRAIN QUANTIZER ON vecs WITH (m=4, k=16, type=opq)").unwrap();
    let results = db
        .execute_query(&query, &std::collections::HashMap::new())
        .unwrap();

    assert_eq!(results.len(), 1);
    let payload = results[0].point.payload.as_ref().unwrap();
    assert_eq!(payload["type"], serde_json::json!("opq"));
    assert_eq!(payload["status"], serde_json::json!("trained"));

    let coll = db.get_vector_collection("vecs").unwrap();
    assert_eq!(coll.config().storage_mode, StorageMode::ProductQuantization);
}

#[test]
fn test_execute_train_rabitq_success() {
    let dir = tempdir().unwrap();
    let db = Database::open(dir.path()).unwrap();
    db.create_collection("rbq", 32, DistanceMetric::Euclidean)
        .unwrap();
    seed_training_vectors(&db, "rbq", 32, 100);

    let query = Parser::parse("TRAIN QUANTIZER ON rbq WITH (m=4, type=rabitq)").unwrap();
    let results = db
        .execute_query(&query, &std::collections::HashMap::new())
        .unwrap();

    assert_eq!(results.len(), 1);
    let payload = results[0].point.payload.as_ref().unwrap();
    assert_eq!(payload["type"], serde_json::json!("rabitq"));

    let coll = db.get_vector_collection("rbq").unwrap();
    assert_eq!(coll.config().storage_mode, StorageMode::RaBitQ);
}

#[test]
fn test_execute_train_updates_storage_mode() {
    let dir = tempdir().unwrap();
    let db = Database::open(dir.path()).unwrap();
    db.create_collection("docs", 16, DistanceMetric::Euclidean)
        .unwrap();
    seed_training_vectors(&db, "docs", 16, 300);

    // Verify initial state
    let coll = db.get_vector_collection("docs").unwrap();
    assert_eq!(coll.config().storage_mode, StorageMode::Full);

    let query = Parser::parse("TRAIN QUANTIZER ON docs WITH (m=4, k=16)").unwrap();
    db.execute_query(&query, &std::collections::HashMap::new())
        .unwrap();

    // After training
    let coll = db.get_vector_collection("docs").unwrap();
    assert_eq!(coll.config().storage_mode, StorageMode::ProductQuantization);
}

#[test]
fn test_execute_train_dim_not_divisible_by_m() {
    let dir = tempdir().unwrap();
    let db = Database::open(dir.path()).unwrap();
    // dim=15, m=4 => 15 % 4 != 0
    db.create_collection("bad", 15, DistanceMetric::Euclidean)
        .unwrap();
    seed_training_vectors(&db, "bad", 15, 100);

    let query = Parser::parse("TRAIN QUANTIZER ON bad WITH (m=4, k=16)").unwrap();
    let err = db
        .execute_query(&query, &std::collections::HashMap::new())
        .unwrap_err();
    // This should be caught either by our validation or by ProductQuantizer::train
    assert!(
        matches!(
            err,
            Error::InvalidQuantizerConfig(_) | Error::TrainingFailed(_)
        ),
        "Expected InvalidQuantizerConfig or TrainingFailed, got: {err:?}"
    );
}

#[test]
fn test_execute_train_rejects_retrain_without_force() {
    let dir = tempdir().unwrap();
    let db = Database::open(dir.path()).unwrap();
    db.create_collection("docs", 16, DistanceMetric::Euclidean)
        .unwrap();
    seed_training_vectors(&db, "docs", 16, 300);

    // First training succeeds
    let query = Parser::parse("TRAIN QUANTIZER ON docs WITH (m=4, k=16)").unwrap();
    db.execute_query(&query, &std::collections::HashMap::new())
        .unwrap();

    // Second training without force=true should fail
    let query2 = Parser::parse("TRAIN QUANTIZER ON docs WITH (m=4, k=16)").unwrap();
    let err = db
        .execute_query(&query2, &std::collections::HashMap::new())
        .unwrap_err();
    assert!(matches!(err, Error::InvalidQuantizerConfig(_)));
    assert!(err.to_string().contains("already trained"));
}

#[test]
fn test_execute_train_force_retrain_succeeds() {
    let dir = tempdir().unwrap();
    let db = Database::open(dir.path()).unwrap();
    db.create_collection("docs", 16, DistanceMetric::Euclidean)
        .unwrap();
    seed_training_vectors(&db, "docs", 16, 300);

    // First training
    let query = Parser::parse("TRAIN QUANTIZER ON docs WITH (m=4, k=16)").unwrap();
    db.execute_query(&query, &std::collections::HashMap::new())
        .unwrap();

    // Retrain with force=true
    let query2 = Parser::parse("TRAIN QUANTIZER ON docs WITH (m=4, k=16, force=true)").unwrap();
    let results = db
        .execute_query(&query2, &std::collections::HashMap::new())
        .unwrap();
    assert_eq!(results.len(), 1);
    let payload = results[0].point.payload.as_ref().unwrap();
    assert_eq!(payload["status"], serde_json::json!("trained"));
}

// ---------------------------------------------------------------------------
// Quantizer wiring across restarts (RaBitQ + PQ persistence round-trips)
// ---------------------------------------------------------------------------

/// Builds a sinusoidal vector — spread-out distances, no symmetric ties,
/// so brute-force/ANN top-k comparisons are stable.
fn sin_vector(dim: usize, i: usize) -> Vec<f32> {
    #[allow(clippy::cast_precision_loss)]
    (0..dim)
        .map(|d| ((i * dim + d) as f32 * 0.01).sin())
        .collect()
}

/// Inserts `count` sinusoidal vectors (ids `0..count`) into a collection.
fn seed_sin_vectors(db: &Database, name: &str, dim: usize, count: usize) {
    let coll = db.get_vector_collection(name).unwrap();
    let points: Vec<Point> = (0..count)
        .map(|i| Point::new(i as u64, sin_vector(dim, i), Some(serde_json::json!({}))))
        .collect();
    coll.upsert(points).unwrap();
}

/// Brute-force Euclidean top-k ids over the seeded sinusoidal set.
fn sin_brute_force_top_k(
    query: &[f32],
    dim: usize,
    count: usize,
    k: usize,
) -> std::collections::HashSet<u64> {
    let mut dists: Vec<(u64, f32)> = (0..count)
        .map(|i| {
            let v = sin_vector(dim, i);
            let d: f32 = query.iter().zip(&v).map(|(a, b)| (a - b) * (a - b)).sum();
            (i as u64, d)
        })
        .collect();
    dists.sort_by(|a, b| a.1.total_cmp(&b.1));
    dists.into_iter().take(k).map(|(id, _)| id).collect()
}

/// `TRAIN QUANTIZER 'rabitq'` on a collection created with `storage='rabitq'`
/// must install the quantizer into the live backend (no restart needed).
#[test]
fn test_execute_train_rabitq_installs_into_live_backend() {
    let dir = tempdir().unwrap();
    let db = Database::open(dir.path()).unwrap();
    db.create_collection_with_options(
        "rbq_live",
        64,
        DistanceMetric::Euclidean,
        StorageMode::RaBitQ,
    )
    .unwrap();
    seed_sin_vectors(&db, "rbq_live", 64, 300);

    let coll = db.resolve_writable_collection("rbq_live").unwrap();
    assert!(
        !coll.is_rabitq_quantizer_trained(),
        "300 inserts stay below the lazy-train threshold"
    );

    let query = Parser::parse("TRAIN QUANTIZER ON rbq_live WITH (m=4, type=rabitq)").unwrap();
    db.execute_query(&query, &std::collections::HashMap::new())
        .unwrap();

    assert!(
        coll.is_rabitq_quantizer_trained(),
        "TRAIN must install the quantizer into the live RaBitQ backend"
    );

    let results = coll.search(&sin_vector(64, 42), 5).unwrap();
    assert_eq!(
        results.first().map(|r| r.point.id),
        Some(42),
        "self-query must return itself as top-1 through the RaBitQ path"
    );
}

/// End-to-end restart wiring: create → insert → TRAIN 'rabitq' → reopen the
/// Database → the trained quantizer must be restored from `rabitq.idx` and
/// search must keep recall parity with brute force.
#[test]
fn test_train_rabitq_wiring_survives_reopen() {
    let dir = tempdir().unwrap();
    {
        let db = Database::open(dir.path()).unwrap();
        // Created with the default Full mode: TRAIN flips the config to
        // RaBitQ and the backend takes effect at the reopen below.
        db.create_collection("rbq_reopen", 64, DistanceMetric::Euclidean)
            .unwrap();
        seed_sin_vectors(&db, "rbq_reopen", 64, 300);
        let query = Parser::parse("TRAIN QUANTIZER ON rbq_reopen WITH (m=4, type=rabitq)").unwrap();
        db.execute_query(&query, &std::collections::HashMap::new())
            .unwrap();
        assert_eq!(db.flush_all(), 0, "flush before reopen must succeed");
    }

    let db = Database::open(dir.path()).unwrap();
    let coll = db.resolve_writable_collection("rbq_reopen").unwrap();
    assert_eq!(coll.config().storage_mode, StorageMode::RaBitQ);
    assert!(
        coll.is_rabitq_quantizer_trained(),
        "rabitq.idx must be reloaded and installed on open"
    );

    // Recall parity with brute force (set overlap, not exact scores).
    let query_vec = sin_vector(64, 42);
    let results = coll.search(&query_vec, 10).unwrap();
    assert_eq!(results.len(), 10);
    let result_ids: std::collections::HashSet<u64> = results.iter().map(|r| r.point.id).collect();
    let brute_ids = sin_brute_force_top_k(&query_vec, 64, 300, 10);
    let overlap = brute_ids.intersection(&result_ids).count();
    // Same bar as rabitq_precision_tests: exact-f32 rerank over oversampled
    // candidates on a small set must be near-perfect; anything lower hides
    // partial store misalignment.
    assert!(
        overlap >= 9,
        "recall@10 vs brute force should be >= 0.9 after reopen, got {overlap}/10"
    );
}

/// The persisted TRAIN artifact must survive a reopen even when the
/// collection exceeds the lazy-training threshold (1000 vectors): gap
/// recovery re-inserts every vector on open, and without the pre-recovery
/// install those inserts would lazily train a throwaway quantizer that
/// preempts `rabitq.idx` (review 2026-06-11 finding 1).
#[test]
fn test_train_rabitq_survives_reopen_beyond_lazy_threshold() {
    let dir = tempdir().unwrap();
    {
        let db = Database::open(dir.path()).unwrap();
        db.create_collection("rbq_large", 32, DistanceMetric::Euclidean)
            .unwrap();
        seed_sin_vectors(&db, "rbq_large", 32, 1200);
        let query = Parser::parse("TRAIN QUANTIZER ON rbq_large WITH (m=4, type=rabitq)").unwrap();
        db.execute_query(&query, &std::collections::HashMap::new())
            .unwrap();
        assert_eq!(db.flush_all(), 0, "flush before reopen must succeed");
    }

    let db = Database::open(dir.path()).unwrap();
    let coll = db.resolve_writable_collection("rbq_large").unwrap();
    assert!(
        coll.is_rabitq_quantizer_trained(),
        "the persisted quantizer must be installed before gap recovery"
    );

    let query_vec = sin_vector(32, 7);
    let results = coll.search(&query_vec, 10).unwrap();
    assert_eq!(results.len(), 10);
    let result_ids: std::collections::HashSet<u64> = results.iter().map(|r| r.point.id).collect();
    let brute_ids = sin_brute_force_top_k(&query_vec, 32, 1200, 10);
    let overlap = brute_ids.intersection(&result_ids).count();
    assert!(
        overlap >= 9,
        "recall@10 vs brute force should be >= 0.9 after large reopen, got {overlap}/10"
    );
}

/// A `codebook.pq` whose dimension does not match the collection must be
/// rejected at open with a single warning (clean f32 fallback) instead of
/// silently producing an empty PQ cache via per-vector encode failures.
#[test]
fn test_foreign_pq_codebook_dimension_rejected_on_open() {
    let dir = tempdir().unwrap();
    {
        let db = Database::open(dir.path()).unwrap();
        db.create_collection_with_options(
            "pq_mismatch",
            16,
            DistanceMetric::Euclidean,
            StorageMode::ProductQuantization,
        )
        .unwrap();
        seed_sin_vectors(&db, "pq_mismatch", 16, 50);
        assert_eq!(db.flush_all(), 0, "flush before reopen must succeed");

        // Plant a foreign 32-dim codebook into the collection directory
        // AFTER the flush so nothing overwrites it.
        let coll = db.resolve_writable_collection("pq_mismatch").unwrap();
        let foreign: Vec<Vec<f32>> = (0..64).map(|i| sin_vector(32, i)).collect();
        let pq = crate::quantization::ProductQuantizer::train(&foreign, 4, 16).unwrap();
        pq.save_codebook(coll.data_path()).unwrap();
    }

    let db = Database::open(dir.path()).unwrap();
    let coll = db.resolve_writable_collection("pq_mismatch").unwrap();
    assert!(
        coll.pq_quantizer_read().is_none(),
        "mismatched codebook must not be installed"
    );
    assert_eq!(
        coll.pq_cache_len(),
        0,
        "no PQ cache must be rebuilt from a foreign codebook"
    );
    // Search keeps working on the exact f32 path.
    let results = coll.search(&sin_vector(16, 7), 5).unwrap();
    assert!(!results.is_empty(), "f32 fallback search must keep working");
}

/// A lazily-trained `RaBitQ` quantizer (1000-insert threshold, no explicit
/// `TRAIN QUANTIZER`) must be persisted to `rabitq.idx` by the full flush and
/// reinstalled on reopen, instead of silently degrading to f32 search
/// (parity with the PQ codebook flush).
#[test]
fn test_lazy_trained_rabitq_survives_reopen_via_flush() {
    let dir = tempdir().unwrap();
    {
        let db = Database::open(dir.path()).unwrap();
        db.create_collection_with_options(
            "rbq_lazy",
            32,
            DistanceMetric::Euclidean,
            StorageMode::RaBitQ,
        )
        .unwrap();
        seed_sin_vectors(&db, "rbq_lazy", 32, 1200);
        let coll = db.resolve_writable_collection("rbq_lazy").unwrap();
        assert!(
            coll.is_rabitq_quantizer_trained(),
            "1200 inserts must cross the lazy-train threshold"
        );
        assert_eq!(db.flush_all(), 0, "flush before reopen must succeed");
        assert!(
            coll.data_path().join("rabitq.idx").exists(),
            "full flush must persist the lazily-trained quantizer"
        );
    }

    let db = Database::open(dir.path()).unwrap();
    let coll = db.resolve_writable_collection("rbq_lazy").unwrap();
    assert!(
        coll.is_rabitq_quantizer_trained(),
        "lazily-trained quantizer must be reinstalled from rabitq.idx on open"
    );

    let query_vec = sin_vector(32, 7);
    let results = coll.search(&query_vec, 10).unwrap();
    assert_eq!(results.len(), 10);
    let result_ids: std::collections::HashSet<u64> = results.iter().map(|r| r.point.id).collect();
    let brute_ids = sin_brute_force_top_k(&query_vec, 32, 1200, 10);
    let overlap = brute_ids.intersection(&result_ids).count();
    assert!(
        overlap >= 9,
        "recall@10 vs brute force should be >= 0.9 after lazy reopen, got {overlap}/10"
    );
}

/// PQ persistence round-trip: the codebook saved by `TRAIN QUANTIZER` must be
/// reloaded on open and the PQ cache rebuilt, so the ADC rescore path stays
/// live after a restart.
#[test]
fn test_train_pq_codebook_and_cache_survive_reopen() {
    let dir = tempdir().unwrap();
    {
        let db = Database::open(dir.path()).unwrap();
        // storage='pq' from creation: inserts lazily train an in-memory
        // quantizer after 128 points, but only TRAIN persists the codebook —
        // force=true replaces the lazily trained one.
        db.create_collection_with_options(
            "pqc",
            16,
            DistanceMetric::Euclidean,
            StorageMode::ProductQuantization,
        )
        .unwrap();
        seed_sin_vectors(&db, "pqc", 16, 300);
        let query = Parser::parse("TRAIN QUANTIZER ON pqc WITH (m=4, k=16, force=true)").unwrap();
        db.execute_query(&query, &std::collections::HashMap::new())
            .unwrap();
        assert_eq!(db.flush_all(), 0, "flush before reopen must succeed");
    }

    let db = Database::open(dir.path()).unwrap();
    let coll = db.resolve_writable_collection("pqc").unwrap();
    assert_eq!(coll.config().storage_mode, StorageMode::ProductQuantization);
    assert!(
        coll.pq_quantizer_read().is_some(),
        "codebook.pq must be reloaded on open"
    );
    assert_eq!(
        coll.pq_cache_len(),
        300,
        "PQ cache must be rebuilt for every stored vector"
    );

    // ADC-rescored search still finds the self-query (PQ is lossy: top-10,
    // not top-1).
    let results = coll.search(&sin_vector(16, 42), 10).unwrap();
    assert!(
        results.iter().any(|r| r.point.id == 42),
        "self-query must appear in PQ-rescored top-10 after reopen"
    );
}

#[test]
fn test_execute_train_with_sample_limit() {
    let dir = tempdir().unwrap();
    let db = Database::open(dir.path()).unwrap();
    db.create_collection("docs", 16, DistanceMetric::Euclidean)
        .unwrap();
    seed_training_vectors(&db, "docs", 16, 500);

    // Train with sample=100 (fewer than the 500 vectors available)
    let query = Parser::parse("TRAIN QUANTIZER ON docs WITH (m=4, k=16, sample=100)").unwrap();
    let results = db
        .execute_query(&query, &std::collections::HashMap::new())
        .unwrap();
    assert_eq!(results.len(), 1);
    let payload = results[0].point.payload.as_ref().unwrap();
    assert_eq!(payload["training_vectors"], serde_json::json!(100));
}

#[test]
fn test_execute_train_sample_larger_than_dataset() {
    let dir = tempdir().unwrap();
    let db = Database::open(dir.path()).unwrap();
    db.create_collection("docs", 16, DistanceMetric::Euclidean)
        .unwrap();
    seed_training_vectors(&db, "docs", 16, 200);

    // sample=9999 but only 200 vectors — should use all 200
    let query = Parser::parse("TRAIN QUANTIZER ON docs WITH (m=4, k=16, sample=9999)").unwrap();
    let results = db
        .execute_query(&query, &std::collections::HashMap::new())
        .unwrap();
    let payload = results[0].point.payload.as_ref().unwrap();
    assert_eq!(payload["training_vectors"], serde_json::json!(200));
}

#[test]
fn test_execute_train_missing_m_is_required() {
    let dir = tempdir().unwrap();
    let db = Database::open(dir.path()).unwrap();
    db.create_collection("docs", 16, DistanceMetric::Euclidean)
        .unwrap();
    seed_training_vectors(&db, "docs", 16, 100);

    // No m parameter at all
    let query = Parser::parse("TRAIN QUANTIZER ON docs WITH (k=16)").unwrap();
    let err = db
        .execute_query(&query, &std::collections::HashMap::new())
        .unwrap_err();
    assert!(matches!(err, Error::InvalidQuantizerConfig(_)));
    assert!(err.to_string().contains("must be > 0"));
}

#[test]
#[allow(clippy::cast_possible_truncation)]
fn test_database_open_loads_sparse_index() {
    use crate::index::sparse::persistence::{compact, wal_append_upsert};
    use crate::index::sparse::types::SparseVector;
    use crate::index::sparse::SparseInvertedIndex;

    let dir = tempdir().unwrap();

    // Step 1: Create a collection via Database API
    {
        let db = Database::open(dir.path()).unwrap();
        db.create_collection("sparse_test", 4, DistanceMetric::Cosine)
            .unwrap();
    }

    // Step 2: Manually write sparse index files into collection directory
    let coll_dir = dir.path().join("sparse_test");
    {
        let idx = SparseInvertedIndex::new();
        for i in 0..20u64 {
            let v = SparseVector::new(vec![(1, 1.0), (2 + i as u32 % 5, 0.5)]);
            idx.insert(i, &v);
        }
        compact(&coll_dir, &idx).unwrap();
    }

    // Step 3: Reopen database and verify sparse index is loaded
    {
        let db = Database::open(dir.path()).unwrap();
        let coll = db.get_vector_collection("sparse_test").unwrap();
        let guard = coll.inner.sparse_indexes().read();
        assert!(
            guard.contains_key(""),
            "Default sparse index should be loaded from disk on Database::open()"
        );
        let sparse = guard.get("").unwrap();
        assert_eq!(sparse.doc_count(), 20);
    }

    // Step 4: Test with WAL-only scenario (no compacted files)
    let dir2 = tempdir().unwrap();
    {
        let db = Database::open(dir2.path()).unwrap();
        db.create_collection("wal_only", 4, DistanceMetric::Cosine)
            .unwrap();
    }
    let coll_dir2 = dir2.path().join("wal_only");
    {
        let wal_path = coll_dir2.join("sparse.wal");
        for i in 0..5u64 {
            let v = SparseVector::new(vec![(1, 1.0)]);
            wal_append_upsert(&wal_path, i, &v).unwrap();
        }
    }
    {
        let db = Database::open(dir2.path()).unwrap();
        let coll = db.get_vector_collection("wal_only").unwrap();
        let guard = coll.inner.sparse_indexes().read();
        assert!(
            guard.contains_key(""),
            "WAL-only sparse index should be loaded on Database::open()"
        );
        assert_eq!(guard.get("").unwrap().doc_count(), 5);
    }
}

#[test]
fn test_update_guardrails_propagates_to_collections() {
    use crate::guardrails::QueryLimits;

    let dir = tempdir().unwrap();
    let db = Database::open(dir.path()).unwrap();

    db.create_collection("coll_a", 128, DistanceMetric::Cosine)
        .unwrap();
    db.create_collection("coll_b", 64, DistanceMetric::Euclidean)
        .unwrap();

    // Default timeout is 30_000 ms.
    let coll_a = db.get_vector_collection("coll_a").unwrap();
    assert_eq!(coll_a.guard_rails().limits().timeout_ms, 30_000);

    // Update guardrails at the database level.
    let new_limits = QueryLimits::default()
        .with_timeout_ms(5_000)
        .with_max_depth(3);
    db.update_guardrails(&new_limits);

    // Both collections should reflect the updated limits.
    let coll_a = db.get_vector_collection("coll_a").unwrap();
    let coll_b = db.get_vector_collection("coll_b").unwrap();
    assert_eq!(coll_a.guard_rails().limits().timeout_ms, 5_000);
    assert_eq!(coll_a.guard_rails().limits().max_depth, 3);
    assert_eq!(coll_b.guard_rails().limits().timeout_ms, 5_000);
    assert_eq!(coll_b.guard_rails().limits().max_depth, 3);
}

#[test]
fn test_update_guardrails_affects_query_context() {
    use crate::guardrails::QueryLimits;

    let dir = tempdir().unwrap();
    let db = Database::open(dir.path()).unwrap();
    db.create_collection("ctx_test", 128, DistanceMetric::Cosine)
        .unwrap();

    // Tighten the max_depth to 2.
    let new_limits = QueryLimits::default().with_max_depth(2);
    db.update_guardrails(&new_limits);

    // A query context created after the update should enforce the new limit.
    let coll = db.get_vector_collection("ctx_test").unwrap();
    let ctx = coll.guard_rails().create_context();
    assert!(ctx.check_depth(2).is_ok());
    assert!(ctx.check_depth(3).is_err());
}

// =========================================================================
// US-001: File locking tests
// =========================================================================

#[test]
fn test_database_file_locking_prevents_second_open() {
    let dir = tempdir().unwrap();
    let _db1 = Database::open(dir.path()).unwrap();

    // Second open on the same path must fail with DatabaseLocked
    let result = Database::open(dir.path());
    match result {
        Ok(_) => panic!("Expected DatabaseLocked error, got Ok"),
        Err(err) => assert!(
            matches!(err, crate::Error::DatabaseLocked(_)),
            "Expected DatabaseLocked, got: {err:?}"
        ),
    }
}

#[test]
fn test_database_lock_released_on_drop() {
    let dir = tempdir().unwrap();

    {
        let _db = Database::open(dir.path()).unwrap();
        // lock held inside this scope
    }
    // After drop, the lock should be released
    let _db2 = Database::open(dir.path()).unwrap();
}

// =========================================================================
// US-006: Collection diagnostics tests
// =========================================================================

#[test]
fn test_diagnostics_healthy_vector_collection() {
    let dir = tempdir().unwrap();
    let db = Database::open(dir.path()).unwrap();
    db.create_vector_collection("diag_test", 4, DistanceMetric::Cosine)
        .unwrap();

    let coll = db.get_vector_collection("diag_test").unwrap();
    coll.upsert(vec![Point::new(1, vec![0.1, 0.2, 0.3, 0.4], None)])
        .unwrap();

    let diag = coll.diagnostics();
    assert!(diag.has_vectors);
    assert!(diag.search_ready);
    assert!(diag.dimension_configured);
    assert_eq!(diag.point_count, 1);
    assert_eq!(diag.index_health, crate::collection::IndexHealth::Healthy);
}

#[test]
fn test_diagnostics_empty_vector_collection() {
    let dir = tempdir().unwrap();
    let db = Database::open(dir.path()).unwrap();
    db.create_vector_collection("empty_diag", 4, DistanceMetric::Cosine)
        .unwrap();

    let diag = db.collection_diagnostics("empty_diag").unwrap();
    assert!(!diag.has_vectors);
    assert!(!diag.search_ready);
    assert!(diag.dimension_configured);
    assert_eq!(diag.point_count, 0);
    assert_eq!(diag.index_health, crate::collection::IndexHealth::Empty);
}

#[test]
fn test_diagnostics_not_found() {
    let dir = tempdir().unwrap();
    let db = Database::open(dir.path()).unwrap();
    let result = db.collection_diagnostics("nonexistent");
    assert!(result.is_err());
}

// =========================================================================
// VelesConfig wiring — Wave 3 Commit 6
//
// The root config used to be defined in `config.rs` and loaded only by
// server/CLI code; `Database::open` ignored it entirely. Commit 6 wires
// a `config: Arc<VelesConfig>` field into `Database` and exposes the
// `open_with_config` / `open_with_observer_and_config` constructors.
// These tests anchor the happy path, the default fallback, and the
// Arc-based accessor contract so later commits (7, 8, 9) can rely on
// `db.config()` in every sub-system with confidence.
// =========================================================================

#[test]
fn test_database_open_default_config_matches_veles_config_default() {
    use crate::config::VelesConfig;

    let dir = tempdir().unwrap();
    let db = Database::open(dir.path()).unwrap();

    // `Database::open` must install the exact same `VelesConfig::default()`
    // a user would get by calling the public builder — otherwise the
    // "same behaviour as pre-Wave-3" guarantee is broken.
    let default = VelesConfig::default();
    let stored = db.config();
    assert_eq!(
        stored.limits.max_collections,
        default.limits.max_collections
    );
    assert_eq!(stored.limits.max_dimensions, default.limits.max_dimensions);
    assert_eq!(stored.wal_batch.enabled, default.wal_batch.enabled);
    assert_eq!(
        stored.wal_batch.max_batch_size,
        default.wal_batch.max_batch_size
    );
}

#[test]
fn test_database_open_with_config_preserves_custom_fields() {
    use crate::config::{LimitsConfig, VelesConfig, WalBatchConfig};

    let dir = tempdir().unwrap();

    let custom = VelesConfig {
        limits: LimitsConfig {
            max_dimensions: 2048,
            max_vectors_per_collection: 50_000_000,
            max_collections: 500,
            max_payload_size: 524_288,
            max_perfect_mode_vectors: 250_000,
        },
        wal_batch: WalBatchConfig {
            enabled: true,
            commit_delay_us: 250,
            max_batch_size: 256,
        },
        ..VelesConfig::default()
    };

    let db = Database::open_with_config(dir.path(), custom).unwrap();
    let stored = db.config();

    assert_eq!(stored.limits.max_dimensions, 2048);
    assert_eq!(stored.limits.max_collections, 500);
    assert_eq!(stored.limits.max_payload_size, 524_288);
    assert!(stored.wal_batch.enabled);
    assert_eq!(stored.wal_batch.commit_delay_us, 250);
    assert_eq!(stored.wal_batch.max_batch_size, 256);
}

#[test]
fn test_database_config_arc_shares_same_instance() {
    let dir = tempdir().unwrap();
    let db = Database::open(dir.path()).unwrap();

    // `config_arc` must hand out clones of the same `Arc`, not
    // deep-clone the inner struct. Sub-systems (background index
    // builders, async reindex managers) rely on this so that config
    // updates propagate without forcing a refcount traversal of the
    // whole database.
    let a = db.config_arc();
    let b = db.config_arc();
    assert!(std::sync::Arc::ptr_eq(&a, &b));
    // And the underlying pointer is the same as the `config()` borrow.
    let r: *const crate::config::VelesConfig = db.config();
    let a_ptr: *const crate::config::VelesConfig = std::sync::Arc::as_ptr(&a);
    assert!(std::ptr::eq(a_ptr, r));
}

// =========================================================================
// LimitsConfig enforcement — Wave 3 Commit 7
//
// Runtime gates that read from `database.config().limits` and refuse
// operations that would exceed a user-supplied ceiling. These tests
// anchor each gate with nominal, edge, and negative coverage so later
// refactors cannot silently relax the enforcement.
// =========================================================================

#[test]
fn test_max_collections_limit_refuses_excess_with_guard_rail_error() {
    use crate::config::{LimitsConfig, VelesConfig};

    let dir = tempdir().unwrap();
    let config = VelesConfig {
        limits: LimitsConfig {
            max_collections: 2,
            ..LimitsConfig::default()
        },
        ..VelesConfig::default()
    };
    let db = Database::open_with_config(dir.path(), config).unwrap();

    db.create_collection("one", 4, DistanceMetric::Cosine)
        .unwrap();
    db.create_collection("two", 4, DistanceMetric::Cosine)
        .unwrap();

    // The third creation must fail with a guard-rail violation carrying
    // the current/cap ratio in the message — that string is the contract
    // for any client-side parser that wants to surface "raise the cap"
    // guidance to the end user.
    let err = db
        .create_collection("three", 4, DistanceMetric::Cosine)
        .unwrap_err();
    match err {
        Error::GuardRail(msg) => {
            assert!(msg.contains("max_collections"));
            assert!(msg.contains("2 / 2"));
        }
        other => panic!("expected GuardRail error, got {other:?}"),
    }
}

#[test]
fn test_max_collections_limit_counts_across_all_registries() {
    use crate::config::{LimitsConfig, VelesConfig};

    let dir = tempdir().unwrap();
    let config = VelesConfig {
        limits: LimitsConfig {
            max_collections: 3,
            ..LimitsConfig::default()
        },
        ..VelesConfig::default()
    };
    let db = Database::open_with_config(dir.path(), config).unwrap();

    // Mix vector + graph + metadata collections — the limit is
    // tenant-wide, not per-type.
    db.create_collection("v1", 4, DistanceMetric::Cosine)
        .unwrap();
    db.create_graph_collection("g1", crate::collection::GraphSchema::new())
        .unwrap();
    db.create_metadata_collection("m1").unwrap();

    // Fourth collection of any kind must be refused.
    let err = db.create_metadata_collection("m2").unwrap_err();
    assert!(matches!(err, Error::GuardRail(_)));
}

#[test]
fn test_max_dimensions_limit_refuses_oversize_vector() {
    use crate::config::{LimitsConfig, VelesConfig};

    let dir = tempdir().unwrap();
    let config = VelesConfig {
        limits: LimitsConfig {
            max_dimensions: 512,
            ..LimitsConfig::default()
        },
        ..VelesConfig::default()
    };
    let db = Database::open_with_config(dir.path(), config).unwrap();

    // Exactly at the cap is accepted (inclusive boundary).
    db.create_collection("boundary", 512, DistanceMetric::Cosine)
        .unwrap();

    // One above the cap is refused with a guard-rail error.
    let err = db
        .create_vector_collection_with_options(
            "too_big",
            513,
            DistanceMetric::Cosine,
            StorageMode::Full,
        )
        .unwrap_err();
    match err {
        Error::GuardRail(msg) => {
            assert!(msg.contains("513"));
            assert!(msg.contains("512"));
            assert!(msg.contains("max_dimensions"));
        }
        other => panic!("expected GuardRail error, got {other:?}"),
    }
}

#[test]
fn test_max_dimensions_limit_applies_to_graph_with_embeddings() {
    use crate::config::{LimitsConfig, VelesConfig};

    let dir = tempdir().unwrap();
    let config = VelesConfig {
        limits: LimitsConfig {
            max_dimensions: 128,
            ..LimitsConfig::default()
        },
        ..VelesConfig::default()
    };
    let db = Database::open_with_config(dir.path(), config).unwrap();

    // Graph WITHOUT embeddings is always accepted — dimension 0 bypasses
    // the gate so metadata-only graphs are unaffected.
    db.create_graph_collection("plain_graph", crate::collection::GraphSchema::new())
        .unwrap();

    // Graph WITH embeddings must obey the same dimension cap as vector
    // collections, because the embeddings live in the same HNSW index.
    let err = db
        .create_graph_collection_with_embeddings(
            "embed_graph",
            crate::collection::GraphSchema::new(),
            256,
            DistanceMetric::Cosine,
        )
        .unwrap_err();
    assert!(matches!(err, Error::GuardRail(_)));
}

#[test]
fn test_limits_config_default_accepts_common_embedding_dims() {
    // Regression guard: the default LimitsConfig must accept every
    // dimension used by popular embedding models without any user
    // configuration. If someone tightens the default too much, this
    // test catches the silent breakage immediately.
    let dir = tempdir().unwrap();
    let db = Database::open(dir.path()).unwrap();

    for (name, dim) in [
        ("minilm", 384),
        ("bert", 768),
        ("openai_small", 1536),
        ("openai_large", 3072),
    ] {
        db.create_collection(name, dim, DistanceMetric::Cosine)
            .unwrap_or_else(|e| panic!("default limits should accept {name} ({dim}-d), got {e:?}"));
    }
}

#[test]
fn test_dimension_zero_is_exempt_from_limits_gate() {
    // Metadata-only collections pass dimension=0 down the same
    // pipeline — the dimension-limit gate must NOT reject them.
    let dir = tempdir().unwrap();
    let db = Database::open(dir.path()).unwrap();

    db.create_metadata_collection("meta").unwrap();
    assert_eq!(db.list_collections(), vec!["meta"]);
}