mirror of
https://github.com/meilisearch/MeiliSearch
synced 2024-11-23 13:24:27 +01:00
Add a test to make sure that long words are correctly skipped
This commit is contained in:
parent
b9539c59f3
commit
c83c3cd796
@ -1741,4 +1741,22 @@ mod tests {
|
|||||||
index.add_documents(doc3).unwrap_err();
|
index.add_documents(doc3).unwrap_err();
|
||||||
index.add_documents(doc4).unwrap_err();
|
index.add_documents(doc4).unwrap_err();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn long_words_must_be_skipped() {
|
||||||
|
let index = TempIndex::new();
|
||||||
|
|
||||||
|
// this is obviousy too long
|
||||||
|
let long_word = "lol".repeat(1000);
|
||||||
|
let doc1 = documents! {[{
|
||||||
|
"id": "1",
|
||||||
|
"title": long_word.clone(),
|
||||||
|
}]};
|
||||||
|
|
||||||
|
index.add_documents(doc1).unwrap();
|
||||||
|
|
||||||
|
let rtxn = index.read_txn().unwrap();
|
||||||
|
let words_fst = index.words_fst(&rtxn).unwrap();
|
||||||
|
assert!(!words_fst.contains(&long_word));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user