2020-03-04 15:58:36 +01:00
use assert_json_diff ::assert_json_eq ;
2020-03-10 11:29:56 +01:00
use serde_json ::json ;
2020-04-04 19:48:43 +02:00
use serde_json ::Value ;
2020-01-16 17:44:34 +01:00
mod common ;
2020-04-16 11:09:47 +02:00
#[ actix_rt::test ]
async fn create_index_with_name ( ) {
2020-03-04 14:18:07 +01:00
let mut server = common ::Server ::with_uid ( " movies " ) ;
2020-01-16 17:44:34 +01:00
// 1 - Create a new index
let body = json! ( {
" name " : " movies " ,
2020-03-04 14:18:07 +01:00
} ) ;
2020-01-16 17:44:34 +01:00
2020-04-16 11:09:47 +02:00
let ( res1_value , status_code ) = server . create_index ( body ) . await ;
2020-03-05 18:29:10 +01:00
2020-03-04 14:18:07 +01:00
assert_eq! ( status_code , 201 ) ;
2020-02-12 17:00:14 +01:00
assert_eq! ( res1_value . as_object ( ) . unwrap ( ) . len ( ) , 5 ) ;
2020-01-16 17:44:34 +01:00
let r1_name = res1_value [ " name " ] . as_str ( ) . unwrap ( ) ;
let r1_uid = res1_value [ " uid " ] . as_str ( ) . unwrap ( ) ;
let r1_created_at = res1_value [ " createdAt " ] . as_str ( ) . unwrap ( ) ;
let r1_updated_at = res1_value [ " updatedAt " ] . as_str ( ) . unwrap ( ) ;
assert_eq! ( r1_name , " movies " ) ;
assert_eq! ( r1_uid . len ( ) , 8 ) ;
2020-02-13 10:25:37 +01:00
assert! ( r1_created_at . len ( ) > 1 ) ;
assert! ( r1_updated_at . len ( ) > 1 ) ;
2020-01-16 17:44:34 +01:00
// 2 - Check the list of indexes
2020-04-16 11:09:47 +02:00
let ( res2_value , status_code ) = server . list_indexes ( ) . await ;
2020-03-05 18:29:10 +01:00
2020-03-04 14:18:07 +01:00
assert_eq! ( status_code , 200 ) ;
2020-01-16 17:44:34 +01:00
assert_eq! ( res2_value . as_array ( ) . unwrap ( ) . len ( ) , 1 ) ;
2020-02-12 17:00:14 +01:00
assert_eq! ( res2_value [ 0 ] . as_object ( ) . unwrap ( ) . len ( ) , 5 ) ;
2020-01-16 17:44:34 +01:00
let r2_name = res2_value [ 0 ] [ " name " ] . as_str ( ) . unwrap ( ) ;
let r2_uid = res2_value [ 0 ] [ " uid " ] . as_str ( ) . unwrap ( ) ;
let r2_created_at = res2_value [ 0 ] [ " createdAt " ] . as_str ( ) . unwrap ( ) ;
let r2_updated_at = res2_value [ 0 ] [ " updatedAt " ] . as_str ( ) . unwrap ( ) ;
assert_eq! ( r2_name , r1_name ) ;
assert_eq! ( r2_uid . len ( ) , r1_uid . len ( ) ) ;
assert_eq! ( r2_created_at . len ( ) , r1_created_at . len ( ) ) ;
assert_eq! ( r2_updated_at . len ( ) , r1_updated_at . len ( ) ) ;
}
2020-04-16 11:09:47 +02:00
#[ actix_rt::test ]
async fn create_index_with_uid ( ) {
2020-03-04 14:18:07 +01:00
let mut server = common ::Server ::with_uid ( " movies " ) ;
2020-01-16 17:44:34 +01:00
// 1 - Create a new index
let body = json! ( {
" uid " : " movies " ,
2020-03-04 14:18:07 +01:00
} ) ;
2020-01-16 17:44:34 +01:00
2020-06-01 11:06:57 +02:00
let ( res1_value , status_code ) = server . create_index ( body . clone ( ) ) . await ;
2020-03-05 18:29:10 +01:00
2020-03-04 14:18:07 +01:00
assert_eq! ( status_code , 201 ) ;
2020-02-12 17:00:14 +01:00
assert_eq! ( res1_value . as_object ( ) . unwrap ( ) . len ( ) , 5 ) ;
2020-01-16 17:44:34 +01:00
let r1_name = res1_value [ " name " ] . as_str ( ) . unwrap ( ) ;
let r1_uid = res1_value [ " uid " ] . as_str ( ) . unwrap ( ) ;
let r1_created_at = res1_value [ " createdAt " ] . as_str ( ) . unwrap ( ) ;
let r1_updated_at = res1_value [ " updatedAt " ] . as_str ( ) . unwrap ( ) ;
assert_eq! ( r1_name , " movies " ) ;
assert_eq! ( r1_uid , " movies " ) ;
2020-02-13 10:25:37 +01:00
assert! ( r1_created_at . len ( ) > 1 ) ;
assert! ( r1_updated_at . len ( ) > 1 ) ;
2020-01-16 17:44:34 +01:00
2020-06-01 11:06:57 +02:00
// 1.5 verify that error is thrown when trying to create the same index
let ( response , status_code ) = server . create_index ( body ) . await ;
assert_eq! ( status_code , 400 ) ;
assert_eq! ( response [ " errorCode " ] . as_str ( ) . unwrap ( ) , " index_already_exists " ) ;
2020-01-16 17:44:34 +01:00
// 2 - Check the list of indexes
2020-04-16 11:09:47 +02:00
let ( res2_value , status_code ) = server . list_indexes ( ) . await ;
2020-03-05 18:29:10 +01:00
2020-03-04 14:18:07 +01:00
assert_eq! ( status_code , 200 ) ;
2020-01-16 17:44:34 +01:00
assert_eq! ( res2_value . as_array ( ) . unwrap ( ) . len ( ) , 1 ) ;
2020-02-12 17:00:14 +01:00
assert_eq! ( res2_value [ 0 ] . as_object ( ) . unwrap ( ) . len ( ) , 5 ) ;
2020-01-16 17:44:34 +01:00
let r2_name = res2_value [ 0 ] [ " name " ] . as_str ( ) . unwrap ( ) ;
let r2_uid = res2_value [ 0 ] [ " uid " ] . as_str ( ) . unwrap ( ) ;
let r2_created_at = res2_value [ 0 ] [ " createdAt " ] . as_str ( ) . unwrap ( ) ;
let r2_updated_at = res2_value [ 0 ] [ " updatedAt " ] . as_str ( ) . unwrap ( ) ;
assert_eq! ( r2_name , r1_name ) ;
assert_eq! ( r2_uid , r1_uid ) ;
assert_eq! ( r2_created_at . len ( ) , r1_created_at . len ( ) ) ;
assert_eq! ( r2_updated_at . len ( ) , r1_updated_at . len ( ) ) ;
}
2020-04-16 11:09:47 +02:00
#[ actix_rt::test ]
async fn create_index_with_name_and_uid ( ) {
2020-03-04 14:18:07 +01:00
let mut server = common ::Server ::with_uid ( " movies " ) ;
2020-01-16 17:44:34 +01:00
// 1 - Create a new index
let body = json! ( {
" name " : " Films " ,
" uid " : " fr_movies " ,
2020-03-04 14:18:07 +01:00
} ) ;
2020-04-16 11:09:47 +02:00
let ( res1_value , status_code ) = server . create_index ( body ) . await ;
2020-01-16 17:44:34 +01:00
2020-03-05 18:29:10 +01:00
assert_eq! ( status_code , 201 ) ;
2020-02-12 17:00:14 +01:00
assert_eq! ( res1_value . as_object ( ) . unwrap ( ) . len ( ) , 5 ) ;
2020-01-16 17:44:34 +01:00
let r1_name = res1_value [ " name " ] . as_str ( ) . unwrap ( ) ;
let r1_uid = res1_value [ " uid " ] . as_str ( ) . unwrap ( ) ;
let r1_created_at = res1_value [ " createdAt " ] . as_str ( ) . unwrap ( ) ;
let r1_updated_at = res1_value [ " updatedAt " ] . as_str ( ) . unwrap ( ) ;
assert_eq! ( r1_name , " Films " ) ;
assert_eq! ( r1_uid , " fr_movies " ) ;
2020-02-13 10:25:37 +01:00
assert! ( r1_created_at . len ( ) > 1 ) ;
assert! ( r1_updated_at . len ( ) > 1 ) ;
2020-01-16 17:44:34 +01:00
// 2 - Check the list of indexes
2020-04-16 11:09:47 +02:00
let ( res2_value , status_code ) = server . list_indexes ( ) . await ;
2020-01-16 17:44:34 +01:00
2020-03-05 18:29:10 +01:00
assert_eq! ( status_code , 200 ) ;
2020-01-16 17:44:34 +01:00
assert_eq! ( res2_value . as_array ( ) . unwrap ( ) . len ( ) , 1 ) ;
2020-02-12 17:00:14 +01:00
assert_eq! ( res2_value [ 0 ] . as_object ( ) . unwrap ( ) . len ( ) , 5 ) ;
2020-01-16 17:44:34 +01:00
let r2_name = res2_value [ 0 ] [ " name " ] . as_str ( ) . unwrap ( ) ;
let r2_uid = res2_value [ 0 ] [ " uid " ] . as_str ( ) . unwrap ( ) ;
let r2_created_at = res2_value [ 0 ] [ " createdAt " ] . as_str ( ) . unwrap ( ) ;
let r2_updated_at = res2_value [ 0 ] [ " updatedAt " ] . as_str ( ) . unwrap ( ) ;
assert_eq! ( r2_name , r1_name ) ;
assert_eq! ( r2_uid , r1_uid ) ;
assert_eq! ( r2_created_at . len ( ) , r1_created_at . len ( ) ) ;
assert_eq! ( r2_updated_at . len ( ) , r1_updated_at . len ( ) ) ;
}
2020-04-16 11:09:47 +02:00
#[ actix_rt::test ]
async fn rename_index ( ) {
2020-03-04 14:18:07 +01:00
let mut server = common ::Server ::with_uid ( " movies " ) ;
2020-03-05 18:29:10 +01:00
2020-01-16 17:44:34 +01:00
// 1 - Create a new index
let body = json! ( {
" name " : " movies " ,
2020-03-04 14:18:07 +01:00
" uid " : " movies " ,
} ) ;
2020-01-16 17:44:34 +01:00
2020-04-16 11:09:47 +02:00
let ( res1_value , status_code ) = server . create_index ( body ) . await ;
2020-01-16 17:44:34 +01:00
2020-03-05 18:29:10 +01:00
assert_eq! ( status_code , 201 ) ;
2020-02-12 17:00:14 +01:00
assert_eq! ( res1_value . as_object ( ) . unwrap ( ) . len ( ) , 5 ) ;
2020-01-16 17:44:34 +01:00
let r1_name = res1_value [ " name " ] . as_str ( ) . unwrap ( ) ;
let r1_uid = res1_value [ " uid " ] . as_str ( ) . unwrap ( ) ;
let r1_created_at = res1_value [ " createdAt " ] . as_str ( ) . unwrap ( ) ;
let r1_updated_at = res1_value [ " updatedAt " ] . as_str ( ) . unwrap ( ) ;
assert_eq! ( r1_name , " movies " ) ;
2020-03-04 14:18:07 +01:00
assert_eq! ( r1_uid . len ( ) , 6 ) ;
2020-02-13 10:25:37 +01:00
assert! ( r1_created_at . len ( ) > 1 ) ;
assert! ( r1_updated_at . len ( ) > 1 ) ;
2020-01-16 17:44:34 +01:00
// 2 - Update an index name
let body = json! ( {
" name " : " TV Shows " ,
2020-03-04 14:18:07 +01:00
} ) ;
2020-01-16 17:44:34 +01:00
2020-04-16 11:09:47 +02:00
let ( res2_value , status_code ) = server . update_index ( body ) . await ;
2020-01-16 17:44:34 +01:00
2020-03-05 18:29:10 +01:00
assert_eq! ( status_code , 200 ) ;
2020-02-12 17:00:14 +01:00
assert_eq! ( res2_value . as_object ( ) . unwrap ( ) . len ( ) , 5 ) ;
2020-01-16 17:44:34 +01:00
let r2_name = res2_value [ " name " ] . as_str ( ) . unwrap ( ) ;
let r2_uid = res2_value [ " uid " ] . as_str ( ) . unwrap ( ) ;
let r2_created_at = res2_value [ " createdAt " ] . as_str ( ) . unwrap ( ) ;
let r2_updated_at = res2_value [ " updatedAt " ] . as_str ( ) . unwrap ( ) ;
assert_eq! ( r2_name , " TV Shows " ) ;
assert_eq! ( r2_uid , r1_uid ) ;
assert_eq! ( r2_created_at , r1_created_at ) ;
2020-02-13 10:25:37 +01:00
assert! ( r2_updated_at . len ( ) > 1 ) ;
2020-01-16 17:44:34 +01:00
// 3 - Check the list of indexes
2020-04-16 11:09:47 +02:00
let ( res3_value , status_code ) = server . list_indexes ( ) . await ;
2020-01-16 17:44:34 +01:00
2020-03-05 18:29:10 +01:00
assert_eq! ( status_code , 200 ) ;
2020-01-16 17:44:34 +01:00
assert_eq! ( res3_value . as_array ( ) . unwrap ( ) . len ( ) , 1 ) ;
2020-02-12 17:00:14 +01:00
assert_eq! ( res3_value [ 0 ] . as_object ( ) . unwrap ( ) . len ( ) , 5 ) ;
2020-01-16 17:44:34 +01:00
let r3_name = res3_value [ 0 ] [ " name " ] . as_str ( ) . unwrap ( ) ;
let r3_uid = res3_value [ 0 ] [ " uid " ] . as_str ( ) . unwrap ( ) ;
let r3_created_at = res3_value [ 0 ] [ " createdAt " ] . as_str ( ) . unwrap ( ) ;
let r3_updated_at = res3_value [ 0 ] [ " updatedAt " ] . as_str ( ) . unwrap ( ) ;
assert_eq! ( r3_name , r2_name ) ;
assert_eq! ( r3_uid . len ( ) , r1_uid . len ( ) ) ;
assert_eq! ( r3_created_at . len ( ) , r1_created_at . len ( ) ) ;
assert_eq! ( r3_updated_at . len ( ) , r2_updated_at . len ( ) ) ;
}
2020-04-16 11:09:47 +02:00
#[ actix_rt::test ]
async fn delete_index_and_recreate_it ( ) {
2020-03-04 14:18:07 +01:00
let mut server = common ::Server ::with_uid ( " movies " ) ;
2020-01-16 17:44:34 +01:00
2020-06-05 11:40:18 +02:00
// 0 - delete unexisting index is error
let ( response , status_code ) = server . delete_request ( " /indexes/test " ) . await ;
assert_eq! ( status_code , 404 ) ;
assert_eq! ( & response [ " errorCode " ] , " index_not_found " ) ;
2020-01-16 17:44:34 +01:00
// 1 - Create a new index
let body = json! ( {
" name " : " movies " ,
2020-03-04 14:18:07 +01:00
" uid " : " movies " ,
} ) ;
2020-01-16 17:44:34 +01:00
2020-04-16 11:09:47 +02:00
let ( res1_value , status_code ) = server . create_index ( body ) . await ;
2020-01-16 17:44:34 +01:00
2020-03-05 18:29:10 +01:00
assert_eq! ( status_code , 201 ) ;
2020-02-12 17:00:14 +01:00
assert_eq! ( res1_value . as_object ( ) . unwrap ( ) . len ( ) , 5 ) ;
2020-01-16 17:44:34 +01:00
let r1_name = res1_value [ " name " ] . as_str ( ) . unwrap ( ) ;
let r1_uid = res1_value [ " uid " ] . as_str ( ) . unwrap ( ) ;
let r1_created_at = res1_value [ " createdAt " ] . as_str ( ) . unwrap ( ) ;
let r1_updated_at = res1_value [ " updatedAt " ] . as_str ( ) . unwrap ( ) ;
assert_eq! ( r1_name , " movies " ) ;
2020-03-04 14:18:07 +01:00
assert_eq! ( r1_uid . len ( ) , 6 ) ;
2020-02-13 10:25:37 +01:00
assert! ( r1_created_at . len ( ) > 1 ) ;
assert! ( r1_updated_at . len ( ) > 1 ) ;
2020-01-16 17:44:34 +01:00
// 2 - Check the list of indexes
2020-04-16 11:09:47 +02:00
let ( res2_value , status_code ) = server . list_indexes ( ) . await ;
2020-01-16 17:44:34 +01:00
2020-03-05 18:29:10 +01:00
assert_eq! ( status_code , 200 ) ;
2020-01-16 17:44:34 +01:00
assert_eq! ( res2_value . as_array ( ) . unwrap ( ) . len ( ) , 1 ) ;
2020-02-12 17:00:14 +01:00
assert_eq! ( res2_value [ 0 ] . as_object ( ) . unwrap ( ) . len ( ) , 5 ) ;
2020-01-16 17:44:34 +01:00
let r2_name = res2_value [ 0 ] [ " name " ] . as_str ( ) . unwrap ( ) ;
let r2_uid = res2_value [ 0 ] [ " uid " ] . as_str ( ) . unwrap ( ) ;
let r2_created_at = res2_value [ 0 ] [ " createdAt " ] . as_str ( ) . unwrap ( ) ;
let r2_updated_at = res2_value [ 0 ] [ " updatedAt " ] . as_str ( ) . unwrap ( ) ;
assert_eq! ( r2_name , r1_name ) ;
assert_eq! ( r2_uid . len ( ) , r1_uid . len ( ) ) ;
assert_eq! ( r2_created_at . len ( ) , r1_created_at . len ( ) ) ;
assert_eq! ( r2_updated_at . len ( ) , r1_updated_at . len ( ) ) ;
// 3- Delete an index
2020-04-16 11:09:47 +02:00
let ( _res2_value , status_code ) = server . delete_index ( ) . await ;
2020-03-05 18:29:10 +01:00
2020-03-04 14:18:07 +01:00
assert_eq! ( status_code , 204 ) ;
2020-01-16 17:44:34 +01:00
// 4 - Check the list of indexes
2020-04-16 11:09:47 +02:00
let ( res2_value , status_code ) = server . list_indexes ( ) . await ;
2020-01-16 17:44:34 +01:00
2020-03-05 18:29:10 +01:00
assert_eq! ( status_code , 200 ) ;
2020-01-16 17:44:34 +01:00
assert_eq! ( res2_value . as_array ( ) . unwrap ( ) . len ( ) , 0 ) ;
// 5 - Create a new index
let body = json! ( {
" name " : " movies " ,
2020-03-04 14:18:07 +01:00
} ) ;
2020-01-16 17:44:34 +01:00
2020-04-16 11:09:47 +02:00
let ( res1_value , status_code ) = server . create_index ( body ) . await ;
2020-01-16 17:44:34 +01:00
2020-03-05 18:29:10 +01:00
assert_eq! ( status_code , 201 ) ;
2020-02-12 17:00:14 +01:00
assert_eq! ( res1_value . as_object ( ) . unwrap ( ) . len ( ) , 5 ) ;
2020-01-16 17:44:34 +01:00
let r1_name = res1_value [ " name " ] . as_str ( ) . unwrap ( ) ;
let r1_uid = res1_value [ " uid " ] . as_str ( ) . unwrap ( ) ;
let r1_created_at = res1_value [ " createdAt " ] . as_str ( ) . unwrap ( ) ;
let r1_updated_at = res1_value [ " updatedAt " ] . as_str ( ) . unwrap ( ) ;
assert_eq! ( r1_name , " movies " ) ;
assert_eq! ( r1_uid . len ( ) , 8 ) ;
2020-02-13 10:25:37 +01:00
assert! ( r1_created_at . len ( ) > 1 ) ;
assert! ( r1_updated_at . len ( ) > 1 ) ;
2020-01-16 17:44:34 +01:00
// 6 - Check the list of indexes
2020-04-16 11:09:47 +02:00
let ( res2_value , status_code ) = server . list_indexes ( ) . await ;
2020-03-04 14:18:07 +01:00
assert_eq! ( status_code , 200 ) ;
2020-01-16 17:44:34 +01:00
assert_eq! ( res2_value . as_array ( ) . unwrap ( ) . len ( ) , 1 ) ;
2020-02-12 17:00:14 +01:00
assert_eq! ( res2_value [ 0 ] . as_object ( ) . unwrap ( ) . len ( ) , 5 ) ;
2020-01-16 17:44:34 +01:00
let r2_name = res2_value [ 0 ] [ " name " ] . as_str ( ) . unwrap ( ) ;
let r2_uid = res2_value [ 0 ] [ " uid " ] . as_str ( ) . unwrap ( ) ;
let r2_created_at = res2_value [ 0 ] [ " createdAt " ] . as_str ( ) . unwrap ( ) ;
let r2_updated_at = res2_value [ 0 ] [ " updatedAt " ] . as_str ( ) . unwrap ( ) ;
assert_eq! ( r2_name , r1_name ) ;
assert_eq! ( r2_uid . len ( ) , r1_uid . len ( ) ) ;
assert_eq! ( r2_created_at . len ( ) , r1_created_at . len ( ) ) ;
assert_eq! ( r2_updated_at . len ( ) , r1_updated_at . len ( ) ) ;
}
2020-04-16 11:09:47 +02:00
#[ actix_rt::test ]
async fn check_multiples_indexes ( ) {
2020-03-04 14:18:07 +01:00
let mut server = common ::Server ::with_uid ( " movies " ) ;
2020-01-16 17:44:34 +01:00
// 1 - Create a new index
let body = json! ( {
" name " : " movies " ,
2020-03-04 14:18:07 +01:00
} ) ;
2020-01-16 17:44:34 +01:00
2020-04-16 11:09:47 +02:00
let ( res1_value , status_code ) = server . create_index ( body ) . await ;
2020-01-16 17:44:34 +01:00
2020-03-05 18:29:10 +01:00
assert_eq! ( status_code , 201 ) ;
2020-02-12 17:00:14 +01:00
assert_eq! ( res1_value . as_object ( ) . unwrap ( ) . len ( ) , 5 ) ;
2020-01-16 17:44:34 +01:00
let r1_name = res1_value [ " name " ] . as_str ( ) . unwrap ( ) ;
let r1_uid = res1_value [ " uid " ] . as_str ( ) . unwrap ( ) ;
let r1_created_at = res1_value [ " createdAt " ] . as_str ( ) . unwrap ( ) ;
let r1_updated_at = res1_value [ " updatedAt " ] . as_str ( ) . unwrap ( ) ;
assert_eq! ( r1_name , " movies " ) ;
assert_eq! ( r1_uid . len ( ) , 8 ) ;
2020-02-13 10:25:37 +01:00
assert! ( r1_created_at . len ( ) > 1 ) ;
assert! ( r1_updated_at . len ( ) > 1 ) ;
2020-01-16 17:44:34 +01:00
// 2 - Check the list of indexes
2020-04-16 11:09:47 +02:00
let ( res2_value , status_code ) = server . list_indexes ( ) . await ;
2020-01-16 17:44:34 +01:00
2020-03-05 18:29:10 +01:00
assert_eq! ( status_code , 200 ) ;
2020-01-16 17:44:34 +01:00
assert_eq! ( res2_value . as_array ( ) . unwrap ( ) . len ( ) , 1 ) ;
2020-02-12 17:00:14 +01:00
assert_eq! ( res2_value [ 0 ] . as_object ( ) . unwrap ( ) . len ( ) , 5 ) ;
2020-01-16 17:44:34 +01:00
let r2_0_name = res2_value [ 0 ] [ " name " ] . as_str ( ) . unwrap ( ) ;
let r2_0_uid = res2_value [ 0 ] [ " uid " ] . as_str ( ) . unwrap ( ) ;
let r2_0_created_at = res2_value [ 0 ] [ " createdAt " ] . as_str ( ) . unwrap ( ) ;
let r2_0_updated_at = res2_value [ 0 ] [ " updatedAt " ] . as_str ( ) . unwrap ( ) ;
assert_eq! ( r2_0_name , r1_name ) ;
assert_eq! ( r2_0_uid . len ( ) , r1_uid . len ( ) ) ;
assert_eq! ( r2_0_created_at . len ( ) , r1_created_at . len ( ) ) ;
assert_eq! ( r2_0_updated_at . len ( ) , r1_updated_at . len ( ) ) ;
// 3 - Create a new index
let body = json! ( {
" name " : " films " ,
2020-03-04 14:18:07 +01:00
} ) ;
2020-01-16 17:44:34 +01:00
2020-04-16 11:09:47 +02:00
let ( res3_value , status_code ) = server . create_index ( body ) . await ;
2020-01-16 17:44:34 +01:00
2020-03-05 18:29:10 +01:00
assert_eq! ( status_code , 201 ) ;
2020-02-12 17:00:14 +01:00
assert_eq! ( res3_value . as_object ( ) . unwrap ( ) . len ( ) , 5 ) ;
2020-01-16 17:44:34 +01:00
let r3_name = res3_value [ " name " ] . as_str ( ) . unwrap ( ) ;
let r3_uid = res3_value [ " uid " ] . as_str ( ) . unwrap ( ) ;
let r3_created_at = res3_value [ " createdAt " ] . as_str ( ) . unwrap ( ) ;
let r3_updated_at = res3_value [ " updatedAt " ] . as_str ( ) . unwrap ( ) ;
assert_eq! ( r3_name , " films " ) ;
assert_eq! ( r3_uid . len ( ) , 8 ) ;
2020-02-13 10:25:37 +01:00
assert! ( r3_created_at . len ( ) > 1 ) ;
assert! ( r3_updated_at . len ( ) > 1 ) ;
2020-01-16 17:44:34 +01:00
// 4 - Check the list of indexes
2020-04-16 11:09:47 +02:00
let ( res4_value , status_code ) = server . list_indexes ( ) . await ;
2020-01-16 17:44:34 +01:00
2020-03-05 18:29:10 +01:00
assert_eq! ( status_code , 200 ) ;
2020-01-16 17:44:34 +01:00
assert_eq! ( res4_value . as_array ( ) . unwrap ( ) . len ( ) , 2 ) ;
2020-02-12 17:00:14 +01:00
assert_eq! ( res4_value [ 0 ] . as_object ( ) . unwrap ( ) . len ( ) , 5 ) ;
2020-01-16 17:44:34 +01:00
let r4_0_name = res4_value [ 0 ] [ " name " ] . as_str ( ) . unwrap ( ) ;
let r4_0_uid = res4_value [ 0 ] [ " uid " ] . as_str ( ) . unwrap ( ) ;
let r4_0_created_at = res4_value [ 0 ] [ " createdAt " ] . as_str ( ) . unwrap ( ) ;
let r4_0_updated_at = res4_value [ 0 ] [ " updatedAt " ] . as_str ( ) . unwrap ( ) ;
2020-02-12 17:00:14 +01:00
assert_eq! ( res4_value [ 1 ] . as_object ( ) . unwrap ( ) . len ( ) , 5 ) ;
2020-01-16 17:44:34 +01:00
let r4_1_name = res4_value [ 1 ] [ " name " ] . as_str ( ) . unwrap ( ) ;
let r4_1_uid = res4_value [ 1 ] [ " uid " ] . as_str ( ) . unwrap ( ) ;
let r4_1_created_at = res4_value [ 1 ] [ " createdAt " ] . as_str ( ) . unwrap ( ) ;
let r4_1_updated_at = res4_value [ 1 ] [ " updatedAt " ] . as_str ( ) . unwrap ( ) ;
if r4_0_name = = r1_name {
assert_eq! ( r4_0_name , r1_name ) ;
assert_eq! ( r4_0_uid . len ( ) , r1_uid . len ( ) ) ;
assert_eq! ( r4_0_created_at . len ( ) , r1_created_at . len ( ) ) ;
assert_eq! ( r4_0_updated_at . len ( ) , r1_updated_at . len ( ) ) ;
} else {
assert_eq! ( r4_0_name , r3_name ) ;
assert_eq! ( r4_0_uid . len ( ) , r3_uid . len ( ) ) ;
assert_eq! ( r4_0_created_at . len ( ) , r3_created_at . len ( ) ) ;
assert_eq! ( r4_0_updated_at . len ( ) , r3_updated_at . len ( ) ) ;
}
if r4_1_name = = r1_name {
assert_eq! ( r4_1_name , r1_name ) ;
assert_eq! ( r4_1_uid . len ( ) , r1_uid . len ( ) ) ;
assert_eq! ( r4_1_created_at . len ( ) , r1_created_at . len ( ) ) ;
assert_eq! ( r4_1_updated_at . len ( ) , r1_updated_at . len ( ) ) ;
} else {
assert_eq! ( r4_1_name , r3_name ) ;
assert_eq! ( r4_1_uid . len ( ) , r3_uid . len ( ) ) ;
assert_eq! ( r4_1_created_at . len ( ) , r3_created_at . len ( ) ) ;
assert_eq! ( r4_1_updated_at . len ( ) , r3_updated_at . len ( ) ) ;
}
}
2020-04-16 11:09:47 +02:00
#[ actix_rt::test ]
async fn create_index_failed ( ) {
2020-03-04 14:18:07 +01:00
let mut server = common ::Server ::with_uid ( " movies " ) ;
2020-01-16 17:44:34 +01:00
// 2 - Push index creation with empty json body
2020-03-04 14:18:07 +01:00
let body = json! ( { } ) ;
2020-01-16 17:44:34 +01:00
2020-04-16 11:09:47 +02:00
let ( res_value , status_code ) = server . create_index ( body ) . await ;
2020-01-16 17:44:34 +01:00
2020-03-05 18:29:10 +01:00
assert_eq! ( status_code , 400 ) ;
2020-01-16 17:44:34 +01:00
let message = res_value [ " message " ] . as_str ( ) . unwrap ( ) ;
2020-05-22 18:04:23 +02:00
assert_eq! ( res_value . as_object ( ) . unwrap ( ) . len ( ) , 4 ) ;
2020-01-16 17:44:34 +01:00
assert_eq! ( message , " Index creation must have an uid " ) ;
// 3 - Create a index with extra data
let body = json! ( {
" name " : " movies " ,
" active " : true
2020-03-04 14:18:07 +01:00
} ) ;
2020-01-16 17:44:34 +01:00
2020-04-16 11:09:47 +02:00
let ( _res_value , status_code ) = server . create_index ( body ) . await ;
2020-01-16 17:44:34 +01:00
2020-03-05 18:29:10 +01:00
assert_eq! ( status_code , 400 ) ;
2020-01-16 17:44:34 +01:00
// 3 - Create a index with wrong data type
let body = json! ( {
" name " : " movies " ,
" uid " : 0
2020-03-04 14:18:07 +01:00
} ) ;
2020-04-16 11:09:47 +02:00
let ( _res_value , status_code ) = server . create_index ( body ) . await ;
2020-01-16 17:44:34 +01:00
2020-03-05 18:29:10 +01:00
assert_eq! ( status_code , 400 ) ;
2020-01-16 17:44:34 +01:00
}
2020-03-04 15:58:36 +01:00
2020-03-05 11:44:30 +01:00
// Resolve issue https://github.com/meilisearch/MeiliSearch/issues/492
2020-04-16 11:09:47 +02:00
#[ actix_rt::test ]
async fn create_index_with_primary_key_and_index ( ) {
2020-03-04 15:58:36 +01:00
let mut server = common ::Server ::with_uid ( " movies " ) ;
2020-03-05 18:29:10 +01:00
// 1 - Create the index
2020-03-04 15:58:36 +01:00
let body = json! ( {
" uid " : " movies " ,
2020-03-09 18:40:49 +01:00
" primaryKey " : " id " ,
2020-03-04 15:58:36 +01:00
} ) ;
2020-04-16 11:09:47 +02:00
let ( _response , status_code ) = server . create_index ( body ) . await ;
2020-03-04 15:58:36 +01:00
assert_eq! ( status_code , 201 ) ;
2020-03-05 18:29:10 +01:00
// 2 - Add content
2020-03-04 15:58:36 +01:00
let body = json! ( [ {
" id " : 123 ,
" text " : " The mask "
} ] ) ;
2020-04-16 11:09:47 +02:00
server . add_or_replace_multiple_documents ( body . clone ( ) ) . await ;
2020-03-04 15:58:36 +01:00
2020-03-05 18:29:10 +01:00
// 3 - Retreive document
2020-04-16 11:09:47 +02:00
let ( response , _status_code ) = server . get_document ( 123 ) . await ;
2020-03-04 15:58:36 +01:00
let expect = json! ( {
" id " : 123 ,
" text " : " The mask "
} ) ;
assert_json_eq! ( response , expect , ordered : false ) ;
}
2020-03-05 11:44:30 +01:00
// Resolve issue https://github.com/meilisearch/MeiliSearch/issues/497
2020-03-05 18:29:10 +01:00
// Test when the given index uid is not valid
// Should have a 400 status code
// Should have the right error message
2020-04-16 11:09:47 +02:00
#[ actix_rt::test ]
async fn create_index_with_invalid_uid ( ) {
2020-03-05 11:44:30 +01:00
let mut server = common ::Server ::with_uid ( " " ) ;
2020-03-05 18:29:10 +01:00
// 1 - Create the index with invalid uid
2020-03-05 11:44:30 +01:00
let body = json! ( {
" uid " : " the movies "
} ) ;
2020-04-16 11:09:47 +02:00
let ( response , status_code ) = server . create_index ( body ) . await ;
2020-03-05 11:44:30 +01:00
2020-03-05 18:29:10 +01:00
assert_eq! ( status_code , 400 ) ;
2020-03-05 11:44:30 +01:00
let message = response [ " message " ] . as_str ( ) . unwrap ( ) ;
2020-05-22 18:04:23 +02:00
assert_eq! ( response . as_object ( ) . unwrap ( ) . len ( ) , 4 ) ;
2020-03-05 11:44:30 +01:00
assert_eq! ( message , " Index must have a valid uid; Index uid can be of type integer or string only composed of alphanumeric characters, hyphens (-) and underscores (_). " ) ;
2020-03-05 18:29:10 +01:00
// 2 - Create the index with invalid uid
2020-03-05 11:44:30 +01:00
let body = json! ( {
" uid " : " %$# "
} ) ;
2020-04-16 11:09:47 +02:00
let ( response , status_code ) = server . create_index ( body ) . await ;
2020-03-05 11:44:30 +01:00
2020-03-05 18:29:10 +01:00
assert_eq! ( status_code , 400 ) ;
2020-03-05 11:44:30 +01:00
let message = response [ " message " ] . as_str ( ) . unwrap ( ) ;
2020-05-22 18:04:23 +02:00
assert_eq! ( response . as_object ( ) . unwrap ( ) . len ( ) , 4 ) ;
2020-03-05 11:44:30 +01:00
assert_eq! ( message , " Index must have a valid uid; Index uid can be of type integer or string only composed of alphanumeric characters, hyphens (-) and underscores (_). " ) ;
2020-03-05 18:29:10 +01:00
// 3 - Create the index with invalid uid
2020-03-05 11:44:30 +01:00
let body = json! ( {
" uid " : " the~movies "
} ) ;
2020-04-16 11:09:47 +02:00
let ( response , status_code ) = server . create_index ( body ) . await ;
2020-03-05 11:44:30 +01:00
2020-03-05 18:29:10 +01:00
assert_eq! ( status_code , 400 ) ;
2020-03-05 11:44:30 +01:00
let message = response [ " message " ] . as_str ( ) . unwrap ( ) ;
2020-05-22 18:04:23 +02:00
assert_eq! ( response . as_object ( ) . unwrap ( ) . len ( ) , 4 ) ;
2020-03-05 11:44:30 +01:00
assert_eq! ( message , " Index must have a valid uid; Index uid can be of type integer or string only composed of alphanumeric characters, hyphens (-) and underscores (_). " ) ;
2020-03-05 18:29:10 +01:00
// 4 - Create the index with invalid uid
2020-03-05 11:44:30 +01:00
let body = json! ( {
" uid " : " 🎉 "
} ) ;
2020-04-16 11:09:47 +02:00
let ( response , status_code ) = server . create_index ( body ) . await ;
2020-03-05 11:44:30 +01:00
2020-03-05 18:29:10 +01:00
assert_eq! ( status_code , 400 ) ;
2020-03-05 11:44:30 +01:00
let message = response [ " message " ] . as_str ( ) . unwrap ( ) ;
2020-05-22 18:04:23 +02:00
assert_eq! ( response . as_object ( ) . unwrap ( ) . len ( ) , 4 ) ;
2020-03-05 11:44:30 +01:00
assert_eq! ( message , " Index must have a valid uid; Index uid can be of type integer or string only composed of alphanumeric characters, hyphens (-) and underscores (_). " ) ;
}
2020-03-05 18:29:10 +01:00
2020-03-09 18:40:49 +01:00
// Test that it's possible to add primary_key if it's not already set on index creation
2020-04-16 11:09:47 +02:00
#[ actix_rt::test ]
async fn create_index_and_add_indentifier_after ( ) {
2020-03-05 18:29:10 +01:00
let mut server = common ::Server ::with_uid ( " movies " ) ;
2020-03-09 18:40:49 +01:00
// 1 - Create the index with no primary_key
2020-03-05 18:29:10 +01:00
let body = json! ( {
" uid " : " movies " ,
} ) ;
2020-04-16 11:09:47 +02:00
let ( response , status_code ) = server . create_index ( body ) . await ;
2020-03-05 18:29:10 +01:00
assert_eq! ( status_code , 201 ) ;
2020-03-09 18:40:49 +01:00
assert_eq! ( response [ " primaryKey " ] , json! ( null ) ) ;
2020-03-05 18:29:10 +01:00
2020-03-09 18:40:49 +01:00
// 2 - Update the index and add an primary_key.
2020-03-05 18:29:10 +01:00
let body = json! ( {
2020-03-09 18:40:49 +01:00
" primaryKey " : " id " ,
2020-03-05 18:29:10 +01:00
} ) ;
2020-04-16 11:09:47 +02:00
let ( response , status_code ) = server . update_index ( body ) . await ;
2020-03-05 18:29:10 +01:00
assert_eq! ( status_code , 200 ) ;
eprintln! ( " response: {:#?} " , response ) ;
2020-03-09 18:40:49 +01:00
assert_eq! ( response [ " primaryKey " ] . as_str ( ) . unwrap ( ) , " id " ) ;
2020-03-05 18:29:10 +01:00
2020-03-09 18:40:49 +01:00
// 3 - Get index to verify if the primary_key is good
2020-03-05 18:29:10 +01:00
2020-04-16 11:09:47 +02:00
let ( response , status_code ) = server . get_index ( ) . await ;
2020-03-05 18:29:10 +01:00
assert_eq! ( status_code , 200 ) ;
2020-03-09 18:40:49 +01:00
assert_eq! ( response [ " primaryKey " ] . as_str ( ) . unwrap ( ) , " id " ) ;
2020-03-05 18:29:10 +01:00
}
2020-03-09 18:40:49 +01:00
// Test that it's impossible to change the primary_key
2020-04-16 11:09:47 +02:00
#[ actix_rt::test ]
async fn create_index_and_update_indentifier_after ( ) {
2020-03-05 18:29:10 +01:00
let mut server = common ::Server ::with_uid ( " movies " ) ;
2020-03-09 18:40:49 +01:00
// 1 - Create the index with no primary_key
2020-03-05 18:29:10 +01:00
let body = json! ( {
" uid " : " movies " ,
2020-03-09 18:40:49 +01:00
" primaryKey " : " id " ,
2020-03-05 18:29:10 +01:00
} ) ;
2020-04-16 11:09:47 +02:00
let ( response , status_code ) = server . create_index ( body ) . await ;
2020-03-05 18:29:10 +01:00
assert_eq! ( status_code , 201 ) ;
2020-03-09 18:40:49 +01:00
assert_eq! ( response [ " primaryKey " ] . as_str ( ) . unwrap ( ) , " id " ) ;
2020-03-05 18:29:10 +01:00
2020-03-09 18:40:49 +01:00
// 2 - Update the index and add an primary_key.
2020-03-05 18:29:10 +01:00
let body = json! ( {
2020-03-09 18:40:49 +01:00
" primaryKey " : " skuid " ,
2020-03-05 18:29:10 +01:00
} ) ;
2020-04-16 11:09:47 +02:00
let ( _response , status_code ) = server . update_index ( body ) . await ;
2020-03-05 18:29:10 +01:00
assert_eq! ( status_code , 400 ) ;
2020-03-09 18:40:49 +01:00
// 3 - Get index to verify if the primary_key still the first one
2020-03-05 18:29:10 +01:00
2020-04-16 11:09:47 +02:00
let ( response , status_code ) = server . get_index ( ) . await ;
2020-03-05 18:29:10 +01:00
assert_eq! ( status_code , 200 ) ;
2020-03-09 18:40:49 +01:00
assert_eq! ( response [ " primaryKey " ] . as_str ( ) . unwrap ( ) , " id " ) ;
2020-03-05 18:29:10 +01:00
}
// Test that schema inference work well
2020-04-16 11:09:47 +02:00
#[ actix_rt::test ]
async fn create_index_without_primary_key_and_add_document ( ) {
2020-03-05 18:29:10 +01:00
let mut server = common ::Server ::with_uid ( " movies " ) ;
2020-03-09 18:40:49 +01:00
// 1 - Create the index with no primary_key
2020-03-05 18:29:10 +01:00
let body = json! ( {
" uid " : " movies " ,
} ) ;
2020-04-16 11:09:47 +02:00
let ( response , status_code ) = server . create_index ( body ) . await ;
2020-03-05 18:29:10 +01:00
assert_eq! ( status_code , 201 ) ;
2020-03-09 18:40:49 +01:00
assert_eq! ( response [ " primaryKey " ] , json! ( null ) ) ;
2020-03-05 18:29:10 +01:00
// 2 - Add a document
let body = json! ( [ {
" id " : 123 ,
" title " : " I'm a legend " ,
} ] ) ;
2020-04-16 11:09:47 +02:00
server . add_or_update_multiple_documents ( body ) . await ;
2020-03-05 18:29:10 +01:00
2020-03-09 18:40:49 +01:00
// 3 - Get index to verify if the primary_key is good
2020-03-05 18:29:10 +01:00
2020-04-16 11:09:47 +02:00
let ( response , status_code ) = server . get_index ( ) . await ;
2020-03-05 18:29:10 +01:00
assert_eq! ( status_code , 200 ) ;
2020-03-09 18:40:49 +01:00
assert_eq! ( response [ " primaryKey " ] . as_str ( ) . unwrap ( ) , " id " ) ;
2020-03-05 18:29:10 +01:00
}
2020-03-09 18:40:49 +01:00
// Test search with no primary_key
2020-04-16 11:09:47 +02:00
#[ actix_rt::test ]
async fn create_index_without_primary_key_and_search ( ) {
2020-03-05 18:29:10 +01:00
let mut server = common ::Server ::with_uid ( " movies " ) ;
2020-03-09 18:40:49 +01:00
// 1 - Create the index with no primary_key
2020-03-05 18:29:10 +01:00
let body = json! ( {
" uid " : " movies " ,
} ) ;
2020-04-16 11:09:47 +02:00
let ( response , status_code ) = server . create_index ( body ) . await ;
2020-03-05 18:29:10 +01:00
assert_eq! ( status_code , 201 ) ;
2020-03-09 18:40:49 +01:00
assert_eq! ( response [ " primaryKey " ] , json! ( null ) ) ;
2020-03-05 18:29:10 +01:00
// 2 - Search
let query = " q=captain&limit=3 " ;
2020-06-01 14:54:12 +02:00
let ( response , status_code ) = server . search_get ( & query ) . await ;
2020-03-05 18:29:10 +01:00
assert_eq! ( status_code , 200 ) ;
assert_eq! ( response [ " hits " ] . as_array ( ) . unwrap ( ) . len ( ) , 0 ) ;
}
2020-03-11 12:27:42 +01:00
// Test the error message when we push an document update and impossibility to find primary key
// Test issue https://github.com/meilisearch/MeiliSearch/issues/517
2020-04-16 11:09:47 +02:00
#[ actix_rt::test ]
async fn check_add_documents_without_primary_key ( ) {
2020-03-11 12:27:42 +01:00
let mut server = common ::Server ::with_uid ( " movies " ) ;
// 1 - Create the index with no primary_key
let body = json! ( {
" uid " : " movies " ,
} ) ;
2020-04-16 11:09:47 +02:00
let ( response , status_code ) = server . create_index ( body ) . await ;
2020-03-11 12:27:42 +01:00
assert_eq! ( status_code , 201 ) ;
assert_eq! ( response [ " primaryKey " ] , json! ( null ) ) ;
// 2- Add document
let body = json! ( [ {
" title " : " Test " ,
" comment " : " comment test "
} ] ) ;
2020-04-16 11:09:47 +02:00
let ( response , status_code ) = server . add_or_replace_multiple_documents_sync ( body ) . await ;
2020-03-11 12:27:42 +01:00
2020-05-22 18:04:23 +02:00
let message = response [ " message " ] . as_str ( ) . unwrap ( ) ;
assert_eq! ( response . as_object ( ) . unwrap ( ) . len ( ) , 4 ) ;
assert_eq! ( message , " Could not infer a primary key " ) ;
2020-03-11 12:27:42 +01:00
assert_eq! ( status_code , 400 ) ;
}
2020-04-04 19:48:43 +02:00
2020-04-16 11:09:47 +02:00
#[ actix_rt::test ]
async fn check_first_update_should_bring_up_processed_status_after_first_docs_addition ( ) {
2020-04-04 19:48:43 +02:00
let mut server = common ::Server ::with_uid ( " movies " ) ;
let body = json! ( {
" uid " : " movies " ,
} ) ;
// 1. Create Index
2020-04-16 11:09:47 +02:00
let ( response , status_code ) = server . create_index ( body ) . await ;
2020-04-04 19:48:43 +02:00
assert_eq! ( status_code , 201 ) ;
assert_eq! ( response [ " primaryKey " ] , json! ( null ) ) ;
let dataset = include_bytes! ( " assets/movies.json " ) ;
let body : Value = serde_json ::from_slice ( dataset ) . unwrap ( ) ;
// 2. Index the documents from movies.json, present inside of assets directory
2020-04-16 11:09:47 +02:00
server . add_or_replace_multiple_documents ( body ) . await ;
2020-04-10 19:05:05 +02:00
2020-04-04 19:48:43 +02:00
// 3. Fetch the status of the indexing done above.
2020-04-16 11:09:47 +02:00
let ( response , status_code ) = server . get_all_updates_status ( ) . await ;
2020-04-10 19:05:05 +02:00
2020-04-04 19:48:43 +02:00
// 4. Verify the fetch is successful and indexing status is 'processed'
assert_eq! ( status_code , 200 ) ;
2020-04-10 19:05:05 +02:00
assert_eq! ( response [ 0 ] [ " status " ] , " processed " ) ;
2020-04-04 19:48:43 +02:00
}