b86c6bb47f
Resolve all CommentChecker findings across the gateway server, worker, tests, and .NET client (314 -> 0 real issues): add missing <returns>/<summary>/<param> on public and test members, convert Stream/interface overrides to <inheritdoc/>, and remove internal task/issue tracking IDs (SEC-*, IPC-*, WRK-*, GWC-*, TST-*, Client.Dotnet-*) from shipped code documentation while preserving the design rationale prose. Shipped comments should not carry internal bookkeeping, and complete XML docs keep the analyzer/TreatWarningsAsErrors gate and generated API docs clean. The 6 remaining flags are heuristic false positives (MD5, UTC-4, capacity-1, near-1601) left intact so real documentation is not corrupted. Claude-Session: https://claude.ai/code/session_01DMXXvNuPekkkrTEyPNxEkW
178 lines
6.5 KiB
C#
178 lines
6.5 KiB
C#
using System.Security.Claims;
|
|
using Microsoft.AspNetCore.DataProtection;
|
|
using ZB.MOM.WW.MxGateway.Server.Dashboard;
|
|
|
|
namespace ZB.MOM.WW.MxGateway.Tests.Gateway.Dashboard;
|
|
|
|
public sealed class HubTokenServiceTests
|
|
{
|
|
/// <summary>
|
|
/// A token whose data-protected payload has both
|
|
/// <c>Name</c> and <c>NameIdentifier</c> null (the principal that
|
|
/// minted the token had no identity claims) must be rejected by
|
|
/// <see cref="HubTokenService.Validate"/>. The role claims alone are
|
|
/// not enough — without a caller identity, the resulting
|
|
/// <see cref="ClaimsPrincipal"/> would satisfy
|
|
/// <c>IsAuthenticated</c> / <c>IsInRole</c> checks without an
|
|
/// associated user.
|
|
/// </summary>
|
|
[Fact]
|
|
public void Validate_TokenWithNullNameAndNullNameIdentifier_ReturnsNull()
|
|
{
|
|
HubTokenService service = new(new EphemeralDataProtectionProvider());
|
|
|
|
// Issue from a principal with NO Name claim and NO NameIdentifier
|
|
// claim. The Issue method's payload will then carry
|
|
// (Name = null, NameIdentifier = null, Roles = ["Viewer"]).
|
|
ClaimsIdentity identity = new(
|
|
[new Claim(ClaimTypes.Role, DashboardRoles.Viewer)],
|
|
authenticationType: "test");
|
|
ClaimsPrincipal principal = new(identity);
|
|
string token = service.Issue(principal);
|
|
|
|
ClaimsPrincipal? result = service.Validate(token);
|
|
|
|
Assert.Null(result);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Sanity check: a token minted from a principal with a Name claim
|
|
/// validates and returns a principal carrying that identity. Pins
|
|
/// that the null-identity rejection above does not over-reject valid tokens.
|
|
/// </summary>
|
|
[Fact]
|
|
public void Validate_TokenWithName_ReturnsAuthenticatedPrincipal()
|
|
{
|
|
HubTokenService service = new(new EphemeralDataProtectionProvider());
|
|
|
|
ClaimsIdentity identity = new(
|
|
[
|
|
new Claim(ClaimTypes.Name, "alice"),
|
|
new Claim(ClaimTypes.NameIdentifier, "alice-id"),
|
|
new Claim(ClaimTypes.Role, DashboardRoles.Admin),
|
|
],
|
|
authenticationType: "test",
|
|
nameType: ClaimTypes.Name,
|
|
roleType: ClaimTypes.Role);
|
|
ClaimsPrincipal principal = new(identity);
|
|
string token = service.Issue(principal);
|
|
|
|
ClaimsPrincipal? result = service.Validate(token);
|
|
|
|
Assert.NotNull(result);
|
|
Assert.Equal("alice", result.Identity?.Name);
|
|
Assert.True(result.IsInRole(DashboardRoles.Admin));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Sanity check: a token minted with only a NameIdentifier (no Name)
|
|
/// still validates — a non-null caller identity is the contract,
|
|
/// either field is sufficient.
|
|
/// </summary>
|
|
[Fact]
|
|
public void Validate_TokenWithOnlyNameIdentifier_ReturnsPrincipal()
|
|
{
|
|
HubTokenService service = new(new EphemeralDataProtectionProvider());
|
|
|
|
ClaimsIdentity identity = new(
|
|
[
|
|
new Claim(ClaimTypes.NameIdentifier, "alice-id"),
|
|
new Claim(ClaimTypes.Role, DashboardRoles.Viewer),
|
|
],
|
|
authenticationType: "test");
|
|
ClaimsPrincipal principal = new(identity);
|
|
string token = service.Issue(principal);
|
|
|
|
ClaimsPrincipal? result = service.Validate(token);
|
|
|
|
Assert.NotNull(result);
|
|
Assert.True(result.IsInRole(DashboardRoles.Viewer));
|
|
}
|
|
|
|
/// <summary>Verifies that a null token returns null.</summary>
|
|
[Fact]
|
|
public void Validate_NullToken_ReturnsNull()
|
|
{
|
|
HubTokenService service = new(new EphemeralDataProtectionProvider());
|
|
|
|
Assert.Null(service.Validate(null));
|
|
}
|
|
|
|
/// <summary>Verifies that an empty token returns null.</summary>
|
|
[Fact]
|
|
public void Validate_EmptyToken_ReturnsNull()
|
|
{
|
|
HubTokenService service = new(new EphemeralDataProtectionProvider());
|
|
|
|
Assert.Null(service.Validate(string.Empty));
|
|
}
|
|
|
|
/// <summary>Verifies that an invalid token returns null.</summary>
|
|
[Fact]
|
|
public void Validate_GarbageToken_ReturnsNull()
|
|
{
|
|
HubTokenService service = new(new EphemeralDataProtectionProvider());
|
|
|
|
Assert.Null(service.Validate("this-is-not-a-protected-payload"));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Issue/validate round-trip: a freshly minted token (default <see cref="HubTokenService.TokenLifetime"/>)
|
|
/// validates and reconstructs the caller's identity and roles.
|
|
/// </summary>
|
|
[Fact]
|
|
public void IssueThenValidate_FreshToken_RoundTripsIdentityAndRoles()
|
|
{
|
|
HubTokenService service = new(new EphemeralDataProtectionProvider());
|
|
ClaimsIdentity identity = new(
|
|
[
|
|
new Claim(ClaimTypes.Name, "bob"),
|
|
new Claim(ClaimTypes.NameIdentifier, "bob-id"),
|
|
new Claim(ClaimTypes.Role, DashboardRoles.Viewer),
|
|
new Claim(ClaimTypes.Role, DashboardRoles.Admin),
|
|
],
|
|
authenticationType: "test",
|
|
nameType: ClaimTypes.Name,
|
|
roleType: ClaimTypes.Role);
|
|
|
|
string token = service.Issue(new ClaimsPrincipal(identity));
|
|
ClaimsPrincipal? result = service.Validate(token);
|
|
|
|
Assert.NotNull(result);
|
|
Assert.Equal("bob", result.Identity?.Name);
|
|
Assert.True(result.IsInRole(DashboardRoles.Viewer));
|
|
Assert.True(result.IsInRole(DashboardRoles.Admin));
|
|
}
|
|
|
|
/// <summary>
|
|
/// The default token lifetime is the short (5-minute) window, not the
|
|
/// former 30-minute window. Pins the value so a regression that widens the exposure window
|
|
/// of an irrevocable, query-string-carried token is caught in CI.
|
|
/// </summary>
|
|
[Fact]
|
|
public void TokenLifetime_IsFiveMinutes()
|
|
{
|
|
Assert.Equal(TimeSpan.FromMinutes(5), HubTokenService.TokenLifetime);
|
|
}
|
|
|
|
/// <summary>
|
|
/// A token whose lifetime has elapsed is rejected by <see cref="HubTokenService.Validate"/>.
|
|
/// Uses the internal lifetime-issuing seam with a negative lifetime so the token is already
|
|
/// expired at mint time — deterministic, no wall-clock delay.
|
|
/// </summary>
|
|
[Fact]
|
|
public void Validate_ExpiredToken_ReturnsNull()
|
|
{
|
|
HubTokenService service = new(new EphemeralDataProtectionProvider());
|
|
ClaimsIdentity identity = new(
|
|
[new Claim(ClaimTypes.Name, "carol")],
|
|
authenticationType: "test");
|
|
|
|
string expiredToken = service.Issue(
|
|
new ClaimsPrincipal(identity),
|
|
TimeSpan.FromMinutes(-1));
|
|
|
|
Assert.Null(service.Validate(expiredToken));
|
|
}
|
|
}
|