LdapMappings: flex header, search filter, per-row Edit + kebab Delete,
@key, dropped Site-Scope-Rules cell in favor of a {n rule(s)} badge.
LdapMappingForm: two stacked cards (Mapping then Site Scope Rules);
scope rules render as removable chips with an inline "Add scope rule"
form; create-mode disables the scope card with an explainer; role
select gets form-text help.
DataConnections: <h4> in flex header, Bulk actions dropdown holding
Expand/Collapse, hover-visible kebab on tree nodes mirroring the
right-click context menu, aria-labels, "No connections match the
filter." inline empty state.
DataConnectionForm: Site rendered as readonly plaintext + lock-after-
creation note in edit mode; parallel Primary endpoint / Backup endpoint
headings; "Optional" badge on Backup when null; form-text on
FailoverRetryCount.
ApiKeys: search filter, Status column dropped (state now lives in the
kebab menu label "Disable"/"Enable"), Edit + kebab actions, @key,
aria-labels.
ApiKeyForm: nested card removed; fixed-text Back header; real
clipboard copy via IJSRuntime + toast confirmation.
Test selector fix in DataConnectionFormTests for the new Site
readonly-plaintext rendering.
112 lines
4.2 KiB
C#
112 lines
4.2 KiB
C#
using System.Security.Claims;
|
|
using System.Text.Json;
|
|
using Bunit;
|
|
using Microsoft.AspNetCore.Components;
|
|
using Microsoft.AspNetCore.Components.Authorization;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
using NSubstitute;
|
|
using ScadaLink.Commons.Entities.Sites;
|
|
using ScadaLink.Commons.Interfaces.Repositories;
|
|
using DataConnectionForm = ScadaLink.CentralUI.Components.Pages.Admin.DataConnectionForm;
|
|
|
|
namespace ScadaLink.CentralUI.Tests;
|
|
|
|
public class DataConnectionFormTests : BunitContext
|
|
{
|
|
private readonly ISiteRepository _siteRepo = Substitute.For<ISiteRepository>();
|
|
|
|
public DataConnectionFormTests()
|
|
{
|
|
Services.AddSingleton(_siteRepo);
|
|
AddTestAuth();
|
|
var sites = new List<Site> { new("Plant-A", "plant-a") { Id = 1 } };
|
|
_siteRepo.GetAllSitesAsync(Arg.Any<CancellationToken>())
|
|
.Returns(Task.FromResult<IReadOnlyList<Site>>(sites));
|
|
}
|
|
|
|
private void AddTestAuth()
|
|
{
|
|
var claims = new[]
|
|
{
|
|
new Claim("Username", "tester"),
|
|
new Claim(ClaimTypes.Role, "Admin")
|
|
};
|
|
var user = new ClaimsPrincipal(new ClaimsIdentity(claims, "TestAuth"));
|
|
Services.AddSingleton<AuthenticationStateProvider>(new TestAuthStateProvider(user));
|
|
Services.AddAuthorizationCore();
|
|
}
|
|
|
|
private IRenderedComponent<DataConnectionForm> RenderForCreateSite(int siteId)
|
|
{
|
|
Services.GetRequiredService<NavigationManager>()
|
|
.NavigateTo($"/admin/connections/create?siteId={siteId}");
|
|
return Render<DataConnectionForm>();
|
|
}
|
|
|
|
[Fact]
|
|
public void NoProtocolDropdown_IsRendered()
|
|
{
|
|
var cut = RenderForCreateSite(1);
|
|
Assert.DoesNotContain("Custom", cut.Markup);
|
|
var labels = cut.FindAll("label").Select(l => l.TextContent.Trim()).ToList();
|
|
Assert.DoesNotContain(labels, l => l == "Protocol");
|
|
}
|
|
|
|
[Fact]
|
|
public async Task Save_InvalidPrimaryUrl_DoesNotCallRepo()
|
|
{
|
|
var cut = RenderForCreateSite(1);
|
|
cut.FindAll("input[type='text']")
|
|
.First(i => i.GetAttribute("placeholder")?.StartsWith("opc.tcp") == true)
|
|
.Change("not-a-url");
|
|
|
|
// Name field (the first editable text input that is NOT the OPC URL).
|
|
// Site renders as a readonly plaintext input when locked — skip it.
|
|
cut.FindAll("input[type='text']")
|
|
.First(i => !i.HasAttribute("readonly")
|
|
&& (i.GetAttribute("placeholder") is null
|
|
|| !i.GetAttribute("placeholder")!.StartsWith("opc.tcp")))
|
|
.Change("My Connection");
|
|
|
|
await cut.FindAll("button")
|
|
.First(b => b.TextContent.Trim() == "Save").ClickAsync(new());
|
|
|
|
await _siteRepo.DidNotReceive().AddDataConnectionAsync(Arg.Any<DataConnection>());
|
|
Assert.Contains("Endpoint URL must be a valid", cut.Markup);
|
|
}
|
|
|
|
[Fact]
|
|
public async Task Save_ValidConfig_PersistsTypedJsonAndProtocolOpcUa()
|
|
{
|
|
DataConnection? captured = null;
|
|
await _siteRepo.AddDataConnectionAsync(
|
|
Arg.Do<DataConnection>(d => captured = d));
|
|
|
|
var cut = RenderForCreateSite(1);
|
|
|
|
// Name (skip readonly Site plaintext input)
|
|
cut.FindAll("input[type='text']")
|
|
.First(i => !i.HasAttribute("readonly")
|
|
&& (i.GetAttribute("placeholder") is null
|
|
|| !i.GetAttribute("placeholder")!.StartsWith("opc.tcp")))
|
|
.Change("PLC-1");
|
|
// Endpoint URL
|
|
cut.FindAll("input[type='text']")
|
|
.First(i => i.GetAttribute("placeholder")?.StartsWith("opc.tcp") == true)
|
|
.Change("opc.tcp://plant-a:4840");
|
|
|
|
await cut.FindAll("button")
|
|
.First(b => b.TextContent.Trim() == "Save").ClickAsync(new());
|
|
|
|
Assert.NotNull(captured);
|
|
Assert.Equal("OpcUa", captured!.Protocol);
|
|
Assert.NotNull(captured.PrimaryConfiguration);
|
|
|
|
using var doc = JsonDocument.Parse(captured.PrimaryConfiguration!);
|
|
Assert.Equal("opc.tcp://plant-a:4840",
|
|
doc.RootElement.GetProperty("endpointUrl").GetString());
|
|
Assert.Equal(60000,
|
|
doc.RootElement.GetProperty("sessionTimeoutMs").GetInt32());
|
|
}
|
|
}
|