fix tests

This commit is contained in:
mpostma 2021-07-05 11:21:02 +02:00
parent 9681ffca52
commit 2f3a439566
8 changed files with 12 additions and 12 deletions

View File

@ -61,7 +61,7 @@ async fn get_no_documents() {
let server = Server::new().await;
let index = server.index("test");
let (_, code) = index.create(None).await;
assert_eq!(code, 200);
assert_eq!(code, 201);
let (response, code) = index
.get_all_documents(GetAllDocumentsOptions::default())

View File

@ -7,7 +7,7 @@ async fn create_index_no_primary_key() {
let index = server.index("test");
let (response, code) = index.create(None).await;
assert_eq!(code, 200);
assert_eq!(code, 201);
assert_eq!(response["uid"], "test");
assert_eq!(response["name"], "test");
assert!(response.get("createdAt").is_some());
@ -23,7 +23,7 @@ async fn create_index_with_primary_key() {
let index = server.index("test");
let (response, code) = index.create(Some("primary")).await;
assert_eq!(code, 200);
assert_eq!(code, 201);
assert_eq!(response["uid"], "test");
assert_eq!(response["name"], "test");
assert!(response.get("createdAt").is_some());
@ -41,7 +41,7 @@ async fn create_existing_index() {
let index = server.index("test");
let (_, code) = index.create(Some("primary")).await;
assert_eq!(code, 200);
assert_eq!(code, 201);
let (_response, code) = index.create(Some("primary")).await;
assert_eq!(code, 400);

View File

@ -8,7 +8,7 @@ async fn create_and_delete_index() {
let index = server.index("test");
let (_response, code) = index.create(None).await;
assert_eq!(code, 200);
assert_eq!(code, 201);
let (_response, code) = index.delete().await;

View File

@ -7,7 +7,7 @@ async fn create_and_get_index() {
let index = server.index("test");
let (_, code) = index.create(None).await;
assert_eq!(code, 200);
assert_eq!(code, 201);
let (response, code) = index.get().await;

View File

@ -8,7 +8,7 @@ async fn stats() {
let index = server.index("test");
let (_, code) = index.create(Some("id")).await;
assert_eq!(code, 200);
assert_eq!(code, 201);
let (response, code) = index.stats().await;

View File

@ -7,7 +7,7 @@ async fn update_primary_key() {
let index = server.index("test");
let (_, code) = index.create(None).await;
assert_eq!(code, 200);
assert_eq!(code, 201);
let (response, code) = index.update(Some("primary")).await;
@ -31,7 +31,7 @@ async fn update_nothing() {
let index = server.index("test");
let (response, code) = index.create(None).await;
assert_eq!(code, 200);
assert_eq!(code, 201);
let (update, code) = index.update(None).await;
@ -47,7 +47,7 @@ async fn update_existing_primary_key() {
let index = server.index("test");
let (_response, code) = index.create(Some("primary")).await;
assert_eq!(code, 200);
assert_eq!(code, 201);
let (_update, code) = index.update(Some("primary2")).await;

View File

@ -206,7 +206,7 @@ macro_rules! test_setting_routes {
let server = Server::new().await;
let index = server.index("test");
let (response, code) = index.create(None).await;
assert_eq!(code, 200, "{}", response);
assert_eq!(code, 201, "{}", response);
let url = format!("/indexes/test/settings/{}",
stringify!($setting)
.chars()

View File

@ -28,7 +28,7 @@ async fn stats() {
let index = server.index("test");
let (_, code) = index.create(Some("id")).await;
assert_eq!(code, 200);
assert_eq!(code, 201);
let (response, code) = server.stats().await;