test_app.rs 1.17 KB
Newer Older
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
use axum::Router;
use reqwest::Client;
use sglang_router_rs::{
    config::RouterConfig,
    routers::RouterTrait,
    server::{build_app, AppState},
};
use std::sync::Arc;

/// Create a test Axum application using the actual server's build_app function
pub fn create_test_app(
    router: Arc<dyn RouterTrait>,
    client: Client,
    router_config: &RouterConfig,
) -> Router {
    // Create AppState with the test router
    let app_state = Arc::new(AppState {
        router,
        client,
        _concurrency_limiter: Arc::new(tokio::sync::Semaphore::new(
            router_config.max_concurrent_requests,
        )),
    });

    // Configure request ID headers (use defaults if not specified)
    let request_id_headers = router_config.request_id_headers.clone().unwrap_or_else(|| {
        vec![
            "x-request-id".to_string(),
            "x-correlation-id".to_string(),
            "x-trace-id".to_string(),
            "request-id".to_string(),
        ]
    });

    // Use the actual server's build_app function
    build_app(
        app_state,
        router_config.max_payload_size,
        request_id_headers,
        router_config.cors_allowed_origins.clone(),
    )
}