Files
hms/crates/erp-server/tests/integration/health_doctor_tests.rs
iven 6d5a711d2c
Some checks failed
CI / rust-check (push) Has been cancelled
CI / rust-test (push) Has been cancelled
CI / frontend-build (push) Has been cancelled
CI / security-audit (push) Has been cancelled
fix: 修复测试发现的 7 个问题 + 全 workspace clippy 清零
功能修复:
1. 患者创建空名称验证:后端添加 name.trim().is_empty() 检查
2. 仪表盘统计容错:单个查询失败返回零值而非 500
3. FHIR 路由修复:从 /fhir 移到 /api/v1/fhir 保持一致
4. 冻结模块后端中间件:新增 frozen_module_middleware 拦截冻结路径
5. 积分端点权限码:health.health-data.list → health.points.list
6. 角色权限迁移:护士补充 devices.list,运营补充 points.list/manage
7. 测试结果文档:R01-R05 角色测试 + T00/T10 结果归档

Clippy 全 workspace 清零(14→0 errors):
- erp-core: 修复 empty doc line、collapsible if、redundant closure 等 9 处
- erp-health: 修复 too_many_arguments、unused var、unnecessary parens 等 58 处
- erp-ai: 修复 dead_code、unused import 等 11 处
- erp-plugin: 修复 too_many_arguments、wildcard pattern 等 11 处
- erp-server-migration: 修复 enum_variant_names 5 处
- erp-auth/config/workflow/message: 各 1-3 处

工程改进:
- lint-staged 配置迁移到 .lintstagedrc.js(函数式避免文件列表传给 clippy)
- cargo fmt 统一格式化
2026-05-07 23:43:14 +08:00

270 lines
7.7 KiB
Rust

