using System.Diagnostics.CodeAnalysis; using System.Security.Claims; using Microsoft.Extensions.Options; using ZB.MOM.WW.MxGateway.Contracts.Proto; using ZB.MOM.WW.MxGateway.Server.Configuration; using ZB.MOM.WW.MxGateway.Server.Dashboard; using ZB.MOM.WW.MxGateway.Server.Sessions; namespace ZB.MOM.WW.MxGateway.Tests.Gateway.Dashboard; /// /// Covers , the single decision both dashboard subscribe seams /// consult (SEC-25 / TST-15). /// /// /// Every branch is asserted in its denying direction as well as its allowing one, because the /// pre-ACL behaviour was "allow everything": an assertion that a permitted caller is permitted /// cannot distinguish a working gate from no gate at all. /// public sealed class DashboardSessionAclTests { private const string TaggedSessionId = "session-tagged"; private const string UntaggedSessionId = "session-untagged"; /// An Administrator bypasses the tag check entirely, including for a tag they hold none of. [Fact] public void CanViewSession_Administrator_BypassesTagCheck() { DashboardSessionAcl acl = CreateAcl(); Assert.True(acl.CanViewSession(Principal(roles: [DashboardRoles.Admin]), TaggedSessionId)); Assert.True(acl.CanViewSession(Principal(roles: [DashboardRoles.Admin]), UntaggedSessionId)); } /// /// The admin bypass is what keeps Dashboard:DisableLogin auto-login (which stamps both /// roles and no tags) working exactly as before this change. /// [Fact] public void CanViewSession_AutoLoginStyleBothRolesNoTags_Allowed() { DashboardSessionAcl acl = CreateAcl(); Assert.True(acl.CanViewSession( Principal(roles: [DashboardRoles.Admin, DashboardRoles.Viewer]), TaggedSessionId)); } /// /// The decision table's order is load-bearing at exactly one corner: an Administrator naming /// a session id the registry does not have is ALLOWED, because the admin bypass is checked /// before the lookup. Pinned deliberately — reordering the two checks (a plausible "look the /// session up first, it reads better" refactor) would flip this to a denial and quietly change /// what an Administrator's hub join does for a session that closed a moment ago. /// [Fact] public void CanViewSession_AdministratorAndUnknownSession_Allowed() { DashboardSessionAcl acl = CreateAcl(); Assert.True(acl.CanViewSession(Principal(roles: [DashboardRoles.Admin]), "session-does-not-exist")); } /// /// An unknown session id is denied for a non-Admin even when they hold every configured tag: /// no subscription is created for a session the registry does not have. The Administrator /// counterpart above is the deliberate exception. /// [Fact] public void CanViewSession_UnknownSession_Denied() { DashboardSessionAcl acl = CreateAcl(); Assert.False(acl.CanViewSession( Principal(roles: [DashboardRoles.Viewer], tags: ["team-a", "team-b"]), "session-does-not-exist")); } /// A blank session id is denied without consulting anything. [Theory] [InlineData("")] [InlineData(" ")] public void CanViewSession_BlankSessionId_Denied(string sessionId) { DashboardSessionAcl acl = CreateAcl(); Assert.False(acl.CanViewSession(Principal(roles: [DashboardRoles.Admin]), sessionId)); } /// A null principal denies — the fail-closed reading of an unauthenticated hub context. [Fact] public void CanViewSession_NullPrincipal_Denied() { DashboardSessionAcl acl = CreateAcl(); Assert.False(acl.CanViewSession(null, UntaggedSessionId)); } /// /// Untagged sessions follow Dashboard:UntaggedSessionVisibility: hidden from Viewers /// under the shipped default, visible under /// the opt-in . /// /// The configured untagged-session visibility. /// Whether a tagless Viewer may observe the untagged session. [Theory] [InlineData(UntaggedSessionVisibility.AdminOnly, false)] [InlineData(UntaggedSessionVisibility.AllViewers, true)] public void CanViewSession_UntaggedSession_FollowsConfiguredVisibility( UntaggedSessionVisibility visibility, bool expected) { DashboardSessionAcl acl = CreateAcl(visibility); Assert.Equal( expected, acl.CanViewSession(Principal(roles: [DashboardRoles.Viewer]), UntaggedSessionId)); } /// /// A Viewer whose grant intersects the session's tags is allowed; the comparison is /// ordinal-ignore-case, matching the session's tag set and the config map. /// /// The single tag the Viewer holds. [Theory] [InlineData("team-a")] [InlineData("TEAM-A")] public void CanViewSession_ViewerGrantIntersectsSessionTags_Allowed(string grantedTag) { DashboardSessionAcl acl = CreateAcl(); Assert.True(acl.CanViewSession( Principal(roles: [DashboardRoles.Viewer], tags: [grantedTag]), TaggedSessionId)); } /// A Viewer holding only another tenant's tag is denied — the load-bearing negative. [Fact] public void CanViewSession_ViewerGrantDisjointFromSessionTags_Denied() { DashboardSessionAcl acl = CreateAcl(); Assert.False(acl.CanViewSession( Principal(roles: [DashboardRoles.Viewer], tags: ["team-b"]), TaggedSessionId)); } /// /// A principal carrying no tag claims — the anonymous-localhost / empty-grant Viewer of /// SEC-02 — sees a tagged session never, and an untagged one only when the operator opted /// into . /// [Fact] public void CanViewSession_NoTagClaims_IsEmptyGrantViewer() { ClaimsPrincipal anonymous = new(new ClaimsIdentity()); Assert.False(CreateAcl().CanViewSession(anonymous, TaggedSessionId)); Assert.False(CreateAcl(UntaggedSessionVisibility.AdminOnly).CanViewSession(anonymous, UntaggedSessionId)); Assert.True(CreateAcl(UntaggedSessionVisibility.AllViewers).CanViewSession(anonymous, UntaggedSessionId)); } /// /// An unauthenticated principal that nonetheless carries an Administrator role claim does not /// get the bypass: the bypass requires a real authenticated identity, as elsewhere in the /// dashboard (DashboardSessionAdminService.CanManage). /// [Fact] public void CanViewSession_UnauthenticatedAdminRoleClaim_DoesNotBypass() { // No authentication type => IsAuthenticated is false. ClaimsPrincipal principal = new(new ClaimsIdentity( [new Claim(ClaimTypes.Role, DashboardRoles.Admin)], authenticationType: null, nameType: ClaimTypes.Name, roleType: ClaimTypes.Role)); Assert.False(CreateAcl().CanViewSession(principal, TaggedSessionId)); } private static DashboardSessionAcl CreateAcl( UntaggedSessionVisibility visibility = UntaggedSessionVisibility.AdminOnly) { GatewayOptions options = new() { Dashboard = new DashboardOptions { UntaggedSessionVisibility = visibility }, }; return new DashboardSessionAcl( new TwoSessionManager( CreateSession(TaggedSessionId, ["team-a"]), CreateSession(UntaggedSessionId, tags: null)), Options.Create(options)); } private static ClaimsPrincipal Principal(string[] roles, string[]? tags = null) { List claims = [new Claim(ClaimTypes.Name, "viewer-user")]; claims.AddRange(roles.Select(role => new Claim(ClaimTypes.Role, role))); claims.AddRange((tags ?? []).Select(tag => new Claim( DashboardAuthenticationDefaults.DashboardTagClaimType, tag))); return new ClaimsPrincipal(new ClaimsIdentity( claims, authenticationType: "test", nameType: ClaimTypes.Name, roleType: ClaimTypes.Role)); } private static GatewaySession CreateSession(string sessionId, string[]? tags) { return new GatewaySession( sessionId: sessionId, backendName: "backend", pipeName: $"pipe-{sessionId}", nonce: "nonce", clientIdentity: "client", ownerKeyId: "key-1", clientSessionName: "client-session", clientCorrelationId: "correlation", commandTimeout: TimeSpan.FromSeconds(5), startupTimeout: TimeSpan.FromSeconds(5), shutdownTimeout: TimeSpan.FromSeconds(5), leaseDuration: TimeSpan.FromMinutes(30), openedAt: DateTimeOffset.UnixEpoch, ownerDashboardTags: tags); } /// Registry double serving exactly the two sessions the ACL cases need. private sealed class TwoSessionManager(GatewaySession tagged, GatewaySession untagged) : ISessionManager { /// public Task OpenSessionAsync( SessionOpenRequest request, string? clientIdentity, string? ownerKeyId, CancellationToken cancellationToken) => Task.FromResult(tagged); /// public bool TryGetSession(string sessionId, [MaybeNullWhen(false)] out GatewaySession session) { session = sessionId switch { TaggedSessionId => tagged, UntaggedSessionId => untagged, _ => null, }; return session is not null; } /// public Task InvokeAsync( string sessionId, WorkerCommand command, CancellationToken cancellationToken) => Task.FromResult(new WorkerCommandReply()); /// public Task CloseSessionAsync( string sessionId, CancellationToken cancellationToken) => Task.FromResult(new SessionCloseResult(sessionId, SessionState.Closed, AlreadyClosed: false)); /// public Task KillWorkerAsync( string sessionId, string reason, CancellationToken cancellationToken) => Task.FromResult(new SessionCloseResult(sessionId, SessionState.Closed, AlreadyClosed: false)); /// public Task CloseExpiredLeasesAsync( DateTimeOffset now, CancellationToken cancellationToken) => Task.FromResult(0); /// public Task ShutdownAsync(CancellationToken cancellationToken) => Task.CompletedTask; } }