mirror of
https://github.com/meilisearch/meilisearch.git
synced 2025-07-28 17:21:03 +00:00
Add more snapshots
This commit is contained in:
committed by
Loïc Lecrenier
parent
afdf87f6f7
commit
079ed4a992
@ -853,7 +853,7 @@ mod tests {
|
||||
txn.commit().unwrap();
|
||||
}
|
||||
verify_structure_validity(&index, 0);
|
||||
milli_snap!(format!("{index}"));
|
||||
milli_snap!(format!("{index}"), "before_delete");
|
||||
|
||||
for &key in keys.iter() {
|
||||
verify_structure_validity(&index, 0);
|
||||
@ -862,11 +862,11 @@ mod tests {
|
||||
txn.commit().unwrap();
|
||||
}
|
||||
verify_structure_validity(&index, 0);
|
||||
milli_snap!(format!("{index}"));
|
||||
milli_snap!(format!("{index}"), "after_delete");
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn shuffle_merge_string() {
|
||||
fn shuffle_merge_string_and_delete() {
|
||||
let index = FacetIndex::<StrRefCodec>::new(4, 8);
|
||||
|
||||
let mut keys = (1000..1064).into_iter().collect::<Vec<_>>();
|
||||
@ -883,7 +883,7 @@ mod tests {
|
||||
txn.commit().unwrap();
|
||||
}
|
||||
verify_structure_validity(&index, 0);
|
||||
milli_snap!(format!("{index}"), 1);
|
||||
milli_snap!(format!("{index}"), "before_delete");
|
||||
|
||||
for &key in keys.iter() {
|
||||
verify_structure_validity(&index, 0);
|
||||
@ -892,7 +892,7 @@ mod tests {
|
||||
txn.commit().unwrap();
|
||||
}
|
||||
verify_structure_validity(&index, 0);
|
||||
milli_snap!(format!("{index}"), 2);
|
||||
milli_snap!(format!("{index}"), "after_delete");
|
||||
}
|
||||
|
||||
// fuzz tests
|
||||
|
@ -0,0 +1,4 @@
|
||||
---
|
||||
source: milli/src/update/facet/incremental.rs
|
||||
---
|
||||
b17b2c4ec87a778aae07854c96c08b48
|
Reference in New Issue
Block a user