This commit is contained in:
ManyTheFish 2024-09-17 17:02:06 +02:00
parent 0fbf9ea5b1
commit 6e058709f2

View File

@ -628,10 +628,10 @@ async fn auto_infer_locales_at_search() {
.await; .await;
index index
.search( .search(
json!({"q": "\"进击的巨人\"", "attributesToRetrieve": ["id"]}), json!({"q": "\"进击的巨人\"", "attributesToRetrieve": ["id"]}),
|response, code| { |response, code| {
snapshot!(response, @r###" snapshot!(response, @r###"
{ {
"hits": [ "hits": [
{ {
@ -645,10 +645,10 @@ async fn auto_infer_locales_at_search() {
"estimatedTotalHits": 1 "estimatedTotalHits": 1
} }
"###); "###);
snapshot!(code, @"200 OK"); snapshot!(code, @"200 OK");
}, },
) )
.await; .await;
index index
.search( .search(
@ -725,10 +725,10 @@ async fn force_different_locales_with_pattern_nested() {
// force japanese // force japanese
index index
.search( .search(
json!({"q": "\"进击的巨人\"", "locales": ["jpn"], "attributesToRetrieve": ["id"]}), json!({"q": "\"进击的巨人\"", "locales": ["jpn"], "attributesToRetrieve": ["id"]}),
|response, code| { |response, code| {
snapshot!(response, @r###" snapshot!(response, @r###"
{ {
"hits": [ "hits": [
{ {
@ -742,10 +742,10 @@ async fn force_different_locales_with_pattern_nested() {
"estimatedTotalHits": 1 "estimatedTotalHits": 1
} }
"###); "###);
snapshot!(code, @"200 OK"); snapshot!(code, @"200 OK");
}, },
) )
.await; .await;
// force japanese // force japanese
index index
@ -766,10 +766,10 @@ async fn force_different_locales_with_pattern_nested() {
"estimatedTotalHits": 1 "estimatedTotalHits": 1
} }
"###); "###);
snapshot!(code, @"200 OK"); snapshot!(code, @"200 OK");
}, },
) )
.await; .await;
} }
#[actix_rt::test] #[actix_rt::test]