mirror of
https://github.com/meilisearch/MeiliSearch
synced 2024-11-05 12:38:55 +01:00
a30e02c18c
implements: https://github.com/meilisearch/specifications/blob/develop/text/0060-refashion-updates-apis.md linked PR: - #1889 - #1891 - #1892 - #1902 - #1906 - #1911 - #1914 - #1915 - #1916 - #1918 - #1924 - #1925 - #1926 - #1930 - #1936 - #1937 - #1942 - #1944 - #1945 - #1946 - #1947 - #1950 - #1951 - #1957 - #1959 - #1960 - #1961 - #1962 - #1964 - https://github.com/meilisearch/milli/pull/414 - https://github.com/meilisearch/milli/pull/409 - https://github.com/meilisearch/milli/pull/406 - https://github.com/meilisearch/milli/pull/418 - close #1687 - close #1786 - close #1940 - close #1948 - close #1949 - close #1932 - close #1956
49 lines
1.2 KiB
Rust
49 lines
1.2 KiB
Rust
use crate::common::Server;
|
|
use serde_json::json;
|
|
|
|
#[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_task(0).await;
|
|
|
|
let (response, _) = index.settings().await;
|
|
|
|
assert_eq!(response["distinctAttribute"], "test");
|
|
|
|
index
|
|
.update_settings(json!({ "distinctAttribute": null }))
|
|
.await;
|
|
|
|
index.wait_task(1).await;
|
|
|
|
let (response, _) = index.settings().await;
|
|
|
|
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;
|
|
index.wait_task(0).await;
|
|
|
|
let (response, _) = index.get_distinct_attribute().await;
|
|
|
|
assert_eq!(response, "test");
|
|
|
|
index.update_distinct_attribute(json!(null)).await;
|
|
|
|
index.wait_task(1).await;
|
|
|
|
let (response, _) = index.get_distinct_attribute().await;
|
|
|
|
assert_eq!(response, json!(null));
|
|
}
|