add test set/reset distinct attribute

This commit is contained in:
Marin Postma 2021-04-06 17:56:25 +02:00
parent ec230c2835
commit 1746132c7d
No known key found for this signature in database
GPG Key ID: D5241F0C0C865F30
3 changed files with 25 additions and 0 deletions

View 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);
}

View File

@ -20,6 +20,7 @@ async fn get_settings() {
assert_eq!(settings["displayedAttributes"], json!(["*"]));
assert_eq!(settings["searchableAttributes"], json!(["*"]));
assert_eq!(settings["attributesForFaceting"], json!({}));
assert_eq!(settings["distinctAttribute"], serde_json::Value::Null);
assert_eq!(
settings["rankingRules"],
json!([

View File

@ -1 +1,2 @@
mod get_settings;
mod distinct;