mirror of
https://github.com/meilisearch/meilisearch.git
synced 2024-11-23 02:27:40 +08:00
reset settings
This commit is contained in:
parent
3f939f3ccf
commit
60a42bc511
@ -60,6 +60,26 @@ async fn delete_settings_unexisting_index() {
|
|||||||
assert_eq!(code, 400);
|
assert_eq!(code, 400);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[actix_rt::test]
|
||||||
|
async fn reset_all_settings() {
|
||||||
|
let server = Server::new().await;
|
||||||
|
let index = server.index("test");
|
||||||
|
index.update_settings(json!({"displayedAttributes": ["foo"], "searchableAttributes": ["bar"]})).await;
|
||||||
|
index.wait_update_id(0).await;
|
||||||
|
let (response, code) = index.settings().await;
|
||||||
|
assert_eq!(code, 200);
|
||||||
|
assert_eq!(response["displayedAttributes"],json!(["foo"]));
|
||||||
|
assert_eq!(response["searchableAttributes"],json!(["bar"]));
|
||||||
|
|
||||||
|
index.delete_settings().await;
|
||||||
|
index.wait_update_id(1).await;
|
||||||
|
|
||||||
|
let (response, code) = index.settings().await;
|
||||||
|
assert_eq!(code, 200);
|
||||||
|
assert_eq!(response["displayedAttributes"],json!(["*"]));
|
||||||
|
assert_eq!(response["searchableAttributes"],json!(["*"]));
|
||||||
|
}
|
||||||
|
|
||||||
#[actix_rt::test]
|
#[actix_rt::test]
|
||||||
async fn update_setting_unexisting_index() {
|
async fn update_setting_unexisting_index() {
|
||||||
let server = Server::new().await;
|
let server = Server::new().await;
|
||||||
|
Loading…
Reference in New Issue
Block a user