2020-01-28 17:45:57 +01:00
|
|
|
use assert_json_diff::assert_json_eq;
|
|
|
|
use serde_json::json;
|
|
|
|
|
|
|
|
mod common;
|
|
|
|
|
2020-04-16 11:09:47 +02:00
|
|
|
#[actix_rt::test]
|
|
|
|
async fn write_all_and_delete() {
|
2020-03-04 14:18:07 +01:00
|
|
|
let mut server = common::Server::with_uid("movies");
|
2020-04-16 11:09:47 +02:00
|
|
|
server.populate_movies().await;
|
2020-01-28 17:45:57 +01:00
|
|
|
|
|
|
|
// 2 - Send the settings
|
|
|
|
|
2020-03-04 14:18:07 +01:00
|
|
|
let body = json!([
|
2020-02-26 18:47:03 +01:00
|
|
|
"typo",
|
|
|
|
"words",
|
|
|
|
"proximity",
|
|
|
|
"attribute",
|
2020-02-27 14:31:08 +01:00
|
|
|
"wordsPosition",
|
2020-02-26 18:47:03 +01:00
|
|
|
"exactness",
|
2020-03-02 17:13:23 +01:00
|
|
|
"desc(release_date)",
|
|
|
|
"desc(rank)",
|
2020-02-10 16:51:17 +01:00
|
|
|
]);
|
2020-01-28 17:45:57 +01:00
|
|
|
|
2020-04-16 11:09:47 +02:00
|
|
|
server.update_ranking_rules(body.clone()).await;
|
2020-01-28 17:45:57 +01:00
|
|
|
|
|
|
|
// 3 - Get all settings and compare to the previous one
|
|
|
|
|
2020-04-16 11:09:47 +02:00
|
|
|
let (response, _status_code) = server.get_ranking_rules().await;
|
2020-02-02 22:59:19 +01:00
|
|
|
|
2020-03-04 14:18:07 +01:00
|
|
|
assert_json_eq!(body, response, ordered: false);
|
2020-01-28 17:45:57 +01:00
|
|
|
|
|
|
|
// 4 - Delete all settings
|
|
|
|
|
2020-04-16 11:09:47 +02:00
|
|
|
server.delete_ranking_rules().await;
|
2020-01-28 17:45:57 +01:00
|
|
|
|
|
|
|
// 5 - Get all settings and check if they are empty
|
|
|
|
|
2020-04-16 11:09:47 +02:00
|
|
|
let (response, _status_code) = server.get_ranking_rules().await;
|
2020-01-28 17:45:57 +01:00
|
|
|
|
2020-03-05 15:18:19 +01:00
|
|
|
let expected = json!([
|
2020-03-02 14:34:29 +01:00
|
|
|
"typo",
|
|
|
|
"words",
|
|
|
|
"proximity",
|
|
|
|
"attribute",
|
|
|
|
"wordsPosition",
|
|
|
|
"exactness"
|
2020-02-26 18:47:03 +01:00
|
|
|
]);
|
2020-02-02 22:59:19 +01:00
|
|
|
|
2020-03-05 15:18:19 +01:00
|
|
|
assert_json_eq!(expected, response, ordered: false);
|
2020-01-28 17:45:57 +01:00
|
|
|
}
|
|
|
|
|
2020-04-16 11:09:47 +02:00
|
|
|
#[actix_rt::test]
|
|
|
|
async fn write_all_and_update() {
|
2020-03-04 14:18:07 +01:00
|
|
|
let mut server = common::Server::with_uid("movies");
|
2020-04-16 11:09:47 +02:00
|
|
|
server.populate_movies().await;
|
2020-01-28 17:45:57 +01:00
|
|
|
|
|
|
|
// 2 - Send the settings
|
|
|
|
|
2020-03-04 14:18:07 +01:00
|
|
|
let body = json!([
|
2020-02-26 18:47:03 +01:00
|
|
|
"typo",
|
|
|
|
"words",
|
|
|
|
"proximity",
|
|
|
|
"attribute",
|
2020-02-27 14:31:08 +01:00
|
|
|
"wordsPosition",
|
2020-02-26 18:47:03 +01:00
|
|
|
"exactness",
|
2020-03-02 17:13:23 +01:00
|
|
|
"desc(release_date)",
|
|
|
|
"desc(rank)",
|
2020-02-10 16:51:17 +01:00
|
|
|
]);
|
2020-01-28 17:45:57 +01:00
|
|
|
|
2020-04-16 11:09:47 +02:00
|
|
|
server.update_ranking_rules(body.clone()).await;
|
2020-01-28 17:45:57 +01:00
|
|
|
|
|
|
|
// 3 - Get all settings and compare to the previous one
|
|
|
|
|
2020-04-16 11:09:47 +02:00
|
|
|
let (response, _status_code) = server.get_ranking_rules().await;
|
2020-01-28 17:45:57 +01:00
|
|
|
|
2020-03-04 14:18:07 +01:00
|
|
|
assert_json_eq!(body, response, ordered: false);
|
2020-01-28 17:45:57 +01:00
|
|
|
|
|
|
|
// 4 - Update all settings
|
|
|
|
|
2020-03-04 14:18:07 +01:00
|
|
|
let body = json!([
|
2020-02-26 18:47:03 +01:00
|
|
|
"typo",
|
|
|
|
"words",
|
|
|
|
"proximity",
|
|
|
|
"attribute",
|
2020-02-27 14:31:08 +01:00
|
|
|
"wordsPosition",
|
2020-02-26 18:47:03 +01:00
|
|
|
"exactness",
|
2020-03-02 17:13:23 +01:00
|
|
|
"desc(release_date)",
|
2020-02-10 16:51:17 +01:00
|
|
|
]);
|
2020-01-28 17:45:57 +01:00
|
|
|
|
2020-04-16 11:09:47 +02:00
|
|
|
server.update_ranking_rules(body).await;
|
2020-01-28 17:45:57 +01:00
|
|
|
|
|
|
|
// 5 - Get all settings and check if the content is the same of (4)
|
|
|
|
|
2020-04-16 11:09:47 +02:00
|
|
|
let (response, _status_code) = server.get_ranking_rules().await;
|
2020-01-28 17:45:57 +01:00
|
|
|
|
2020-03-04 14:18:07 +01:00
|
|
|
let expected = json!([
|
2020-02-26 18:47:03 +01:00
|
|
|
"typo",
|
|
|
|
"words",
|
|
|
|
"proximity",
|
|
|
|
"attribute",
|
2020-02-27 14:31:08 +01:00
|
|
|
"wordsPosition",
|
2020-02-26 18:47:03 +01:00
|
|
|
"exactness",
|
2020-03-02 17:13:23 +01:00
|
|
|
"desc(release_date)",
|
2020-02-10 16:51:17 +01:00
|
|
|
]);
|
2020-01-28 17:45:57 +01:00
|
|
|
|
2020-03-04 14:18:07 +01:00
|
|
|
assert_json_eq!(expected, response, ordered: false);
|
2020-01-28 17:45:57 +01:00
|
|
|
}
|
2020-03-05 15:18:19 +01:00
|
|
|
|
2020-04-16 11:09:47 +02:00
|
|
|
#[actix_rt::test]
|
|
|
|
async fn send_undefined_rule() {
|
2020-03-05 15:18:19 +01:00
|
|
|
let mut server = common::Server::with_uid("movies");
|
|
|
|
let body = json!({
|
|
|
|
"uid": "movies",
|
2020-03-09 18:40:49 +01:00
|
|
|
"primaryKey": "id",
|
2020-03-05 15:18:19 +01:00
|
|
|
});
|
2020-04-16 11:09:47 +02:00
|
|
|
server.create_index(body).await;
|
2020-03-05 15:18:19 +01:00
|
|
|
|
2020-03-10 11:29:56 +01:00
|
|
|
let body = json!(["typos",]);
|
2020-03-05 15:18:19 +01:00
|
|
|
|
2020-04-16 11:09:47 +02:00
|
|
|
let (_response, status_code) = server.update_ranking_rules_sync(body).await;
|
2020-03-05 15:18:19 +01:00
|
|
|
assert_eq!(status_code, 400);
|
|
|
|
}
|
|
|
|
|
2020-04-16 11:09:47 +02:00
|
|
|
#[actix_rt::test]
|
|
|
|
async fn send_malformed_custom_rule() {
|
2020-03-05 15:18:19 +01:00
|
|
|
let mut server = common::Server::with_uid("movies");
|
|
|
|
let body = json!({
|
|
|
|
"uid": "movies",
|
2020-03-09 18:40:49 +01:00
|
|
|
"primaryKey": "id",
|
2020-03-05 15:18:19 +01:00
|
|
|
});
|
2020-04-16 11:09:47 +02:00
|
|
|
server.create_index(body).await;
|
2020-03-05 15:18:19 +01:00
|
|
|
|
2020-03-10 11:29:56 +01:00
|
|
|
let body = json!(["dsc(truc)",]);
|
2020-03-05 15:18:19 +01:00
|
|
|
|
2020-04-16 11:09:47 +02:00
|
|
|
let (_response, status_code) = server.update_ranking_rules_sync(body).await;
|
2020-03-05 15:18:19 +01:00
|
|
|
assert_eq!(status_code, 400);
|
|
|
|
}
|
2020-03-16 12:17:51 +01:00
|
|
|
|
|
|
|
// Test issue https://github.com/meilisearch/MeiliSearch/issues/521
|
2020-04-16 11:09:47 +02:00
|
|
|
#[actix_rt::test]
|
|
|
|
async fn write_custom_ranking_and_index_documents() {
|
2020-03-16 12:17:51 +01:00
|
|
|
let mut server = common::Server::with_uid("movies");
|
|
|
|
let body = json!({
|
|
|
|
"uid": "movies",
|
|
|
|
"primaryKey": "id",
|
|
|
|
});
|
2020-04-16 11:09:47 +02:00
|
|
|
server.create_index(body).await;
|
2020-03-16 12:17:51 +01:00
|
|
|
|
|
|
|
// 1 - Add ranking rules with one custom ranking on a string
|
|
|
|
|
2020-04-10 19:05:05 +02:00
|
|
|
let body = json!(["asc(title)", "typo"]);
|
2020-03-16 12:17:51 +01:00
|
|
|
|
2020-04-16 11:09:47 +02:00
|
|
|
server.update_ranking_rules(body).await;
|
2020-03-16 12:17:51 +01:00
|
|
|
|
|
|
|
// 2 - Add documents
|
|
|
|
|
|
|
|
let body = json!([
|
|
|
|
{
|
|
|
|
"id": 1,
|
|
|
|
"title": "Le Petit Prince",
|
|
|
|
"author": "Exupéry"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": 2,
|
|
|
|
"title": "Pride and Prejudice",
|
|
|
|
"author": "Jane Austen"
|
|
|
|
}
|
|
|
|
]);
|
|
|
|
|
2020-04-16 11:09:47 +02:00
|
|
|
server.add_or_replace_multiple_documents(body).await;
|
2020-03-16 12:17:51 +01:00
|
|
|
|
|
|
|
// 3 - Get the first document and compare
|
|
|
|
|
|
|
|
let expected = json!({
|
|
|
|
"id": 1,
|
|
|
|
"title": "Le Petit Prince",
|
|
|
|
"author": "Exupéry"
|
|
|
|
});
|
|
|
|
|
2020-04-16 11:09:47 +02:00
|
|
|
let (response, status_code) = server.get_document(1).await;
|
2020-03-16 12:17:51 +01:00
|
|
|
assert_eq!(status_code, 200);
|
|
|
|
|
|
|
|
assert_json_eq!(response, expected, ordered: false);
|
|
|
|
}
|