45 lines
1.3 KiB
Rust
Raw Normal View History

2022-10-20 18:00:07 +02:00
use crate::common::Server;
2023-09-11 16:50:53 +02:00
use crate::json;
2022-10-20 18:00:07 +02:00
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");
let (task1, _code) = index.update_settings(json!({ "distinctAttribute": "test"})).await;
index.wait_task(task1.uid()).await.succeeded();
2021-04-06 17:56:25 +02:00
let (response, _) = index.settings().await;
assert_eq!(response["distinctAttribute"], "test");
let (task2,_status_code) = index.update_settings(json!({ "distinctAttribute": null })).await;
2021-04-06 17:56:25 +02:00
index.wait_task(task2.uid()).await.succeeded();
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 (update_task1, _code) = index.update_distinct_attribute(json!("test")).await;
index.wait_task(update_task1.uid()).await.succeeded();
2021-04-20 12:07:22 +02:00
let (response, _) = index.get_distinct_attribute().await;
assert_eq!(response, "test");
let (update_task2,_status_code) = index.update_distinct_attribute(json!(null)).await;
2021-04-20 12:07:22 +02:00
index.wait_task(update_task2.uid()).await.succeeded();
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
}