//! erp-health 医生管理集成测试
//!
//! 验证医生 CRUD、列表搜索、租户隔离、乐观锁。
use erp_health::dto::doctor_dto::*;
use erp_health::service::doctor_service;
use super::test_fixture::TestApp;
fn default_create_doctor_req() -> CreateDoctorReq {
CreateDoctorReq {
user_id: None,
name: "张三".to_string(),
department: Some("肾内科".to_string()),
title: Some("主任医师".to_string()),
specialty: Some("血液透析".to_string()),
license_number: None,
bio: None,
}
}
// ---------------------------------------------------------------------------
// 测试 1: 创建医生
// ---------------------------------------------------------------------------
#[tokio::test]
async fn test_doctor_create() {
let app = TestApp::new().await;
let doctor = doctor_service::create_doctor(
app.health_state(),
app.tenant_id(),
Some(app.operator_id()),
default_create_doctor_req(),
)
.await
.expect("创建医生应成功");
assert_eq!(doctor.name, "张三");
assert_eq!(doctor.department, Some("肾内科".to_string()));
assert_eq!(doctor.online_status, "offline");
assert_eq!(doctor.version, 1);
}
// ---------------------------------------------------------------------------
// 测试 2: 查询医生
// ---------------------------------------------------------------------------
#[tokio::test]
async fn test_doctor_get() {
let app = TestApp::new().await;
let doctor = doctor_service::create_doctor(
app.health_state(),
app.tenant_id(),
Some(app.operator_id()),
default_create_doctor_req(),
)
.await
.unwrap();
let fetched = doctor_service::get_doctor(app.health_state(), app.tenant_id(), doctor.id)
.await
.expect("查询应成功");
assert_eq!(fetched.id, doctor.id);
assert_eq!(fetched.name, "张三");
}
// ---------------------------------------------------------------------------
// 测试 3: 更新医生
// ---------------------------------------------------------------------------
#[tokio::test]
async fn test_doctor_update() {
let app = TestApp::new().await;
let doctor = doctor_service::create_doctor(
app.health_state(),
app.tenant_id(),
Some(app.operator_id()),
default_create_doctor_req(),
)
.await
.unwrap();
let updated = doctor_service::update_doctor(
app.health_state(),
app.tenant_id(),
doctor.id,
Some(app.operator_id()),
UpdateDoctorReq {
name: Some("李四".to_string()),
department: None,
title: Some("副主任医师".to_string()),
specialty: None,
license_number: None,
bio: Some("擅长透析治疗".to_string()),
online_status: Some("online".to_string()),
},
doctor.version,
)
.await
.expect("更新应成功");
assert_eq!(updated.name, "李四");
assert_eq!(updated.title, Some("副主任医师".to_string()));
assert_eq!(updated.online_status, "online");
assert_eq!(updated.version, 2);
}
// ---------------------------------------------------------------------------
// 测试 4: 医生列表 + 搜索
// ---------------------------------------------------------------------------
#[tokio::test]
async fn test_doctor_list_and_search() {
let app = TestApp::new().await;
doctor_service::create_doctor(
app.health_state(),
app.tenant_id(),
Some(app.operator_id()),
CreateDoctorReq {
name: "王医生".to_string(),
department: Some("心内科".to_string()),
..default_create_doctor_req()
},
)
.await
.unwrap();
doctor_service::create_doctor(
app.health_state(),
app.tenant_id(),
Some(app.operator_id()),
CreateDoctorReq {
name: "赵医生".to_string(),
department: Some("肾内科".to_string()),
..default_create_doctor_req()
},
)
.await
.unwrap();
// 全量列表
let all =
doctor_service::list_doctors(app.health_state(), app.tenant_id(), 1, 20, None, None, None)
.await
.unwrap();
assert_eq!(all.total, 2);
// 按科室过滤
let renal = doctor_service::list_doctors(
app.health_state(),
app.tenant_id(),
1,
20,
None,
Some("肾内科".to_string()),
None,
)
.await
.unwrap();
assert_eq!(renal.total, 1);
}
// ---------------------------------------------------------------------------
// 测试 5: 医生软删除
// ---------------------------------------------------------------------------
#[tokio::test]
async fn test_doctor_soft_delete() {
let app = TestApp::new().await;
let doctor = doctor_service::create_doctor(
app.health_state(),
app.tenant_id(),
Some(app.operator_id()),
default_create_doctor_req(),
)
.await
.unwrap();
doctor_service::delete_doctor(
app.health_state(),
app.tenant_id(),
doctor.id,
Some(app.operator_id()),
doctor.version,
)
.await
.expect("删除应成功");
let result = doctor_service::get_doctor(app.health_state(), app.tenant_id(), doctor.id).await;
assert!(result.is_err(), "软删除后查询应失败");
}
// ---------------------------------------------------------------------------
// 测试 6: 租户隔离
// ---------------------------------------------------------------------------
#[tokio::test]
async fn test_doctor_tenant_isolation() {
let app = TestApp::new().await;
let doctor = doctor_service::create_doctor(
app.health_state(),
app.tenant_id(),
Some(app.operator_id()),
default_create_doctor_req(),
)
.await
.unwrap();
let other_tenant = uuid::Uuid::new_v4();
let result = doctor_service::get_doctor(app.health_state(), other_tenant, doctor.id).await;
assert!(result.is_err(), "不同租户不应看到此医生");
let other_list =
doctor_service::list_doctors(app.health_state(), other_tenant, 1, 20, None, None, None)
.await
.unwrap();
assert_eq!(other_list.total, 0);
}
// ---------------------------------------------------------------------------
// 测试 7: 乐观锁冲突
// ---------------------------------------------------------------------------
#[tokio::test]
async fn test_doctor_version_conflict() {
let app = TestApp::new().await;
let doctor = doctor_service::create_doctor(
app.health_state(),
app.tenant_id(),
Some(app.operator_id()),
default_create_doctor_req(),
)
.await
.unwrap();
// 先更新一次
doctor_service::update_doctor(
app.health_state(),
app.tenant_id(),
doctor.id,
Some(app.operator_id()),
UpdateDoctorReq {
name: Some("第一次".to_string()),
department: None,
title: None,
specialty: None,
license_number: None,
bio: None,
online_status: None,
},
doctor.version,
)
.await
.unwrap();
// 用旧 version 再更新应失败
let result = doctor_service::update_doctor(
app.health_state(),
app.tenant_id(),
doctor.id,
Some(app.operator_id()),
UpdateDoctorReq {
name: Some("冲突".to_string()),
department: None,
title: None,
specialty: None,
license_number: None,
bio: None,
online_status: None,
},
doctor.version,
)
.await;
assert!(result.is_err(), "乐观锁冲突应返回错误");
}