2021-04-06 17:56:25 +02:00
|
|
|
use crate::common::Server;
|
2021-04-20 12:07:22 +02:00
|
|
|
use serde_json::json;
|
2021-04-06 17:56:25 +02:00
|
|
|
|
|
|
|
#[actix_rt::test]
|
|
|
|
async fn set_and_reset_distinct_attribute() {
|
|
|
|
let server = Server::new().await;
|
|
|
|
let index = server.index("test");
|
|
|
|
|
2021-04-22 10:14:29 +02:00
|
|
|
let (_response, _code) = index
|
|
|
|
.update_settings(json!({ "distinctAttribute": "test"}))
|
|
|
|
.await;
|
2021-12-02 16:03:26 +01:00
|
|
|
index.wait_task(0).await;
|
2021-04-06 17:56:25 +02:00
|
|
|
|
|
|
|
let (response, _) = index.settings().await;
|
|
|
|
|
|
|
|
assert_eq!(response["distinctAttribute"], "test");
|
|
|
|
|
2021-04-22 10:14:29 +02:00
|
|
|
index
|
|
|
|
.update_settings(json!({ "distinctAttribute": null }))
|
|
|
|
.await;
|
2021-04-06 17:56:25 +02:00
|
|
|
|
2021-12-02 16:03:26 +01:00
|
|
|
index.wait_task(1).await;
|
2021-04-06 17:56:25 +02:00
|
|
|
|
|
|
|
let (response, _) = index.settings().await;
|
|
|
|
|
2021-04-20 12:07:22 +02:00
|
|
|
assert_eq!(response["distinctAttribute"], json!(null));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[actix_rt::test]
|
|
|
|
async fn set_and_reset_distinct_attribute_with_dedicated_route() {
|
|
|
|
let server = Server::new().await;
|
|
|
|
let index = server.index("test");
|
|
|
|
|
|
|
|
let (_response, _code) = index.update_distinct_attribute(json!("test")).await;
|
2021-12-02 16:03:26 +01:00
|
|
|
index.wait_task(0).await;
|
2021-04-20 12:07:22 +02:00
|
|
|
|
|
|
|
let (response, _) = index.get_distinct_attribute().await;
|
|
|
|
|
|
|
|
assert_eq!(response, "test");
|
|
|
|
|
|
|
|
index.update_distinct_attribute(json!(null)).await;
|
|
|
|
|
2021-12-02 16:03:26 +01:00
|
|
|
index.wait_task(1).await;
|
2021-04-20 12:07:22 +02:00
|
|
|
|
|
|
|
let (response, _) = index.get_distinct_attribute().await;
|
|
|
|
|
|
|
|
assert_eq!(response, json!(null));
|
2021-04-06 17:56:25 +02:00
|
|
|
}
|