2022-06-28 00:58:11 +02:00
|
|
|
// This modules contains all the test concerning search. Each particular feature of the search
|
2021-02-18 19:50:52 +01:00
|
|
|
// should be tested in its own module to isolate tests and keep the tests readable.
|
2021-07-06 11:54:37 +02:00
|
|
|
|
|
|
|
mod errors;
|
2022-04-19 16:49:38 +02:00
|
|
|
mod formatted;
|
2022-10-20 17:03:07 +02:00
|
|
|
mod pagination;
|
2021-07-06 11:54:37 +02:00
|
|
|
|
|
|
|
use once_cell::sync::Lazy;
|
|
|
|
use serde_json::{json, Value};
|
|
|
|
|
2022-10-20 18:00:07 +02:00
|
|
|
use crate::common::Server;
|
|
|
|
|
2022-04-19 16:49:38 +02:00
|
|
|
pub(self) static DOCUMENTS: Lazy<Value> = Lazy::new(|| {
|
2021-07-06 11:54:37 +02:00
|
|
|
json!([
|
|
|
|
{
|
|
|
|
"title": "Shazam!",
|
2022-03-30 13:47:27 +02:00
|
|
|
"id": "287947",
|
2021-07-06 11:54:37 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"title": "Captain Marvel",
|
2022-03-30 13:47:27 +02:00
|
|
|
"id": "299537",
|
2021-07-06 11:54:37 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"title": "Escape Room",
|
2022-03-30 13:47:27 +02:00
|
|
|
"id": "522681",
|
2021-07-06 11:54:37 +02:00
|
|
|
},
|
2022-03-30 13:47:27 +02:00
|
|
|
{
|
|
|
|
"title": "How to Train Your Dragon: The Hidden World",
|
|
|
|
"id": "166428",
|
2021-07-06 11:54:37 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"title": "Glass",
|
2022-03-30 13:47:27 +02:00
|
|
|
"id": "450465",
|
2021-07-06 11:54:37 +02:00
|
|
|
}
|
|
|
|
])
|
|
|
|
});
|
|
|
|
|
2022-04-19 16:49:38 +02:00
|
|
|
pub(self) static NESTED_DOCUMENTS: Lazy<Value> = Lazy::new(|| {
|
2022-03-30 13:47:27 +02:00
|
|
|
json!([
|
|
|
|
{
|
|
|
|
"id": 852,
|
|
|
|
"father": "jean",
|
|
|
|
"mother": "michelle",
|
|
|
|
"doggos": [
|
|
|
|
{
|
|
|
|
"name": "bobby",
|
|
|
|
"age": 2,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "buddy",
|
|
|
|
"age": 4,
|
|
|
|
},
|
|
|
|
],
|
|
|
|
"cattos": "pesti",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": 654,
|
|
|
|
"father": "pierre",
|
|
|
|
"mother": "sabine",
|
|
|
|
"doggos": [
|
|
|
|
{
|
|
|
|
"name": "gros bill",
|
|
|
|
"age": 8,
|
|
|
|
},
|
|
|
|
],
|
|
|
|
"cattos": ["simba", "pestiféré"],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": 750,
|
|
|
|
"father": "romain",
|
|
|
|
"mother": "michelle",
|
|
|
|
"cattos": ["enigma"],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": 951,
|
|
|
|
"father": "jean-baptiste",
|
|
|
|
"mother": "sophie",
|
|
|
|
"doggos": [
|
|
|
|
{
|
|
|
|
"name": "turbo",
|
|
|
|
"age": 5,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "fast",
|
|
|
|
"age": 6,
|
|
|
|
},
|
|
|
|
],
|
|
|
|
"cattos": ["moumoute", "gomez"],
|
|
|
|
},
|
|
|
|
])
|
|
|
|
});
|
|
|
|
|
2021-07-06 11:54:37 +02:00
|
|
|
#[actix_rt::test]
|
|
|
|
async fn simple_placeholder_search() {
|
|
|
|
let server = Server::new().await;
|
2022-03-30 13:47:27 +02:00
|
|
|
let index = server.index("basic");
|
2021-07-06 11:54:37 +02:00
|
|
|
|
|
|
|
let documents = DOCUMENTS.clone();
|
|
|
|
index.add_documents(documents, None).await;
|
2021-12-02 16:03:26 +01:00
|
|
|
index.wait_task(0).await;
|
2021-07-06 11:54:37 +02:00
|
|
|
|
|
|
|
index
|
|
|
|
.search(json!({}), |response, code| {
|
|
|
|
assert_eq!(code, 200, "{}", response);
|
|
|
|
assert_eq!(response["hits"].as_array().unwrap().len(), 5);
|
|
|
|
})
|
|
|
|
.await;
|
2022-03-30 13:47:27 +02:00
|
|
|
|
|
|
|
let index = server.index("nested");
|
|
|
|
let documents = NESTED_DOCUMENTS.clone();
|
|
|
|
index.add_documents(documents, None).await;
|
|
|
|
index.wait_task(1).await;
|
|
|
|
|
|
|
|
index
|
|
|
|
.search(json!({}), |response, code| {
|
|
|
|
assert_eq!(code, 200, "{}", response);
|
|
|
|
assert_eq!(response["hits"].as_array().unwrap().len(), 4);
|
|
|
|
})
|
|
|
|
.await;
|
2021-07-06 11:54:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#[actix_rt::test]
|
|
|
|
async fn simple_search() {
|
|
|
|
let server = Server::new().await;
|
|
|
|
let index = server.index("test");
|
|
|
|
|
|
|
|
let documents = DOCUMENTS.clone();
|
|
|
|
index.add_documents(documents, None).await;
|
2021-12-02 16:03:26 +01:00
|
|
|
index.wait_task(0).await;
|
2021-07-06 11:54:37 +02:00
|
|
|
|
|
|
|
index
|
|
|
|
.search(json!({"q": "glass"}), |response, code| {
|
|
|
|
assert_eq!(code, 200, "{}", response);
|
|
|
|
assert_eq!(response["hits"].as_array().unwrap().len(), 1);
|
|
|
|
})
|
|
|
|
.await;
|
2022-03-30 13:47:27 +02:00
|
|
|
|
|
|
|
let index = server.index("nested");
|
|
|
|
let documents = NESTED_DOCUMENTS.clone();
|
|
|
|
index.add_documents(documents, None).await;
|
|
|
|
index.wait_task(1).await;
|
|
|
|
|
|
|
|
index
|
|
|
|
.search(json!({"q": "pesti"}), |response, code| {
|
|
|
|
assert_eq!(code, 200, "{}", response);
|
|
|
|
assert_eq!(response["hits"].as_array().unwrap().len(), 2);
|
|
|
|
})
|
|
|
|
.await;
|
2021-07-06 11:54:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#[actix_rt::test]
|
|
|
|
async fn search_multiple_params() {
|
|
|
|
let server = Server::new().await;
|
|
|
|
let index = server.index("test");
|
|
|
|
|
|
|
|
let documents = DOCUMENTS.clone();
|
|
|
|
index.add_documents(documents, None).await;
|
2021-12-02 16:03:26 +01:00
|
|
|
index.wait_task(0).await;
|
2021-07-06 11:54:37 +02:00
|
|
|
|
|
|
|
index
|
|
|
|
.search(
|
|
|
|
json!({
|
|
|
|
"q": "glass",
|
|
|
|
"attributesToCrop": ["title:2"],
|
|
|
|
"attributesToHighlight": ["title"],
|
|
|
|
"limit": 1,
|
|
|
|
"offset": 0,
|
|
|
|
}),
|
|
|
|
|response, code| {
|
|
|
|
assert_eq!(code, 200, "{}", response);
|
|
|
|
assert_eq!(response["hits"].as_array().unwrap().len(), 1);
|
|
|
|
},
|
|
|
|
)
|
|
|
|
.await;
|
2022-03-30 13:47:27 +02:00
|
|
|
|
|
|
|
let index = server.index("nested");
|
|
|
|
let documents = NESTED_DOCUMENTS.clone();
|
|
|
|
index.add_documents(documents, None).await;
|
|
|
|
index.wait_task(1).await;
|
|
|
|
|
|
|
|
index
|
|
|
|
.search(
|
|
|
|
json!({
|
|
|
|
"q": "pesti",
|
|
|
|
"attributesToCrop": ["catto:2"],
|
|
|
|
"attributesToHighlight": ["catto"],
|
|
|
|
"limit": 2,
|
|
|
|
"offset": 0,
|
|
|
|
}),
|
|
|
|
|response, code| {
|
|
|
|
assert_eq!(code, 200, "{}", response);
|
|
|
|
assert_eq!(response["hits"].as_array().unwrap().len(), 2);
|
|
|
|
},
|
|
|
|
)
|
|
|
|
.await;
|
2021-07-06 11:54:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#[actix_rt::test]
|
|
|
|
async fn search_with_filter_string_notation() {
|
|
|
|
let server = Server::new().await;
|
|
|
|
let index = server.index("test");
|
|
|
|
|
2023-01-12 15:39:28 +01:00
|
|
|
let (_, code) = index.update_settings(json!({"filterableAttributes": ["title"]})).await;
|
|
|
|
meili_snap::snapshot!(code, @"202 Accepted");
|
2021-07-06 11:54:37 +02:00
|
|
|
|
|
|
|
let documents = DOCUMENTS.clone();
|
2023-01-12 15:39:28 +01:00
|
|
|
let (_, code) = index.add_documents(documents, None).await;
|
|
|
|
meili_snap::snapshot!(code, @"202 Accepted");
|
|
|
|
let res = index.wait_task(1).await;
|
|
|
|
meili_snap::snapshot!(res["status"], @r###""succeeded""###);
|
2021-07-06 11:54:37 +02:00
|
|
|
|
|
|
|
index
|
|
|
|
.search(
|
|
|
|
json!({
|
|
|
|
"filter": "title = Glass"
|
|
|
|
}),
|
|
|
|
|response, code| {
|
|
|
|
assert_eq!(code, 200, "{}", response);
|
|
|
|
assert_eq!(response["hits"].as_array().unwrap().len(), 1);
|
|
|
|
},
|
|
|
|
)
|
|
|
|
.await;
|
2022-03-30 13:47:27 +02:00
|
|
|
|
|
|
|
let index = server.index("nested");
|
|
|
|
|
2023-01-12 15:39:28 +01:00
|
|
|
let (_, code) =
|
|
|
|
index.update_settings(json!({"filterableAttributes": ["cattos", "doggos.age"]})).await;
|
|
|
|
meili_snap::snapshot!(code, @"202 Accepted");
|
2022-03-30 13:47:27 +02:00
|
|
|
|
|
|
|
let documents = NESTED_DOCUMENTS.clone();
|
2023-01-12 15:39:28 +01:00
|
|
|
let (_, code) = index.add_documents(documents, None).await;
|
|
|
|
meili_snap::snapshot!(code, @"202 Accepted");
|
|
|
|
let res = index.wait_task(3).await;
|
|
|
|
meili_snap::snapshot!(res["status"], @r###""succeeded""###);
|
2022-03-30 13:47:27 +02:00
|
|
|
|
|
|
|
index
|
|
|
|
.search(
|
|
|
|
json!({
|
|
|
|
"filter": "cattos = pesti"
|
|
|
|
}),
|
|
|
|
|response, code| {
|
|
|
|
assert_eq!(code, 200, "{}", response);
|
|
|
|
assert_eq!(response["hits"].as_array().unwrap().len(), 1);
|
|
|
|
assert_eq!(response["hits"][0]["id"], json!(852));
|
|
|
|
},
|
|
|
|
)
|
|
|
|
.await;
|
|
|
|
|
|
|
|
index
|
|
|
|
.search(
|
|
|
|
json!({
|
|
|
|
"filter": "doggos.age > 5"
|
|
|
|
}),
|
|
|
|
|response, code| {
|
|
|
|
assert_eq!(code, 200, "{}", response);
|
|
|
|
assert_eq!(response["hits"].as_array().unwrap().len(), 2);
|
|
|
|
assert_eq!(response["hits"][0]["id"], json!(654));
|
|
|
|
assert_eq!(response["hits"][1]["id"], json!(951));
|
|
|
|
},
|
|
|
|
)
|
|
|
|
.await;
|
2021-07-06 11:54:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#[actix_rt::test]
|
|
|
|
async fn search_with_filter_array_notation() {
|
|
|
|
let server = Server::new().await;
|
|
|
|
let index = server.index("test");
|
|
|
|
|
2022-10-20 18:00:07 +02:00
|
|
|
index.update_settings(json!({"filterableAttributes": ["title"]})).await;
|
2021-07-06 11:54:37 +02:00
|
|
|
|
|
|
|
let documents = DOCUMENTS.clone();
|
|
|
|
index.add_documents(documents, None).await;
|
2021-12-02 16:03:26 +01:00
|
|
|
index.wait_task(1).await;
|
2021-07-06 11:54:37 +02:00
|
|
|
|
|
|
|
let (response, code) = index
|
|
|
|
.search_post(json!({
|
|
|
|
"filter": ["title = Glass"]
|
|
|
|
}))
|
|
|
|
.await;
|
|
|
|
assert_eq!(code, 200, "{}", response);
|
|
|
|
assert_eq!(response["hits"].as_array().unwrap().len(), 1);
|
|
|
|
|
|
|
|
let (response, code) = index
|
|
|
|
.search_post(json!({
|
|
|
|
"filter": [["title = Glass", "title = \"Shazam!\"", "title = \"Escape Room\""]]
|
|
|
|
}))
|
|
|
|
.await;
|
|
|
|
assert_eq!(code, 200, "{}", response);
|
|
|
|
assert_eq!(response["hits"].as_array().unwrap().len(), 3);
|
|
|
|
}
|
|
|
|
|
2021-08-24 15:45:16 +02:00
|
|
|
#[actix_rt::test]
|
|
|
|
async fn search_with_sort_on_numbers() {
|
|
|
|
let server = Server::new().await;
|
|
|
|
let index = server.index("test");
|
|
|
|
|
2022-10-20 18:00:07 +02:00
|
|
|
index.update_settings(json!({"sortableAttributes": ["id"]})).await;
|
2021-08-24 15:45:16 +02:00
|
|
|
|
|
|
|
let documents = DOCUMENTS.clone();
|
|
|
|
index.add_documents(documents, None).await;
|
2021-12-02 16:03:26 +01:00
|
|
|
index.wait_task(1).await;
|
2021-08-24 15:45:16 +02:00
|
|
|
|
|
|
|
index
|
|
|
|
.search(
|
|
|
|
json!({
|
|
|
|
"sort": ["id:asc"]
|
|
|
|
}),
|
|
|
|
|response, code| {
|
|
|
|
assert_eq!(code, 200, "{}", response);
|
|
|
|
assert_eq!(response["hits"].as_array().unwrap().len(), 5);
|
|
|
|
},
|
|
|
|
)
|
|
|
|
.await;
|
2022-03-30 13:47:27 +02:00
|
|
|
|
|
|
|
let index = server.index("nested");
|
|
|
|
|
2022-10-20 18:00:07 +02:00
|
|
|
index.update_settings(json!({"sortableAttributes": ["doggos.age"]})).await;
|
2022-03-30 13:47:27 +02:00
|
|
|
|
|
|
|
let documents = NESTED_DOCUMENTS.clone();
|
|
|
|
index.add_documents(documents, None).await;
|
|
|
|
index.wait_task(3).await;
|
|
|
|
|
|
|
|
index
|
|
|
|
.search(
|
|
|
|
json!({
|
|
|
|
"sort": ["doggos.age:asc"]
|
|
|
|
}),
|
|
|
|
|response, code| {
|
|
|
|
assert_eq!(code, 200, "{}", response);
|
|
|
|
assert_eq!(response["hits"].as_array().unwrap().len(), 4);
|
|
|
|
},
|
|
|
|
)
|
|
|
|
.await;
|
2021-08-24 15:45:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#[actix_rt::test]
|
|
|
|
async fn search_with_sort_on_strings() {
|
|
|
|
let server = Server::new().await;
|
|
|
|
let index = server.index("test");
|
|
|
|
|
2022-10-20 18:00:07 +02:00
|
|
|
index.update_settings(json!({"sortableAttributes": ["title"]})).await;
|
2021-08-24 15:45:16 +02:00
|
|
|
|
|
|
|
let documents = DOCUMENTS.clone();
|
|
|
|
index.add_documents(documents, None).await;
|
2021-12-02 16:03:26 +01:00
|
|
|
index.wait_task(1).await;
|
2021-08-24 15:45:16 +02:00
|
|
|
|
|
|
|
index
|
|
|
|
.search(
|
|
|
|
json!({
|
|
|
|
"sort": ["title:desc"]
|
|
|
|
}),
|
|
|
|
|response, code| {
|
|
|
|
assert_eq!(code, 200, "{}", response);
|
|
|
|
assert_eq!(response["hits"].as_array().unwrap().len(), 5);
|
|
|
|
},
|
|
|
|
)
|
|
|
|
.await;
|
2022-03-30 13:47:27 +02:00
|
|
|
|
|
|
|
let index = server.index("nested");
|
|
|
|
|
2022-10-20 18:00:07 +02:00
|
|
|
index.update_settings(json!({"sortableAttributes": ["doggos.name"]})).await;
|
2022-03-30 13:47:27 +02:00
|
|
|
|
|
|
|
let documents = NESTED_DOCUMENTS.clone();
|
|
|
|
index.add_documents(documents, None).await;
|
|
|
|
index.wait_task(3).await;
|
|
|
|
|
|
|
|
index
|
|
|
|
.search(
|
|
|
|
json!({
|
|
|
|
"sort": ["doggos.name:asc"]
|
|
|
|
}),
|
|
|
|
|response, code| {
|
|
|
|
assert_eq!(code, 200, "{}", response);
|
|
|
|
assert_eq!(response["hits"].as_array().unwrap().len(), 4);
|
|
|
|
},
|
|
|
|
)
|
|
|
|
.await;
|
2021-08-24 15:45:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#[actix_rt::test]
|
|
|
|
async fn search_with_multiple_sort() {
|
|
|
|
let server = Server::new().await;
|
|
|
|
let index = server.index("test");
|
|
|
|
|
2022-10-20 18:00:07 +02:00
|
|
|
index.update_settings(json!({"sortableAttributes": ["id", "title"]})).await;
|
2021-08-24 15:45:16 +02:00
|
|
|
|
|
|
|
let documents = DOCUMENTS.clone();
|
|
|
|
index.add_documents(documents, None).await;
|
2021-12-02 16:03:26 +01:00
|
|
|
index.wait_task(1).await;
|
2021-08-24 15:45:16 +02:00
|
|
|
|
|
|
|
let (response, code) = index
|
|
|
|
.search_post(json!({
|
|
|
|
"sort": ["id:asc", "title:desc"]
|
|
|
|
}))
|
|
|
|
.await;
|
|
|
|
assert_eq!(code, 200, "{}", response);
|
|
|
|
assert_eq!(response["hits"].as_array().unwrap().len(), 5);
|
|
|
|
}
|
|
|
|
|
2021-07-06 11:54:37 +02:00
|
|
|
#[actix_rt::test]
|
|
|
|
async fn search_facet_distribution() {
|
|
|
|
let server = Server::new().await;
|
|
|
|
let index = server.index("test");
|
|
|
|
|
2022-10-20 18:00:07 +02:00
|
|
|
index.update_settings(json!({"filterableAttributes": ["title"]})).await;
|
2021-07-06 11:54:37 +02:00
|
|
|
|
|
|
|
let documents = DOCUMENTS.clone();
|
|
|
|
index.add_documents(documents, None).await;
|
2021-12-02 16:03:26 +01:00
|
|
|
index.wait_task(1).await;
|
2021-07-06 11:54:37 +02:00
|
|
|
|
|
|
|
index
|
|
|
|
.search(
|
|
|
|
json!({
|
2022-05-18 13:17:56 +02:00
|
|
|
"facets": ["title"]
|
2021-07-06 11:54:37 +02:00
|
|
|
}),
|
|
|
|
|response, code| {
|
|
|
|
assert_eq!(code, 200, "{}", response);
|
2022-05-18 13:17:56 +02:00
|
|
|
let dist = response["facetDistribution"].as_object().unwrap();
|
2021-07-06 11:54:37 +02:00
|
|
|
assert_eq!(dist.len(), 1);
|
|
|
|
assert!(dist.get("title").is_some());
|
|
|
|
},
|
|
|
|
)
|
|
|
|
.await;
|
2022-03-30 13:47:27 +02:00
|
|
|
|
|
|
|
let index = server.index("nested");
|
|
|
|
|
2022-10-20 18:00:07 +02:00
|
|
|
index.update_settings(json!({"filterableAttributes": ["father", "doggos.name"]})).await;
|
2022-03-30 13:47:27 +02:00
|
|
|
|
|
|
|
let documents = NESTED_DOCUMENTS.clone();
|
|
|
|
index.add_documents(documents, None).await;
|
|
|
|
index.wait_task(3).await;
|
|
|
|
|
|
|
|
// TODO: TAMO: fix the test
|
|
|
|
index
|
|
|
|
.search(
|
|
|
|
json!({
|
2022-05-18 13:17:56 +02:00
|
|
|
// "facets": ["father", "doggos.name"]
|
|
|
|
"facets": ["father"]
|
2022-03-30 13:47:27 +02:00
|
|
|
}),
|
|
|
|
|response, code| {
|
|
|
|
assert_eq!(code, 200, "{}", response);
|
2022-05-18 13:17:56 +02:00
|
|
|
let dist = response["facetDistribution"].as_object().unwrap();
|
2022-03-30 13:47:27 +02:00
|
|
|
assert_eq!(dist.len(), 1);
|
|
|
|
assert_eq!(
|
|
|
|
dist["father"],
|
|
|
|
json!({ "jean": 1, "pierre": 1, "romain": 1, "jean-baptiste": 1})
|
|
|
|
);
|
|
|
|
/*
|
|
|
|
assert_eq!(
|
|
|
|
dist["doggos.name"],
|
|
|
|
json!({ "bobby": 1, "buddy": 1, "gros bill": 1, "turbo": 1, "fast": 1})
|
|
|
|
);
|
|
|
|
*/
|
|
|
|
},
|
|
|
|
)
|
|
|
|
.await;
|
|
|
|
|
2022-10-20 18:00:07 +02:00
|
|
|
index.update_settings(json!({"filterableAttributes": ["doggos"]})).await;
|
2022-03-30 13:47:27 +02:00
|
|
|
index.wait_task(4).await;
|
|
|
|
|
|
|
|
index
|
|
|
|
.search(
|
|
|
|
json!({
|
2022-05-18 13:17:56 +02:00
|
|
|
"facets": ["doggos.name"]
|
2022-03-30 13:47:27 +02:00
|
|
|
}),
|
|
|
|
|response, code| {
|
|
|
|
assert_eq!(code, 200, "{}", response);
|
2022-05-18 13:17:56 +02:00
|
|
|
let dist = response["facetDistribution"].as_object().unwrap();
|
2022-03-30 13:47:27 +02:00
|
|
|
assert_eq!(dist.len(), 1);
|
|
|
|
assert_eq!(
|
|
|
|
dist["doggos.name"],
|
|
|
|
json!({ "bobby": 1, "buddy": 1, "gros bill": 1, "turbo": 1, "fast": 1})
|
|
|
|
);
|
|
|
|
},
|
|
|
|
)
|
|
|
|
.await;
|
|
|
|
|
|
|
|
index
|
|
|
|
.search(
|
|
|
|
json!({
|
2022-05-18 13:17:56 +02:00
|
|
|
"facets": ["doggos"]
|
2022-03-30 13:47:27 +02:00
|
|
|
}),
|
|
|
|
|response, code| {
|
|
|
|
assert_eq!(code, 200, "{}", response);
|
2022-05-18 13:17:56 +02:00
|
|
|
let dist = response["facetDistribution"].as_object().unwrap();
|
2022-05-04 12:10:52 +02:00
|
|
|
assert_eq!(dist.len(), 3);
|
2022-03-30 13:47:27 +02:00
|
|
|
assert_eq!(
|
|
|
|
dist["doggos.name"],
|
|
|
|
json!({ "bobby": 1, "buddy": 1, "gros bill": 1, "turbo": 1, "fast": 1})
|
|
|
|
);
|
2022-10-20 18:00:07 +02:00
|
|
|
assert_eq!(dist["doggos.age"], json!({ "2": 1, "4": 1, "5": 1, "6": 1, "8": 1}));
|
2022-03-30 13:47:27 +02:00
|
|
|
},
|
|
|
|
)
|
|
|
|
.await;
|
2021-07-06 11:54:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#[actix_rt::test]
|
|
|
|
async fn displayed_attributes() {
|
|
|
|
let server = Server::new().await;
|
|
|
|
let index = server.index("test");
|
|
|
|
|
2022-10-20 18:00:07 +02:00
|
|
|
index.update_settings(json!({ "displayedAttributes": ["title"] })).await;
|
2021-07-06 11:54:37 +02:00
|
|
|
|
|
|
|
let documents = DOCUMENTS.clone();
|
|
|
|
index.add_documents(documents, None).await;
|
2021-12-02 16:03:26 +01:00
|
|
|
index.wait_task(1).await;
|
2021-07-06 11:54:37 +02:00
|
|
|
|
2022-10-20 18:00:07 +02:00
|
|
|
let (response, code) =
|
|
|
|
index.search_post(json!({ "attributesToRetrieve": ["title", "id"] })).await;
|
2021-07-06 11:54:37 +02:00
|
|
|
assert_eq!(code, 200, "{}", response);
|
2022-03-30 13:47:27 +02:00
|
|
|
assert!(response["hits"][0].get("title").is_some());
|
2021-07-06 11:54:37 +02:00
|
|
|
}
|
2022-03-31 01:32:37 +02:00
|
|
|
|
|
|
|
#[actix_rt::test]
|
|
|
|
async fn placeholder_search_is_hard_limited() {
|
|
|
|
let server = Server::new().await;
|
|
|
|
let index = server.index("test");
|
|
|
|
|
2022-10-20 18:00:07 +02:00
|
|
|
let documents: Vec<_> = (0..1200).map(|i| json!({ "id": i, "text": "I am unique!" })).collect();
|
2022-03-31 01:32:37 +02:00
|
|
|
index.add_documents(documents.into(), None).await;
|
|
|
|
index.wait_task(0).await;
|
|
|
|
|
|
|
|
index
|
|
|
|
.search(
|
|
|
|
json!({
|
|
|
|
"limit": 1500,
|
|
|
|
}),
|
|
|
|
|response, code| {
|
|
|
|
assert_eq!(code, 200, "{}", response);
|
|
|
|
assert_eq!(response["hits"].as_array().unwrap().len(), 1000);
|
|
|
|
},
|
|
|
|
)
|
|
|
|
.await;
|
|
|
|
|
|
|
|
index
|
|
|
|
.search(
|
|
|
|
json!({
|
|
|
|
"offset": 800,
|
|
|
|
"limit": 400,
|
|
|
|
}),
|
|
|
|
|response, code| {
|
|
|
|
assert_eq!(code, 200, "{}", response);
|
|
|
|
assert_eq!(response["hits"].as_array().unwrap().len(), 200);
|
|
|
|
},
|
|
|
|
)
|
|
|
|
.await;
|
2022-06-09 10:48:32 +02:00
|
|
|
|
2022-10-20 18:00:07 +02:00
|
|
|
index.update_settings(json!({ "pagination": { "maxTotalHits": 10_000 } })).await;
|
2022-06-09 10:48:32 +02:00
|
|
|
index.wait_task(1).await;
|
|
|
|
|
|
|
|
index
|
|
|
|
.search(
|
|
|
|
json!({
|
|
|
|
"limit": 1500,
|
|
|
|
}),
|
|
|
|
|response, code| {
|
|
|
|
assert_eq!(code, 200, "{}", response);
|
|
|
|
assert_eq!(response["hits"].as_array().unwrap().len(), 1200);
|
|
|
|
},
|
|
|
|
)
|
|
|
|
.await;
|
|
|
|
|
|
|
|
index
|
|
|
|
.search(
|
|
|
|
json!({
|
|
|
|
"offset": 1000,
|
|
|
|
"limit": 400,
|
|
|
|
}),
|
|
|
|
|response, code| {
|
|
|
|
assert_eq!(code, 200, "{}", response);
|
|
|
|
assert_eq!(response["hits"].as_array().unwrap().len(), 200);
|
|
|
|
},
|
|
|
|
)
|
|
|
|
.await;
|
2022-03-31 01:32:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#[actix_rt::test]
|
|
|
|
async fn search_is_hard_limited() {
|
|
|
|
let server = Server::new().await;
|
|
|
|
let index = server.index("test");
|
|
|
|
|
2022-10-20 18:00:07 +02:00
|
|
|
let documents: Vec<_> = (0..1200).map(|i| json!({ "id": i, "text": "I am unique!" })).collect();
|
2022-03-31 01:32:37 +02:00
|
|
|
index.add_documents(documents.into(), None).await;
|
|
|
|
index.wait_task(0).await;
|
|
|
|
|
|
|
|
index
|
|
|
|
.search(
|
|
|
|
json!({
|
|
|
|
"q": "unique",
|
|
|
|
"limit": 1500,
|
|
|
|
}),
|
|
|
|
|response, code| {
|
|
|
|
assert_eq!(code, 200, "{}", response);
|
|
|
|
assert_eq!(response["hits"].as_array().unwrap().len(), 1000);
|
|
|
|
},
|
|
|
|
)
|
|
|
|
.await;
|
|
|
|
|
|
|
|
index
|
|
|
|
.search(
|
|
|
|
json!({
|
|
|
|
"q": "unique",
|
|
|
|
"offset": 800,
|
|
|
|
"limit": 400,
|
|
|
|
}),
|
|
|
|
|response, code| {
|
|
|
|
assert_eq!(code, 200, "{}", response);
|
|
|
|
assert_eq!(response["hits"].as_array().unwrap().len(), 200);
|
|
|
|
},
|
|
|
|
)
|
|
|
|
.await;
|
2022-06-09 10:48:32 +02:00
|
|
|
|
2022-10-20 18:00:07 +02:00
|
|
|
index.update_settings(json!({ "pagination": { "maxTotalHits": 10_000 } })).await;
|
2022-06-09 10:48:32 +02:00
|
|
|
index.wait_task(1).await;
|
|
|
|
|
|
|
|
index
|
|
|
|
.search(
|
|
|
|
json!({
|
|
|
|
"q": "unique",
|
|
|
|
"limit": 1500,
|
|
|
|
}),
|
|
|
|
|response, code| {
|
|
|
|
assert_eq!(code, 200, "{}", response);
|
|
|
|
assert_eq!(response["hits"].as_array().unwrap().len(), 1200);
|
|
|
|
},
|
|
|
|
)
|
|
|
|
.await;
|
|
|
|
|
|
|
|
index
|
|
|
|
.search(
|
|
|
|
json!({
|
|
|
|
"q": "unique",
|
|
|
|
"offset": 1000,
|
|
|
|
"limit": 400,
|
|
|
|
}),
|
|
|
|
|response, code| {
|
|
|
|
assert_eq!(code, 200, "{}", response);
|
|
|
|
assert_eq!(response["hits"].as_array().unwrap().len(), 200);
|
|
|
|
},
|
|
|
|
)
|
|
|
|
.await;
|
2022-03-31 01:32:37 +02:00
|
|
|
}
|
2022-06-09 10:41:46 +02:00
|
|
|
|
|
|
|
#[actix_rt::test]
|
|
|
|
async fn faceting_max_values_per_facet() {
|
|
|
|
let server = Server::new().await;
|
|
|
|
let index = server.index("test");
|
|
|
|
|
2022-10-20 18:00:07 +02:00
|
|
|
index.update_settings(json!({ "filterableAttributes": ["number"] })).await;
|
2022-06-09 10:41:46 +02:00
|
|
|
|
2022-10-20 18:00:07 +02:00
|
|
|
let documents: Vec<_> = (0..10_000).map(|id| json!({ "id": id, "number": id * 10 })).collect();
|
2022-06-09 10:41:46 +02:00
|
|
|
index.add_documents(json!(documents), None).await;
|
|
|
|
index.wait_task(1).await;
|
|
|
|
|
|
|
|
index
|
|
|
|
.search(
|
|
|
|
json!({
|
|
|
|
"facets": ["number"]
|
|
|
|
}),
|
|
|
|
|response, code| {
|
|
|
|
assert_eq!(code, 200, "{}", response);
|
|
|
|
let numbers = response["facetDistribution"]["number"].as_object().unwrap();
|
|
|
|
assert_eq!(numbers.len(), 100);
|
|
|
|
},
|
|
|
|
)
|
|
|
|
.await;
|
|
|
|
|
2022-10-20 18:00:07 +02:00
|
|
|
index.update_settings(json!({ "faceting": { "maxValuesPerFacet": 10_000 } })).await;
|
2022-06-09 10:41:46 +02:00
|
|
|
index.wait_task(2).await;
|
|
|
|
|
|
|
|
index
|
|
|
|
.search(
|
|
|
|
json!({
|
|
|
|
"facets": ["number"]
|
|
|
|
}),
|
|
|
|
|response, code| {
|
|
|
|
assert_eq!(code, 200, "{}", response);
|
2022-06-16 15:58:39 +02:00
|
|
|
let numbers = &response["facetDistribution"]["number"].as_object().unwrap();
|
2022-06-09 10:41:46 +02:00
|
|
|
assert_eq!(numbers.len(), 10_000);
|
|
|
|
},
|
|
|
|
)
|
|
|
|
.await;
|
|
|
|
}
|