64e3fbe035
v2-ci / build (push) Failing after 1m43s
v2-ci / unit-tests (tests/Core/ZB.MOM.WW.OtOpcUa.Cluster.Tests) (push) Has been skipped
v2-ci / unit-tests (tests/Server/ZB.MOM.WW.OtOpcUa.ControlPlane.Tests) (push) Has been skipped
v2-ci / unit-tests (tests/Server/ZB.MOM.WW.OtOpcUa.OpcUaServer.Tests) (push) Has been skipped
v2-ci / unit-tests (tests/Server/ZB.MOM.WW.OtOpcUa.Runtime.Tests) (push) Has been skipped
v2-ci / unit-tests (tests/Server/ZB.MOM.WW.OtOpcUa.Security.Tests) (push) Has been skipped
v2-ci / integration (tests/Server/ZB.MOM.WW.OtOpcUa.Host.IntegrationTests) (push) Has been skipped
v2-ci / integration (tests/Server/ZB.MOM.WW.OtOpcUa.OpcUaServer.IntegrationTests) (push) Has been skipped
Adds <summary>, <param>, <typeparam>, and <inheritdoc/> tags to public members surfaced by commentchecker — resolves 5,847 of 5,869 issues (99.6%) across three /fixdocs passes.
150 lines
5.8 KiB
C#
150 lines
5.8 KiB
C#
using Microsoft.EntityFrameworkCore;
|
|
using Shouldly;
|
|
using Xunit;
|
|
using ZB.MOM.WW.OtOpcUa.Configuration.Entities;
|
|
using ZB.MOM.WW.OtOpcUa.Configuration.Enums;
|
|
using ZB.MOM.WW.OtOpcUa.Configuration.Services;
|
|
|
|
namespace ZB.MOM.WW.OtOpcUa.Configuration.Tests;
|
|
|
|
[Trait("Category", "Unit")]
|
|
public sealed class LdapGroupRoleMappingServiceTests : IDisposable
|
|
{
|
|
private readonly OtOpcUaConfigDbContext _db;
|
|
|
|
/// <summary>Initializes a new instance of the LdapGroupRoleMappingServiceTests class.</summary>
|
|
public LdapGroupRoleMappingServiceTests()
|
|
{
|
|
var options = new DbContextOptionsBuilder<OtOpcUaConfigDbContext>()
|
|
.UseInMemoryDatabase($"ldap-grm-{Guid.NewGuid():N}")
|
|
.Options;
|
|
_db = new OtOpcUaConfigDbContext(options);
|
|
}
|
|
|
|
/// <summary>Disposes the database context.</summary>
|
|
public void Dispose() => _db.Dispose();
|
|
|
|
private LdapGroupRoleMapping Make(string group, AdminRole role, string? clusterId = null, bool? isSystemWide = null) =>
|
|
new()
|
|
{
|
|
LdapGroup = group,
|
|
Role = role,
|
|
ClusterId = clusterId,
|
|
IsSystemWide = isSystemWide ?? (clusterId is null),
|
|
};
|
|
|
|
/// <summary>Verifies that Create sets Id and CreatedAtUtc.</summary>
|
|
[Fact]
|
|
public async Task Create_SetsId_AndCreatedAtUtc()
|
|
{
|
|
var svc = new LdapGroupRoleMappingService(_db);
|
|
var row = Make("cn=fleet,dc=x", AdminRole.FleetAdmin);
|
|
|
|
var saved = await svc.CreateAsync(row, CancellationToken.None);
|
|
|
|
saved.Id.ShouldNotBe(Guid.Empty);
|
|
saved.CreatedAtUtc.ShouldBeGreaterThan(DateTime.UtcNow.AddMinutes(-1));
|
|
}
|
|
|
|
/// <summary>Verifies that Create rejects empty LDAP group.</summary>
|
|
[Fact]
|
|
public async Task Create_Rejects_EmptyLdapGroup()
|
|
{
|
|
var svc = new LdapGroupRoleMappingService(_db);
|
|
var row = Make("", AdminRole.FleetAdmin);
|
|
|
|
await Should.ThrowAsync<InvalidLdapGroupRoleMappingException>(
|
|
() => svc.CreateAsync(row, CancellationToken.None));
|
|
}
|
|
|
|
/// <summary>Verifies that Create rejects system-wide mapping with ClusterId.</summary>
|
|
[Fact]
|
|
public async Task Create_Rejects_SystemWide_With_ClusterId()
|
|
{
|
|
var svc = new LdapGroupRoleMappingService(_db);
|
|
var row = Make("cn=g", AdminRole.ConfigViewer, clusterId: "c1", isSystemWide: true);
|
|
|
|
await Should.ThrowAsync<InvalidLdapGroupRoleMappingException>(
|
|
() => svc.CreateAsync(row, CancellationToken.None));
|
|
}
|
|
|
|
/// <summary>Verifies that Create rejects non-system-wide mapping without ClusterId.</summary>
|
|
[Fact]
|
|
public async Task Create_Rejects_NonSystemWide_WithoutClusterId()
|
|
{
|
|
var svc = new LdapGroupRoleMappingService(_db);
|
|
var row = Make("cn=g", AdminRole.ConfigViewer, clusterId: null, isSystemWide: false);
|
|
|
|
await Should.ThrowAsync<InvalidLdapGroupRoleMappingException>(
|
|
() => svc.CreateAsync(row, CancellationToken.None));
|
|
}
|
|
|
|
/// <summary>Verifies that GetByGroups returns only matching grants.</summary>
|
|
[Fact]
|
|
public async Task GetByGroups_Returns_MatchingGrants_Only()
|
|
{
|
|
var svc = new LdapGroupRoleMappingService(_db);
|
|
await svc.CreateAsync(Make("cn=fleet,dc=x", AdminRole.FleetAdmin), CancellationToken.None);
|
|
await svc.CreateAsync(Make("cn=editor,dc=x", AdminRole.ConfigEditor), CancellationToken.None);
|
|
await svc.CreateAsync(Make("cn=viewer,dc=x", AdminRole.ConfigViewer), CancellationToken.None);
|
|
|
|
var results = await svc.GetByGroupsAsync(
|
|
["cn=fleet,dc=x", "cn=viewer,dc=x"], CancellationToken.None);
|
|
|
|
results.Count.ShouldBe(2);
|
|
results.Select(r => r.Role).ShouldBe([AdminRole.FleetAdmin, AdminRole.ConfigViewer], ignoreOrder: true);
|
|
}
|
|
|
|
/// <summary>Verifies that GetByGroups returns empty when input is empty.</summary>
|
|
[Fact]
|
|
public async Task GetByGroups_Empty_Input_ReturnsEmpty()
|
|
{
|
|
var svc = new LdapGroupRoleMappingService(_db);
|
|
await svc.CreateAsync(Make("cn=fleet,dc=x", AdminRole.FleetAdmin), CancellationToken.None);
|
|
|
|
var results = await svc.GetByGroupsAsync([], CancellationToken.None);
|
|
|
|
results.ShouldBeEmpty();
|
|
}
|
|
|
|
/// <summary>Verifies that ListAll orders results by group then cluster.</summary>
|
|
[Fact]
|
|
public async Task ListAll_Orders_ByGroupThenCluster()
|
|
{
|
|
var svc = new LdapGroupRoleMappingService(_db);
|
|
await svc.CreateAsync(Make("cn=b,dc=x", AdminRole.FleetAdmin), CancellationToken.None);
|
|
await svc.CreateAsync(Make("cn=a,dc=x", AdminRole.ConfigEditor, clusterId: "c2", isSystemWide: false), CancellationToken.None);
|
|
await svc.CreateAsync(Make("cn=a,dc=x", AdminRole.ConfigEditor, clusterId: "c1", isSystemWide: false), CancellationToken.None);
|
|
|
|
var results = await svc.ListAllAsync(CancellationToken.None);
|
|
|
|
results[0].LdapGroup.ShouldBe("cn=a,dc=x");
|
|
results[0].ClusterId.ShouldBe("c1");
|
|
results[1].ClusterId.ShouldBe("c2");
|
|
results[2].LdapGroup.ShouldBe("cn=b,dc=x");
|
|
}
|
|
|
|
/// <summary>Verifies that Delete removes the matching row.</summary>
|
|
[Fact]
|
|
public async Task Delete_Removes_Matching_Row()
|
|
{
|
|
var svc = new LdapGroupRoleMappingService(_db);
|
|
var saved = await svc.CreateAsync(Make("cn=fleet,dc=x", AdminRole.FleetAdmin), CancellationToken.None);
|
|
|
|
await svc.DeleteAsync(saved.Id, CancellationToken.None);
|
|
|
|
var after = await svc.ListAllAsync(CancellationToken.None);
|
|
after.ShouldBeEmpty();
|
|
}
|
|
|
|
/// <summary>Verifies that Delete with unknown Id is a no-op.</summary>
|
|
[Fact]
|
|
public async Task Delete_Unknown_Id_IsNoOp()
|
|
{
|
|
var svc = new LdapGroupRoleMappingService(_db);
|
|
|
|
await svc.DeleteAsync(Guid.NewGuid(), CancellationToken.None);
|
|
// no exception
|
|
}
|
|
}
|