From 085aad0a94b6431e72849f4807181a5015994ff7 Mon Sep 17 00:00:00 2001 From: Kerollmops Date: Mon, 4 Sep 2023 14:39:33 +0200 Subject: [PATCH] Add a test --- milli/src/update/settings.rs | 37 ++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) diff --git a/milli/src/update/settings.rs b/milli/src/update/settings.rs index 7e52c04c1..023e09aa0 100644 --- a/milli/src/update/settings.rs +++ b/milli/src/update/settings.rs @@ -1422,6 +1422,43 @@ mod tests { assert!(result.documents_ids.is_empty()); } + #[test] + fn thai_synonyms() { + let mut index = TempIndex::new(); + index.index_documents_config.autogenerate_docids = true; + + let mut wtxn = index.write_txn().unwrap(); + // Send 3 documents with ids from 1 to 3. + index + .add_documents_using_wtxn( + &mut wtxn, + documents!([ + { "name": "ยี่ปุ่น" }, + { "name": "ญี่ปุ่น" }, + ]), + ) + .unwrap(); + + // In the same transaction provide some synonyms + index + .update_settings_using_wtxn(&mut wtxn, |settings| { + settings.set_synonyms(btreemap! { + "japanese".to_string() => vec!["ญี่ปุ่น", "ยี่ปุ่น"], + }); + }) + .unwrap(); + wtxn.commit().unwrap(); + + // Ensure synonyms are effectively stored + let rtxn = index.read_txn().unwrap(); + let synonyms = index.synonyms(&rtxn).unwrap(); + assert!(!synonyms.is_empty()); // at this point the index should return something + + // Check that we can use synonyms + let result = index.search(&rtxn).query("japanese").execute().unwrap(); + assert_eq!(result.documents_ids.len(), 2); + } + #[test] fn setting_searchable_recomputes_other_settings() { let index = TempIndex::new();