2022-08-03 08:45:26 +02:00
|
|
|
use crate::{
|
|
|
|
heed_codec::facet::{
|
|
|
|
FacetLevelValueU32Codec, FacetStringLevelZeroCodec, FacetStringLevelZeroValueCodec,
|
|
|
|
FacetStringZeroBoundsValueCodec,
|
|
|
|
},
|
2022-08-03 16:24:28 +02:00
|
|
|
make_db_snap_from_iter, CboRoaringBitmapCodec, ExternalDocumentsIds, Index,
|
2022-08-03 08:45:26 +02:00
|
|
|
};
|
2022-08-03 16:24:28 +02:00
|
|
|
use heed::{types::ByteSlice, BytesDecode};
|
|
|
|
use roaring::RoaringBitmap;
|
|
|
|
use std::path::Path;
|
|
|
|
use std::{borrow::Cow, fmt::Write};
|
2022-08-03 08:45:26 +02:00
|
|
|
|
|
|
|
#[track_caller]
|
2022-08-03 16:24:28 +02:00
|
|
|
pub fn default_db_snapshot_settings_for_test(name: Option<&str>) -> insta::Settings {
|
2022-08-03 08:45:26 +02:00
|
|
|
let mut settings = insta::Settings::clone_current();
|
|
|
|
settings.set_prepend_module_to_snapshot(false);
|
|
|
|
let path = Path::new(std::panic::Location::caller().file());
|
|
|
|
let path = path.strip_prefix("milli/src").unwrap();
|
|
|
|
settings.set_omit_expression(true);
|
2022-08-03 16:24:28 +02:00
|
|
|
let test_name = std::thread::current().name().unwrap().rsplit("::").next().unwrap().to_owned();
|
2022-08-03 08:45:26 +02:00
|
|
|
|
2022-08-03 16:24:28 +02:00
|
|
|
if let Some(name) = name {
|
|
|
|
settings.set_snapshot_path(Path::new("snapshots").join(path).join(test_name).join(name));
|
|
|
|
} else {
|
|
|
|
settings.set_snapshot_path(Path::new("snapshots").join(path).join(test_name));
|
|
|
|
}
|
2022-08-03 08:45:26 +02:00
|
|
|
|
2022-08-03 16:24:28 +02:00
|
|
|
settings
|
|
|
|
}
|
|
|
|
|
|
|
|
#[macro_export]
|
|
|
|
macro_rules! db_snap {
|
2022-08-03 16:33:36 +02:00
|
|
|
($index:ident, $db_name:ident, $name:expr) => {
|
2022-08-03 16:24:28 +02:00
|
|
|
let settings = $crate::snapshot_tests::default_db_snapshot_settings_for_test(Some(
|
|
|
|
&format!("{}", $name),
|
|
|
|
));
|
|
|
|
settings.bind(|| {
|
|
|
|
let snap = $crate::full_snap_of_db!($index, $db_name);
|
|
|
|
let snaps = $crate::snapshot_tests::convert_snap_to_hash_if_needed(stringify!($db_name), &snap, false);
|
|
|
|
for (name, snap) in snaps {
|
|
|
|
insta::assert_snapshot!(name, snap);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
};
|
|
|
|
($index:ident, $db_name:ident) => {
|
|
|
|
let settings = $crate::snapshot_tests::default_db_snapshot_settings_for_test(None);
|
|
|
|
settings.bind(|| {
|
|
|
|
let snap = $crate::full_snap_of_db!($index, $db_name);
|
|
|
|
let snaps = $crate::snapshot_tests::convert_snap_to_hash_if_needed(stringify!($db_name), &snap, false);
|
|
|
|
for (name, snap) in snaps {
|
|
|
|
insta::assert_snapshot!(name, snap);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
};
|
|
|
|
($index:ident, $db_name:ident, @$inline:literal) => {
|
|
|
|
let settings = $crate::snapshot_tests::default_db_snapshot_settings_for_test(None);
|
|
|
|
settings.bind(|| {
|
|
|
|
let snap = $crate::full_snap_of_db!($index, $db_name);
|
|
|
|
let snaps = $crate::snapshot_tests::convert_snap_to_hash_if_needed(stringify!($db_name), &snap, true);
|
|
|
|
for (name, snap) in snaps {
|
|
|
|
if !name.ends_with(".full") {
|
|
|
|
insta::assert_snapshot!(snap, @$inline);
|
|
|
|
} else {
|
|
|
|
insta::assert_snapshot!(name, snap);
|
2022-08-03 08:45:26 +02:00
|
|
|
}
|
2022-08-03 16:24:28 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
};
|
|
|
|
($index:ident, $db_name:ident, $name:literal, @$inline:literal) => {
|
|
|
|
let settings = $crate::snapshot_tests::default_db_snapshot_settings_for_test(Some(format!("", $name)));
|
|
|
|
settings.bind(|| {
|
|
|
|
let snap = $crate::full_snap_of_db!($index, $db_name);
|
|
|
|
let snaps = $crate::snapshot_tests::convert_snap_to_hash_if_needed(stringify!($db_name), &snap, true);
|
|
|
|
for (name, snap) in snaps {
|
|
|
|
if !name.ends_with(".full") {
|
|
|
|
insta::assert_snapshot!(snap, @$inline);
|
2022-08-03 08:45:26 +02:00
|
|
|
} else {
|
2022-08-03 16:24:28 +02:00
|
|
|
insta::assert_snapshot!(name, snap);
|
2022-08-03 08:45:26 +02:00
|
|
|
}
|
|
|
|
}
|
2022-08-03 16:24:28 +02:00
|
|
|
});
|
|
|
|
};
|
|
|
|
}
|
2022-08-03 08:45:26 +02:00
|
|
|
|
2022-08-03 16:24:28 +02:00
|
|
|
pub fn snap_word_docids(index: &Index) -> String {
|
|
|
|
let snap = make_db_snap_from_iter!(index, word_docids, |(s, b)| {
|
|
|
|
&format!("{s:<16} {}", display_bitmap(&b))
|
|
|
|
});
|
|
|
|
snap
|
|
|
|
}
|
|
|
|
pub fn snap_exact_word_docids(index: &Index) -> String {
|
|
|
|
let snap = make_db_snap_from_iter!(index, exact_word_docids, |(s, b)| {
|
|
|
|
&format!("{s:<16} {}", display_bitmap(&b))
|
|
|
|
});
|
|
|
|
snap
|
|
|
|
}
|
|
|
|
pub fn snap_word_prefix_docids(index: &Index) -> String {
|
|
|
|
let snap = make_db_snap_from_iter!(index, word_prefix_docids, |(s, b)| {
|
|
|
|
&format!("{s:<16} {}", display_bitmap(&b))
|
|
|
|
});
|
|
|
|
snap
|
|
|
|
}
|
|
|
|
pub fn snap_exact_word_prefix_docids(index: &Index) -> String {
|
|
|
|
let snap = make_db_snap_from_iter!(index, exact_word_prefix_docids, |(s, b)| {
|
|
|
|
&format!("{s:<16} {}", display_bitmap(&b))
|
|
|
|
});
|
|
|
|
snap
|
|
|
|
}
|
|
|
|
pub fn snap_docid_word_positions(index: &Index) -> String {
|
|
|
|
let snap = make_db_snap_from_iter!(index, docid_word_positions, |((idx, s), b)| {
|
|
|
|
&format!("{idx:<6} {s:<16} {}", display_bitmap(&b))
|
|
|
|
});
|
|
|
|
snap
|
|
|
|
}
|
|
|
|
pub fn snap_word_pair_proximity_docids(index: &Index) -> String {
|
|
|
|
let snap = make_db_snap_from_iter!(index, word_pair_proximity_docids, |(
|
|
|
|
(word1, word2, proximity),
|
|
|
|
b,
|
|
|
|
)| {
|
|
|
|
&format!("{word1:<16} {word2:<16} {proximity:<2} {}", display_bitmap(&b))
|
|
|
|
});
|
|
|
|
snap
|
|
|
|
}
|
|
|
|
pub fn snap_word_prefix_pair_proximity_docids(index: &Index) -> String {
|
|
|
|
let snap = make_db_snap_from_iter!(index, word_prefix_pair_proximity_docids, |(
|
|
|
|
(word1, prefix, proximity),
|
|
|
|
b,
|
|
|
|
)| {
|
|
|
|
&format!("{word1:<16} {prefix:<4} {proximity:<2} {}", display_bitmap(&b))
|
|
|
|
});
|
|
|
|
snap
|
|
|
|
}
|
|
|
|
pub fn snap_word_position_docids(index: &Index) -> String {
|
|
|
|
let snap = make_db_snap_from_iter!(index, word_position_docids, |((word, position), b)| {
|
|
|
|
&format!("{word:<16} {position:<6} {}", display_bitmap(&b))
|
|
|
|
});
|
|
|
|
snap
|
|
|
|
}
|
|
|
|
pub fn snap_field_id_word_count_docids(index: &Index) -> String {
|
|
|
|
let snap = make_db_snap_from_iter!(index, field_id_word_count_docids, |(
|
|
|
|
(field_id, word_count),
|
|
|
|
b,
|
|
|
|
)| {
|
|
|
|
&format!("{field_id:<3} {word_count:<6} {}", display_bitmap(&b))
|
|
|
|
});
|
|
|
|
snap
|
|
|
|
}
|
|
|
|
pub fn snap_word_prefix_position_docids(index: &Index) -> String {
|
|
|
|
let snap = make_db_snap_from_iter!(index, word_prefix_position_docids, |(
|
|
|
|
(word_prefix, position),
|
|
|
|
b,
|
|
|
|
)| {
|
|
|
|
&format!("{word_prefix:<4} {position:<6} {}", display_bitmap(&b))
|
|
|
|
});
|
|
|
|
snap
|
|
|
|
}
|
|
|
|
pub fn snap_facet_id_f64_docids(index: &Index) -> String {
|
|
|
|
let snap = make_db_snap_from_iter!(index, facet_id_f64_docids, |(
|
|
|
|
(facet_id, level, left, right),
|
|
|
|
b,
|
|
|
|
)| {
|
|
|
|
&format!("{facet_id:<3} {level:<2} {left:<6} {right:<6} {}", display_bitmap(&b))
|
|
|
|
});
|
|
|
|
snap
|
|
|
|
}
|
|
|
|
pub fn snap_facet_id_string_docids(index: &Index) -> String {
|
|
|
|
let rtxn = index.read_txn().unwrap();
|
|
|
|
let bytes_db = index.facet_id_string_docids.remap_types::<ByteSlice, ByteSlice>();
|
|
|
|
let iter = bytes_db.iter(&rtxn).unwrap();
|
|
|
|
let mut snap = String::new();
|
|
|
|
|
|
|
|
for x in iter {
|
|
|
|
let (key, value) = x.unwrap();
|
|
|
|
if let Some((field_id, normalized_str)) = FacetStringLevelZeroCodec::bytes_decode(key) {
|
|
|
|
let (orig_string, docids) =
|
|
|
|
FacetStringLevelZeroValueCodec::bytes_decode(value).unwrap();
|
|
|
|
snap.push_str(&format!(
|
|
|
|
"{field_id:<3} {normalized_str:<8} {orig_string:<8} {}\n",
|
|
|
|
display_bitmap(&docids)
|
|
|
|
));
|
|
|
|
} else if let Some((field_id, level, left, right)) =
|
|
|
|
FacetLevelValueU32Codec::bytes_decode(key)
|
|
|
|
{
|
|
|
|
snap.push_str(&format!("{field_id:<3} {level:<2} {left:<6} {right:<6} "));
|
|
|
|
let (bounds, docids) =
|
|
|
|
FacetStringZeroBoundsValueCodec::<CboRoaringBitmapCodec>::bytes_decode(value)
|
|
|
|
.unwrap();
|
|
|
|
if let Some((left, right)) = bounds {
|
|
|
|
snap.push_str(&format!("{left:<8} {right:<8} "));
|
|
|
|
}
|
|
|
|
snap.push_str(&display_bitmap(&docids));
|
|
|
|
snap.push('\n');
|
|
|
|
} else {
|
|
|
|
panic!();
|
2022-08-03 08:45:26 +02:00
|
|
|
}
|
|
|
|
}
|
2022-08-03 16:24:28 +02:00
|
|
|
snap
|
|
|
|
}
|
|
|
|
pub fn snap_documents_ids(index: &Index) -> String {
|
|
|
|
let rtxn = index.read_txn().unwrap();
|
|
|
|
let documents_ids = index.documents_ids(&rtxn).unwrap();
|
|
|
|
let snap = display_bitmap(&documents_ids);
|
|
|
|
snap
|
|
|
|
}
|
|
|
|
pub fn snap_stop_words(index: &Index) -> String {
|
|
|
|
let rtxn = index.read_txn().unwrap();
|
|
|
|
let stop_words = index.stop_words(&rtxn).unwrap();
|
|
|
|
let snap = format!("{stop_words:?}");
|
|
|
|
snap
|
|
|
|
}
|
|
|
|
pub fn snap_soft_deleted_documents_ids(index: &Index) -> String {
|
|
|
|
let rtxn = index.read_txn().unwrap();
|
|
|
|
let soft_deleted_documents_ids = index.soft_deleted_documents_ids(&rtxn).unwrap();
|
|
|
|
let soft_deleted_documents_ids = display_bitmap(&soft_deleted_documents_ids);
|
|
|
|
soft_deleted_documents_ids
|
|
|
|
}
|
|
|
|
pub fn snap_field_distributions(index: &Index) -> String {
|
|
|
|
let rtxn = index.read_txn().unwrap();
|
|
|
|
let mut snap = String::new();
|
|
|
|
for (field, count) in index.field_distribution(&rtxn).unwrap() {
|
|
|
|
writeln!(&mut snap, "{field:<16} {count:<6}").unwrap();
|
|
|
|
}
|
|
|
|
snap
|
|
|
|
}
|
|
|
|
pub fn snap_fields_ids_map(index: &Index) -> String {
|
|
|
|
let rtxn = index.read_txn().unwrap();
|
|
|
|
let fields_ids_map = index.fields_ids_map(&rtxn).unwrap();
|
|
|
|
let mut snap = String::new();
|
|
|
|
for field_id in fields_ids_map.ids() {
|
|
|
|
let name = fields_ids_map.name(field_id).unwrap();
|
|
|
|
writeln!(&mut snap, "{field_id:<3} {name:<16}").unwrap();
|
|
|
|
}
|
|
|
|
snap
|
|
|
|
}
|
|
|
|
pub fn snap_geo_faceted_documents_ids(index: &Index) -> String {
|
|
|
|
let rtxn = index.read_txn().unwrap();
|
|
|
|
let geo_faceted_documents_ids = index.geo_faceted_documents_ids(&rtxn).unwrap();
|
|
|
|
let snap = display_bitmap(&geo_faceted_documents_ids);
|
|
|
|
snap
|
|
|
|
}
|
|
|
|
pub fn snap_external_documents_ids(index: &Index) -> String {
|
|
|
|
let rtxn = index.read_txn().unwrap();
|
|
|
|
let ExternalDocumentsIds { soft, hard, .. } = index.external_documents_ids(&rtxn).unwrap();
|
|
|
|
let mut snap = String::new();
|
|
|
|
let soft_bytes = soft.into_fst().as_bytes().to_owned();
|
|
|
|
let mut hex_soft = String::new();
|
|
|
|
for byte in soft_bytes {
|
|
|
|
write!(&mut hex_soft, "{:x}", byte).unwrap();
|
|
|
|
}
|
|
|
|
writeln!(&mut snap, "soft: {hex_soft}").unwrap();
|
|
|
|
let hard_bytes = hard.into_fst().as_bytes().to_owned();
|
|
|
|
let mut hex_hard = String::new();
|
|
|
|
for byte in hard_bytes {
|
|
|
|
write!(&mut hex_hard, "{:x}", byte).unwrap();
|
|
|
|
}
|
|
|
|
writeln!(&mut snap, "hard: {hex_hard}").unwrap();
|
|
|
|
snap
|
|
|
|
}
|
|
|
|
pub fn snap_number_faceted_documents_ids(index: &Index) -> String {
|
|
|
|
let rtxn = index.read_txn().unwrap();
|
|
|
|
let fields_ids_map = index.fields_ids_map(&rtxn).unwrap();
|
|
|
|
let mut snap = String::new();
|
|
|
|
for field_id in fields_ids_map.ids() {
|
|
|
|
let number_faceted_documents_ids =
|
|
|
|
index.number_faceted_documents_ids(&rtxn, field_id).unwrap();
|
|
|
|
writeln!(&mut snap, "{field_id:<3} {}", display_bitmap(&number_faceted_documents_ids))
|
|
|
|
.unwrap();
|
|
|
|
}
|
|
|
|
snap
|
|
|
|
}
|
|
|
|
pub fn snap_string_faceted_documents_ids(index: &Index) -> String {
|
|
|
|
let rtxn = index.read_txn().unwrap();
|
|
|
|
let fields_ids_map = index.fields_ids_map(&rtxn).unwrap();
|
2022-08-03 08:45:26 +02:00
|
|
|
|
2022-08-03 16:24:28 +02:00
|
|
|
let mut snap = String::new();
|
|
|
|
for field_id in fields_ids_map.ids() {
|
|
|
|
let string_faceted_documents_ids =
|
|
|
|
index.string_faceted_documents_ids(&rtxn, field_id).unwrap();
|
|
|
|
writeln!(&mut snap, "{field_id:<3} {}", display_bitmap(&string_faceted_documents_ids))
|
|
|
|
.unwrap();
|
|
|
|
}
|
|
|
|
snap
|
|
|
|
}
|
|
|
|
pub fn snap_words_fst(index: &Index) -> String {
|
|
|
|
let rtxn = index.read_txn().unwrap();
|
|
|
|
let words_fst = index.words_fst(&rtxn).unwrap();
|
|
|
|
let bytes = words_fst.into_fst().as_bytes().to_owned();
|
|
|
|
let mut snap = String::new();
|
|
|
|
for byte in bytes {
|
|
|
|
write!(&mut snap, "{:x}", byte).unwrap();
|
|
|
|
}
|
|
|
|
snap
|
|
|
|
}
|
|
|
|
pub fn snap_words_prefixes_fst(index: &Index) -> String {
|
|
|
|
let rtxn = index.read_txn().unwrap();
|
|
|
|
let words_prefixes_fst = index.words_prefixes_fst(&rtxn).unwrap();
|
|
|
|
let bytes = words_prefixes_fst.into_fst().as_bytes().to_owned();
|
|
|
|
let mut snap = String::new();
|
|
|
|
for byte in bytes {
|
|
|
|
write!(&mut snap, "{:x}", byte).unwrap();
|
|
|
|
}
|
|
|
|
snap
|
|
|
|
}
|
2022-08-03 08:45:26 +02:00
|
|
|
|
2022-08-03 16:24:28 +02:00
|
|
|
pub fn snap_settings(index: &Index) -> String {
|
|
|
|
let mut snap = String::new();
|
|
|
|
let rtxn = index.read_txn().unwrap();
|
2022-08-03 08:45:26 +02:00
|
|
|
|
2022-08-03 16:24:28 +02:00
|
|
|
macro_rules! write_setting_to_snap {
|
|
|
|
($name:ident) => {
|
|
|
|
let $name = index.$name(&rtxn).unwrap();
|
|
|
|
writeln!(&mut snap, "{}: {:?}", stringify!($name), $name).unwrap();
|
|
|
|
};
|
|
|
|
}
|
2022-08-03 08:45:26 +02:00
|
|
|
|
2022-08-03 16:24:28 +02:00
|
|
|
write_setting_to_snap!(primary_key);
|
|
|
|
write_setting_to_snap!(criteria);
|
|
|
|
write_setting_to_snap!(displayed_fields);
|
|
|
|
write_setting_to_snap!(distinct_field);
|
|
|
|
write_setting_to_snap!(filterable_fields);
|
|
|
|
write_setting_to_snap!(sortable_fields);
|
|
|
|
write_setting_to_snap!(synonyms);
|
|
|
|
write_setting_to_snap!(authorize_typos);
|
|
|
|
write_setting_to_snap!(min_word_len_one_typo);
|
|
|
|
write_setting_to_snap!(min_word_len_two_typos);
|
|
|
|
write_setting_to_snap!(exact_words);
|
|
|
|
write_setting_to_snap!(exact_attributes);
|
|
|
|
write_setting_to_snap!(max_values_per_facet);
|
|
|
|
write_setting_to_snap!(pagination_max_total_hits);
|
|
|
|
write_setting_to_snap!(searchable_fields);
|
|
|
|
write_setting_to_snap!(user_defined_searchable_fields);
|
2022-08-03 08:45:26 +02:00
|
|
|
|
2022-08-03 16:24:28 +02:00
|
|
|
snap
|
|
|
|
}
|
2022-08-03 08:45:26 +02:00
|
|
|
|
2022-08-03 16:24:28 +02:00
|
|
|
#[macro_export]
|
|
|
|
macro_rules! full_snap_of_db {
|
|
|
|
($index:ident, settings) => {{
|
|
|
|
$crate::snapshot_tests::snap_settings(&$index)
|
|
|
|
}};
|
|
|
|
($index:ident, word_docids) => {{
|
|
|
|
$crate::snapshot_tests::snap_word_docids(&$index)
|
|
|
|
}};
|
|
|
|
($index:ident, exact_word_docids) => {{
|
|
|
|
$crate::snapshot_tests::snap_exact_word_docids(&$index)
|
|
|
|
}};
|
|
|
|
($index:ident, word_prefix_docids) => {{
|
|
|
|
$crate::snapshot_tests::snap_word_prefix_docids(&$index)
|
|
|
|
}};
|
|
|
|
($index:ident, exact_word_prefix_docids) => {{
|
|
|
|
$crate::snapshot_tests::snap_exact_word_prefix_docids(&$index)
|
|
|
|
}};
|
|
|
|
($index:ident, docid_word_positions) => {{
|
|
|
|
$crate::snapshot_tests::snap_docid_word_positions(&$index)
|
|
|
|
}};
|
|
|
|
($index:ident, word_pair_proximity_docids) => {{
|
|
|
|
$crate::snapshot_tests::snap_word_pair_proximity_docids(&$index)
|
|
|
|
}};
|
|
|
|
($index:ident, word_prefix_pair_proximity_docids) => {{
|
|
|
|
$crate::snapshot_tests::snap_word_prefix_pair_proximity_docids(&$index)
|
|
|
|
}};
|
|
|
|
($index:ident, word_position_docids) => {{
|
|
|
|
$crate::snapshot_tests::snap_word_position_docids(&$index)
|
|
|
|
}};
|
|
|
|
($index:ident, field_id_word_count_docids) => {{
|
|
|
|
$crate::snapshot_tests::snap_field_id_word_count_docids(&$index)
|
|
|
|
}};
|
|
|
|
($index:ident, word_prefix_position_docids) => {{
|
|
|
|
$crate::snapshot_tests::snap_word_prefix_position_docids(&$index)
|
|
|
|
}};
|
|
|
|
($index:ident, facet_id_f64_docids) => {{
|
|
|
|
$crate::snapshot_tests::snap_facet_id_f64_docids(&$index)
|
|
|
|
}};
|
|
|
|
($index:ident, facet_id_string_docids) => {{
|
|
|
|
$crate::snapshot_tests::snap_facet_id_string_docids(&$index)
|
|
|
|
}};
|
|
|
|
($index:ident, documents_ids) => {{
|
|
|
|
$crate::snapshot_tests::snap_documents_ids(&$index)
|
|
|
|
}};
|
|
|
|
($index:ident, stop_words) => {{
|
|
|
|
$crate::snapshot_tests::snap_stop_words(&$index)
|
|
|
|
}};
|
|
|
|
($index:ident, soft_deleted_documents_ids) => {{
|
|
|
|
$crate::snapshot_tests::snap_soft_deleted_documents_ids(&$index)
|
|
|
|
}};
|
|
|
|
($index:ident, field_distribution) => {{
|
|
|
|
$crate::snapshot_tests::snap_field_distributions(&$index)
|
|
|
|
}};
|
|
|
|
($index:ident, fields_ids_map) => {{
|
|
|
|
$crate::snapshot_tests::snap_fields_ids_map(&$index)
|
|
|
|
}};
|
|
|
|
($index:ident, geo_faceted_documents_ids) => {{
|
|
|
|
$crate::snapshot_tests::snap_geo_faceted_documents_ids(&$index)
|
|
|
|
}};
|
|
|
|
($index:ident, external_documents_ids) => {{
|
|
|
|
$crate::snapshot_tests::snap_external_documents_ids(&$index)
|
|
|
|
}};
|
|
|
|
($index:ident, number_faceted_documents_ids) => {{
|
|
|
|
$crate::snapshot_tests::snap_number_faceted_documents_ids(&$index)
|
|
|
|
}};
|
|
|
|
($index:ident, string_faceted_documents_ids) => {{
|
|
|
|
$crate::snapshot_tests::snap_string_faceted_documents_ids(&$index)
|
|
|
|
}};
|
|
|
|
($index:ident, words_fst) => {{
|
|
|
|
$crate::snapshot_tests::snap_words_fst(&$index)
|
|
|
|
}};
|
|
|
|
($index:ident, words_prefixes_fst) => {{
|
|
|
|
$crate::snapshot_tests::snap_words_prefixes_fst(&$index)
|
|
|
|
}};
|
|
|
|
}
|
2022-08-03 08:45:26 +02:00
|
|
|
|
2022-08-03 16:24:28 +02:00
|
|
|
pub fn convert_snap_to_hash_if_needed<'snap>(
|
|
|
|
name: &str,
|
|
|
|
snap: &'snap str,
|
|
|
|
inline: bool,
|
|
|
|
) -> Vec<(String, Cow<'snap, str>)> {
|
|
|
|
let store_whole_snapshot = std::env::var("MILLI_TEST_FULL_SNAPS").unwrap_or("false".to_owned());
|
|
|
|
let store_whole_snapshot: bool = store_whole_snapshot.parse().unwrap();
|
2022-08-03 08:45:26 +02:00
|
|
|
|
2022-08-03 16:24:28 +02:00
|
|
|
let max_len = if inline { 256 } else { 2048 };
|
|
|
|
|
|
|
|
if snap.len() < max_len {
|
|
|
|
vec![(name.to_owned(), Cow::Borrowed(snap))]
|
|
|
|
} else {
|
|
|
|
let mut r = vec![];
|
|
|
|
if store_whole_snapshot {
|
|
|
|
r.push((format!("{name}.full"), Cow::Borrowed(snap)));
|
2022-08-03 08:45:26 +02:00
|
|
|
}
|
2022-08-03 16:24:28 +02:00
|
|
|
let hash = md5::compute(snap.as_bytes());
|
|
|
|
let hash_str = format!("{hash:x}");
|
|
|
|
r.push((format!("{name}.hash"), Cow::Owned(hash_str)));
|
|
|
|
r
|
|
|
|
}
|
|
|
|
}
|
2022-08-03 08:45:26 +02:00
|
|
|
|
2022-08-03 16:24:28 +02:00
|
|
|
#[macro_export]
|
|
|
|
macro_rules! make_db_snap_from_iter {
|
|
|
|
($index:ident, $name:ident, |$vars:pat| $push:block) => {{
|
|
|
|
let rtxn = $index.read_txn().unwrap();
|
|
|
|
let iter = $index.$name.iter(&rtxn).unwrap();
|
|
|
|
let mut snap = String::new();
|
|
|
|
for x in iter {
|
|
|
|
let $vars = x.unwrap();
|
|
|
|
snap.push_str($push);
|
|
|
|
snap.push('\n');
|
2022-08-03 08:45:26 +02:00
|
|
|
}
|
2022-08-03 16:24:28 +02:00
|
|
|
snap
|
|
|
|
}};
|
|
|
|
}
|
2022-08-03 08:45:26 +02:00
|
|
|
|
2022-08-03 16:24:28 +02:00
|
|
|
pub fn display_bitmap(b: &RoaringBitmap) -> String {
|
|
|
|
let mut s = String::new();
|
|
|
|
s.push('[');
|
|
|
|
for x in b.into_iter() {
|
|
|
|
write!(&mut s, "{x}, ").unwrap();
|
|
|
|
}
|
|
|
|
s.push(']');
|
|
|
|
s
|
|
|
|
}
|