mirror of
https://github.com/fawney19/Aether.git
synced 2026-09-03 01:40:21 +08:00
- 新建独立 aether-admin crate 承载 admin 相关共享契约与纯辅助函数 - 拆分 ai_pipeline 下 kiro/private_envelope/conversion/planner 等大文件为子模块目录 - 重组 admin handlers 各业务域(billing/oauth/provider/system/users 等)为目录结构,移除 shared.rs/builders.rs 等反模式 - 移除 ai_pipeline runtime adapters 旧实现(claude/openai/gemini/kiro/vertex/antigravity 等),改由 provider transport 统一承载 - 移除 control_facade/execution_facade/auth_snapshot_facade 等冗余 facade 层 - 拆分 query/billing 与 query/monitoring 模块、state/runtime/payments 与 security 模块 - 扩展架构测试覆盖 admin_billing/admin_model/admin_users 等新模块 - 删除 docs/architecture/refactor-execution-plan.md 已完成的执行计划文档
53 lines
1.9 KiB
Rust
53 lines
1.9 KiB
Rust
use super::*;
|
|
|
|
#[test]
|
|
fn admin_model_global_owner_is_split() {
|
|
let global_mod =
|
|
read_workspace_file("apps/aether-gateway/src/handlers/admin/model/global/mod.rs");
|
|
for pattern in ["mod helpers;", "mod payloads;", "mod providers;"] {
|
|
assert!(
|
|
global_mod.contains(pattern),
|
|
"handlers/admin/model/global/mod.rs should register {pattern}"
|
|
);
|
|
}
|
|
for path in [
|
|
"apps/aether-gateway/src/handlers/admin/model/global/helpers.rs",
|
|
"apps/aether-gateway/src/handlers/admin/model/global/payloads.rs",
|
|
"apps/aether-gateway/src/handlers/admin/model/global/providers.rs",
|
|
] {
|
|
assert!(
|
|
workspace_file_exists(path),
|
|
"{path} should exist after model/global owner split"
|
|
);
|
|
}
|
|
assert!(
|
|
!workspace_file_exists("apps/aether-gateway/src/handlers/admin/model/global.rs"),
|
|
"handlers/admin/model/global.rs should be removed after owner split"
|
|
);
|
|
}
|
|
|
|
#[test]
|
|
fn admin_model_root_exposes_single_route_seam() {
|
|
let model_mod = read_workspace_file("apps/aether-gateway/src/handlers/admin/model/mod.rs");
|
|
assert!(
|
|
model_mod.contains("mod routes;"),
|
|
"handlers/admin/model/mod.rs should register routes.rs as the model route seam"
|
|
);
|
|
assert!(
|
|
model_mod.contains("pub(super) use self::routes::maybe_build_local_admin_model_response;"),
|
|
"handlers/admin/model/mod.rs should expose maybe_build_local_admin_model_response"
|
|
);
|
|
|
|
let model_routes =
|
|
read_workspace_file("apps/aether-gateway/src/handlers/admin/model/routes.rs");
|
|
for pattern in [
|
|
"catalog_routes::maybe_build_local_admin_model_catalog_response(",
|
|
"global_models::maybe_build_local_admin_global_models_response(",
|
|
] {
|
|
assert!(
|
|
model_routes.contains(pattern),
|
|
"handlers/admin/model/routes.rs should dispatch through {pattern}"
|
|
);
|
|
}
|
|
}
|