Add tests for mini-dashboard status and assets

This commit is contained in:
CuriousCorrelation 2021-10-27 17:57:25 +05:30
parent 0a9d6e8210
commit 6641e7aa50
2 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,24 @@
use crate::common::Server;
#[actix_rt::test]
async fn dashboard_assets_load() {
let server = Server::new().await;
mod generated {
include!(concat!(env!("OUT_DIR"), "/generated.rs"));
}
let generated = generated::generate();
for (path, _) in generated.into_iter() {
let path = if path == "index.html" {
// "index.html" redirects to "/"
"/".to_owned()
} else {
"/".to_owned() + path
};
let (_, status_code) = server.service.get(&path).await;
assert_eq!(status_code, 200);
}
}

View File

@ -1,4 +1,5 @@
mod common;
mod dashboard;
mod documents;
mod index;
mod search;