Files
Aether/crates/aether-testkit/src/server.rs
fawney19 b5a0070023 feat: 引入 aether-runtime/cache/data/http/testkit 基础 crate,完善并发门控与审计系统
新增 crate:
- aether-runtime: 服务运行时基础设施(并发门控、分布式并发、指标、队列、优雅关闭、tracing)
- aether-cache: 通用 TTL 缓存与命名空间抽象
- aether-data: 数据访问层(PostgreSQL/Redis 后端、repository 模式)
- aether-http: HTTP 客户端封装(重试、配置)
- aether-testkit: 集成测试工具集(gateway/executor/hub/proxy fixture、等待、负载测试)

gateway 扩展:
- 引入 audit 模块(shadow 执行审计、决策链路追踪、请求审计 bundle)
- 引入 cache 模块(AuthContext 缓存、direct-plan bypass 缓存)
- 引入 data 模块(auth/candidates/config/usage/video_tasks 数据访问)
- 集成 ConcurrencyGate/DistributedConcurrencyGate 请求门控
- 新增本地 auth 拒绝、过载响应构建器
- 补充 control/auth_cache/video/concurrency 集成测试

aether-proxy 扩展:
- AppState 集成 stream_gate / distributed_stream_gate 并发门控
- 新增 ProxyAdmissionError 及准入拒绝流程
- stream_handler 补充门控饱和/不可用场景测试
- 配置与注册客户端逻辑完善

aether-hub 扩展:
- main.rs 引入运行时初始化、指标端点、健康检查
- local_relay 重构为 lib.rs 暴露公共接口
2026-03-24 15:12:56 +08:00

65 lines
1.6 KiB
Rust

use std::fmt;
use std::net::SocketAddr;
use axum::Router;
pub struct SpawnedServer {
base_url: String,
port: u16,
handle: tokio::task::JoinHandle<()>,
}
impl SpawnedServer {
pub async fn start(app: Router) -> Result<Self, std::io::Error> {
let port = reserve_local_port()?;
Self::start_on_port(port, app).await
}
pub async fn start_on_port(port: u16, app: Router) -> Result<Self, std::io::Error> {
let listener = tokio::net::TcpListener::bind(("127.0.0.1", port)).await?;
let addr = listener.local_addr()?;
let handle = tokio::spawn(async move {
axum::serve(
listener,
app.into_make_service_with_connect_info::<SocketAddr>(),
)
.await
.expect("spawned server should run");
});
Ok(Self {
base_url: format!("http://{addr}"),
port: addr.port(),
handle,
})
}
pub fn base_url(&self) -> &str {
&self.base_url
}
pub fn port(&self) -> u16 {
self.port
}
}
impl fmt::Debug for SpawnedServer {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_struct("SpawnedServer")
.field("base_url", &self.base_url)
.finish_non_exhaustive()
}
}
impl Drop for SpawnedServer {
fn drop(&mut self) {
self.handle.abort();
}
}
pub fn reserve_local_port() -> Result<u16, std::io::Error> {
let listener = std::net::TcpListener::bind("127.0.0.1:0")?;
let port = listener.local_addr()?.port();
drop(listener);
Ok(port)
}