()
| 1426 | } |
| 1427 | |
| 1428 | fn sandbox_principal() -> Principal { |
| 1429 | Principal::Sandbox(SandboxPrincipal { |
| 1430 | sandbox_id: "sandbox-a".to_string(), |
| 1431 | source: SandboxIdentitySource::BootstrapJwt { |
| 1432 | issuer: "openshell-gateway:test".to_string(), |
| 1433 | }, |
| 1434 | trust_domain: Some("openshell".to_string()), |
| 1435 | }) |
| 1436 | } |
| 1437 | |
| 1438 | #[tokio::test] |
| 1439 | async fn mtls_peer_identity_fills_missing_principal_when_enabled() { |
no test coverage detected