More accurate teste for web client serving

This commit is contained in:
Antoine Gersant 2020-12-06 02:48:42 -08:00
parent a3f7a306e5
commit 8524c7d5fe
3 changed files with 11 additions and 3 deletions

View file

@ -70,7 +70,7 @@ impl TestService for RocketTestService {
let context = service::ContextBuilder::new()
.database_file_path(db_path)
.web_dir_path(Path::new("web").into())
.web_dir_path(Path::new("test-data/web").into())
.swagger_dir_path(["docs", "swagger"].iter().collect())
.cache_dir_path(["test-output", test_name].iter().collect())
.build()

View file

@ -1,9 +1,12 @@
use http::StatusCode;
use crate::service::test::{ServiceType, TestService};
use crate::test_name;
#[test]
fn test_web_can_get_index() {
fn test_serves_web_client() {
let mut service = ServiceType::new(&test_name!());
let request = service.request_builder().web_index();
let _response = service.fetch_bytes(&request);
let response = service.fetch_bytes(&request);
assert_eq!(response.status(), StatusCode::OK);
}

5
test-data/web/index.html Normal file
View file

@ -0,0 +1,5 @@
<html>
<p>Example web client</p>
</html>