Clinical Sync Batch Engine: first commit

This commit is contained in:
voltsrage
2026-06-23 03:02:30 +08:00
parent 90b8baa2a1
commit c9994b1ba2
60 changed files with 3547 additions and 31 deletions
+3 -2
View File
@@ -90,8 +90,8 @@ public class RbacTests : IAsyncLifetime
audit.GetProperty("data").GetProperty("totalCount").GetInt32().Should().BeGreaterThan(0);
}
[Fact]
public async Task AlertAcknowledge_UsesAuthenticatedUser_NotBodyClinicianId()
[Fact(Skip = "Not yet implemented")]
public Task AlertAcknowledge_UsesAuthenticatedUser_NotBodyClinicianId()
{
_client.ClearAuth();
var nurseId = Guid.Parse("11111111-1111-1111-1111-111111111111");
@@ -102,5 +102,6 @@ public class RbacTests : IAsyncLifetime
// Assert alert.AcknowledgedBy == "Test NURSE" (from TestingAuthHandler display_name)
// Assert clinical_audit_logs row with action ALERT_ACKNOWLEDGED and userId == nurseId
return Task.CompletedTask;
}
}