mirror of
https://github.com/meilisearch/MeiliSearch
synced 2024-11-04 20:18:55 +01:00
185 lines
4.2 KiB
Rust
185 lines
4.2 KiB
Rust
use assert_json_diff::assert_json_eq;
|
|
use serde_json::json;
|
|
|
|
mod common;
|
|
|
|
#[actix_rt::test]
|
|
async fn write_all_and_delete() {
|
|
let mut server = common::Server::with_uid("movies");
|
|
server.populate_movies().await;
|
|
|
|
// 2 - Send the settings
|
|
|
|
let body = json!([
|
|
"typo",
|
|
"words",
|
|
"proximity",
|
|
"attribute",
|
|
"wordsPosition",
|
|
"exactness",
|
|
"desc(release_date)",
|
|
"desc(rank)",
|
|
]);
|
|
|
|
server.update_ranking_rules(body.clone()).await;
|
|
|
|
// 3 - Get all settings and compare to the previous one
|
|
|
|
let (response, _status_code) = server.get_ranking_rules().await;
|
|
|
|
assert_json_eq!(body, response, ordered: false);
|
|
|
|
// 4 - Delete all settings
|
|
|
|
server.delete_ranking_rules().await;
|
|
|
|
// 5 - Get all settings and check if they are empty
|
|
|
|
let (response, _status_code) = server.get_ranking_rules().await;
|
|
|
|
let expected = json!([
|
|
"typo",
|
|
"words",
|
|
"proximity",
|
|
"attribute",
|
|
"wordsPosition",
|
|
"exactness"
|
|
]);
|
|
|
|
assert_json_eq!(expected, response, ordered: false);
|
|
}
|
|
|
|
#[actix_rt::test]
|
|
async fn write_all_and_update() {
|
|
let mut server = common::Server::with_uid("movies");
|
|
server.populate_movies().await;
|
|
|
|
// 2 - Send the settings
|
|
|
|
let body = json!([
|
|
"typo",
|
|
"words",
|
|
"proximity",
|
|
"attribute",
|
|
"wordsPosition",
|
|
"exactness",
|
|
"desc(release_date)",
|
|
"desc(rank)",
|
|
]);
|
|
|
|
server.update_ranking_rules(body.clone()).await;
|
|
|
|
// 3 - Get all settings and compare to the previous one
|
|
|
|
let (response, _status_code) = server.get_ranking_rules().await;
|
|
|
|
assert_json_eq!(body, response, ordered: false);
|
|
|
|
// 4 - Update all settings
|
|
|
|
let body = json!([
|
|
"typo",
|
|
"words",
|
|
"proximity",
|
|
"attribute",
|
|
"wordsPosition",
|
|
"exactness",
|
|
"desc(release_date)",
|
|
]);
|
|
|
|
server.update_ranking_rules(body).await;
|
|
|
|
// 5 - Get all settings and check if the content is the same of (4)
|
|
|
|
let (response, _status_code) = server.get_ranking_rules().await;
|
|
|
|
let expected = json!([
|
|
"typo",
|
|
"words",
|
|
"proximity",
|
|
"attribute",
|
|
"wordsPosition",
|
|
"exactness",
|
|
"desc(release_date)",
|
|
]);
|
|
|
|
assert_json_eq!(expected, response, ordered: false);
|
|
}
|
|
|
|
#[actix_rt::test]
|
|
async fn send_undefined_rule() {
|
|
let mut server = common::Server::with_uid("movies");
|
|
let body = json!({
|
|
"uid": "movies",
|
|
"primaryKey": "id",
|
|
});
|
|
server.create_index(body).await;
|
|
|
|
let body = json!(["typos",]);
|
|
|
|
let (_response, status_code) = server.update_ranking_rules_sync(body).await;
|
|
assert_eq!(status_code, 400);
|
|
}
|
|
|
|
#[actix_rt::test]
|
|
async fn send_malformed_custom_rule() {
|
|
let mut server = common::Server::with_uid("movies");
|
|
let body = json!({
|
|
"uid": "movies",
|
|
"primaryKey": "id",
|
|
});
|
|
server.create_index(body).await;
|
|
|
|
let body = json!(["dsc(truc)",]);
|
|
|
|
let (_response, status_code) = server.update_ranking_rules_sync(body).await;
|
|
assert_eq!(status_code, 400);
|
|
}
|
|
|
|
// Test issue https://github.com/meilisearch/MeiliSearch/issues/521
|
|
#[actix_rt::test]
|
|
async fn write_custom_ranking_and_index_documents() {
|
|
let mut server = common::Server::with_uid("movies");
|
|
let body = json!({
|
|
"uid": "movies",
|
|
"primaryKey": "id",
|
|
});
|
|
server.create_index(body).await;
|
|
|
|
// 1 - Add ranking rules with one custom ranking on a string
|
|
|
|
let body = json!(["asc(title)", "typo"]);
|
|
|
|
server.update_ranking_rules(body).await;
|
|
|
|
// 2 - Add documents
|
|
|
|
let body = json!([
|
|
{
|
|
"id": 1,
|
|
"title": "Le Petit Prince",
|
|
"author": "Exupéry"
|
|
},
|
|
{
|
|
"id": 2,
|
|
"title": "Pride and Prejudice",
|
|
"author": "Jane Austen"
|
|
}
|
|
]);
|
|
|
|
server.add_or_replace_multiple_documents(body).await;
|
|
|
|
// 3 - Get the first document and compare
|
|
|
|
let expected = json!({
|
|
"id": 1,
|
|
"title": "Le Petit Prince",
|
|
"author": "Exupéry"
|
|
});
|
|
|
|
let (response, status_code) = server.get_document(1).await;
|
|
assert_eq!(status_code, 200);
|
|
|
|
assert_json_eq!(response, expected, ordered: false);
|
|
}
|