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
50
51
52
53
54
55
56
57
58
59
60
|
pub mod metrics;
pub mod processor;
use utoipa::OpenApi;
const PACS008_001_12: &str = "pacs.008.001.12";
const PACS002_001_12: &str = "pacs.002.001.12";
#[derive(OpenApi)]
#[openapi(
tags(
(name = PACS008_001_12, description = "Submit a pacs.008.001.12 payload"),
(name = PACS002_001_12, description = "Submit a pacs.002.001.12 payload"),
)
)]
pub struct ApiDoc;
#[cfg(test)]
mod tests {
use axum::{
body::Body,
http::{Request, StatusCode},
};
use sqlx::PgPool;
use tower::ServiceExt;
use warden_stack::cache::RedisManager;
use crate::{
server::{self, test_config},
state::{AppState, Services},
};
#[sqlx::test]
async fn health_check(pool: PgPool) {
let config = test_config();
let cache = RedisManager::new(&config.cache).await.unwrap();
let client = async_nats::connect(&config.nats.hosts[0]).await.unwrap();
let jetstream = async_nats::jetstream::new(client);
let state = AppState::create(
Services {
postgres: pool,
cache,
jetstream,
},
&test_config(),
)
.await
.unwrap();
let app = server::router(state);
let response = app
.oneshot(Request::builder().uri("/").body(Body::empty()).unwrap())
.await
.unwrap();
assert_eq!(response.status(), StatusCode::OK);
}
}
|