Files
windmill/backend/windmill-api-integration-tests/tests/health.rs
Ruben Fiszel 8df1d8ec17 test nits
2026-03-27 12:28:54 +00:00

42 lines
1.3 KiB
Rust

use sqlx::{Pool, Postgres};
use windmill_test_utils::*;
fn client() -> reqwest::Client {
reqwest::Client::new()
}
fn authed(builder: reqwest::RequestBuilder) -> reqwest::RequestBuilder {
builder.header("Authorization", "Bearer SECRET_TOKEN")
}
fn assert_2xx(status: u16, body: &str, endpoint: &str) {
assert!(
(200..300).contains(&status),
"{endpoint} returned {status}: {body}",
);
}
#[sqlx::test(migrations = "../migrations", fixtures("base"))]
async fn test_health_endpoints(db: Pool<Postgres>) -> anyhow::Result<()> {
initialize_tracing().await;
let server = ApiServer::start(db.clone()).await?;
let port = server.addr.port();
let base = format!("http://localhost:{port}/api/health");
// GET /health/status → 200 (no auth required)
let resp = client().get(format!("{base}/status")).send().await?;
let status = resp.status().as_u16();
let body = resp.text().await?;
assert_2xx(status, &body, "GET /health/status");
// GET /health/detailed → 200 (authed)
let resp = authed(client().get(format!("{base}/detailed")))
.send()
.await?;
let status = resp.status().as_u16();
let body = resp.text().await?;
assert_2xx(status, &body, "GET /health/detailed");
Ok(())
}