1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
#[cfg(feature = "oauth")]
pub mod auth;
pub(super) const HEALTH: &str = "HEALTH";
#[utoipa::path(
method(get),
path = "/",
tag = HEALTH,
responses(
(status = OK, description = "Checks if the server is running", body = str, content_type = "text/plain")
)
)]
pub async fn health_check() -> impl axum::response::IntoResponse {
let name = env!("CARGO_PKG_NAME");
let version = env!("CARGO_PKG_VERSION");
format!("{name} v{version} is live")
}
#[cfg(test)]
mod tests {
use crate::{
config::Config,
server::{self, bootstrap::TestDriver, state::AppState},
};
use axum::{
body::Body,
http::{Request, StatusCode},
};
use tower::ServiceExt;
#[tokio::test]
async fn health_check() {
let config = Config::default();
let driver = TestDriver::default();
let state = AppState::new(&config, driver).await.unwrap();
let app = server::router(&config, state).await.unwrap();
let response = app
.oneshot(Request::builder().uri("/").body(Body::empty()).unwrap())
.await
.unwrap();
assert_eq!(response.status(), StatusCode::OK);
}
}
|