mirror of
https://github.com/meilisearch/MeiliSearch
synced 2025-07-04 12:27:13 +02:00
add test set/reset distinct attribute
This commit is contained in:
parent
ec230c2835
commit
1746132c7d
3 changed files with 25 additions and 0 deletions
23
meilisearch-http/tests/settings/distinct.rs
Normal file
23
meilisearch-http/tests/settings/distinct.rs
Normal file
|
@ -0,0 +1,23 @@
|
|||
use crate::common::Server;
|
||||
use serde_json::{json, Value};
|
||||
|
||||
#[actix_rt::test]
|
||||
async fn set_and_reset_distinct_attribute() {
|
||||
let server = Server::new().await;
|
||||
let index = server.index("test");
|
||||
|
||||
let (_response, _code) = index.update_settings(json!({ "distinctAttribute": "test"})).await;
|
||||
index.wait_update_id(0).await;
|
||||
|
||||
let (response, _) = index.settings().await;
|
||||
|
||||
assert_eq!(response["distinctAttribute"], "test");
|
||||
|
||||
index.update_settings(json!({ "distinctAttribute": Value::Null })).await;
|
||||
|
||||
index.wait_update_id(1).await;
|
||||
|
||||
let (response, _) = index.settings().await;
|
||||
|
||||
assert_eq!(response["distinctAttribute"], Value::Null);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue