refactor it tests
This commit is contained in:
parent
62e4f27283
commit
4d1118eb36
@ -1,47 +1,3 @@
|
|||||||
mod common;
|
mod common;
|
||||||
|
mod misc;
|
||||||
#[cfg(test)]
|
mod users;
|
||||||
mod tests {
|
|
||||||
|
|
||||||
use super::*;
|
|
||||||
use actix_demo::models::ErrorModel;
|
|
||||||
use actix_web::dev::Service as _;
|
|
||||||
use actix_web::http::StatusCode;
|
|
||||||
use actix_web::test;
|
|
||||||
|
|
||||||
#[actix_rt::test]
|
|
||||||
async fn get_users_api_should_return_error_message_if_no_users_exist() {
|
|
||||||
let req = test::TestRequest::get().uri("/api/get/users").to_request();
|
|
||||||
let resp = common::test_app().await.call(req).await.unwrap();
|
|
||||||
assert_eq!(resp.status(), StatusCode::ACCEPTED);
|
|
||||||
let body: ErrorModel = test::read_body_json(resp).await;
|
|
||||||
assert_eq!(
|
|
||||||
body,
|
|
||||||
ErrorModel {
|
|
||||||
success: false,
|
|
||||||
reason: "Entity does not exist - No users available".to_owned()
|
|
||||||
}
|
|
||||||
);
|
|
||||||
log::debug!("{:?}", body);
|
|
||||||
}
|
|
||||||
|
|
||||||
#[actix_rt::test]
|
|
||||||
async fn get_user_api_should_return_error_message_if_user_with_id_does_not_exist(
|
|
||||||
) {
|
|
||||||
let req = test::TestRequest::get()
|
|
||||||
.uri("/api/get/users/1")
|
|
||||||
.to_request();
|
|
||||||
let resp = common::test_app().await.call(req).await.unwrap();
|
|
||||||
assert_eq!(resp.status(), StatusCode::ACCEPTED);
|
|
||||||
let body: ErrorModel = test::read_body_json(resp).await;
|
|
||||||
assert_eq!(
|
|
||||||
body,
|
|
||||||
ErrorModel {
|
|
||||||
success: false,
|
|
||||||
reason: "Entity does not exist - No user found with uid: 1"
|
|
||||||
.to_owned()
|
|
||||||
}
|
|
||||||
);
|
|
||||||
log::debug!("{:?}", body);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
21
tests/integration/misc.rs
Normal file
21
tests/integration/misc.rs
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
use crate::common;
|
||||||
|
use actix_demo::get_build_info;
|
||||||
|
|
||||||
|
#[cfg(test)]
|
||||||
|
mod tests {
|
||||||
|
|
||||||
|
use super::*;
|
||||||
|
use actix_web::dev::Service as _;
|
||||||
|
use actix_web::http::StatusCode;
|
||||||
|
use actix_web::test;
|
||||||
|
|
||||||
|
#[actix_rt::test]
|
||||||
|
async fn get_build_info_should_succeed() {
|
||||||
|
let req = test::TestRequest::get().uri("/api/build-info").to_request();
|
||||||
|
let resp = common::test_app().await.call(req).await.unwrap();
|
||||||
|
assert_eq!(resp.status(), StatusCode::OK);
|
||||||
|
let body: build_info::BuildInfo = test::read_body_json(resp).await;
|
||||||
|
assert_eq!(body, *get_build_info());
|
||||||
|
log::debug!("{:?}", body);
|
||||||
|
}
|
||||||
|
}
|
44
tests/integration/users.rs
Normal file
44
tests/integration/users.rs
Normal file
@ -0,0 +1,44 @@
|
|||||||
|
use crate::common;
|
||||||
|
#[cfg(test)]
|
||||||
|
mod tests {
|
||||||
|
|
||||||
|
use super::*;
|
||||||
|
use actix_demo::models::ErrorModel;
|
||||||
|
use actix_web::dev::Service as _;
|
||||||
|
use actix_web::http::StatusCode;
|
||||||
|
use actix_web::test;
|
||||||
|
|
||||||
|
#[actix_rt::test]
|
||||||
|
async fn get_users_api_should_return_error_message_if_no_users_exist() {
|
||||||
|
let req = test::TestRequest::get().uri("/api/users").to_request();
|
||||||
|
let resp = common::test_app().await.call(req).await.unwrap();
|
||||||
|
assert_eq!(resp.status(), StatusCode::ACCEPTED);
|
||||||
|
let body: ErrorModel = test::read_body_json(resp).await;
|
||||||
|
assert_eq!(
|
||||||
|
body,
|
||||||
|
ErrorModel {
|
||||||
|
success: false,
|
||||||
|
reason: "Entity does not exist - No users available".to_owned()
|
||||||
|
}
|
||||||
|
);
|
||||||
|
log::debug!("{:?}", body);
|
||||||
|
}
|
||||||
|
|
||||||
|
#[actix_rt::test]
|
||||||
|
async fn get_user_api_should_return_error_message_if_user_with_id_does_not_exist(
|
||||||
|
) {
|
||||||
|
let req = test::TestRequest::get().uri("/api/users/1").to_request();
|
||||||
|
let resp = common::test_app().await.call(req).await.unwrap();
|
||||||
|
assert_eq!(resp.status(), StatusCode::ACCEPTED);
|
||||||
|
let body: ErrorModel = test::read_body_json(resp).await;
|
||||||
|
assert_eq!(
|
||||||
|
body,
|
||||||
|
ErrorModel {
|
||||||
|
success: false,
|
||||||
|
reason: "Entity does not exist - No user found with uid: 1"
|
||||||
|
.to_owned()
|
||||||
|
}
|
||||||
|
);
|
||||||
|
log::debug!("{:?}", body);
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user