6a616a1ab2
Migrate tests/Server/ZB.MOM.WW.OtOpcUa.AdminUI.Tests (was 358 build errors) to the v3 Raw-only Tag schema and the Batch-1 AdminUI stubs. Production untouched. - Driver-page serialization tests: drop the retired pre-declared Tags editor (page *TagRow types + DriverOptions.Tags); multi-device pages keep their Devices editor (ToOptions(devices)). Enum-serialization round-trip coverage (CpuType/ModbusFamily/MelsecFamily/AbCipPlcFamily/AbLegacyPlcFamily/FocasCncSeries) preserved intact. - UnsTreeTestDb: reseed to v3 (Device->Tag raw slice, no EquipmentId/DriverInstanceId on Tag, no Namespace). - UnsTreeService tag tests: assert Batch-1 stubs (CreateTag/UpdateTag refusal, empty tag/tag-driver lists); DeleteTag stays live against a raw Tag. - Equipment #122 guard retained (validates input driver vs line cluster); drop the retired persisted-binding assertions + NamespaceId seeds. Area/Line #122 driver- orphan guard retired -> assert cross-cluster move now succeeds. - DeleteCluster: drop the deleted-Namespace child-check test. - OpcUaClientTagConfigModel/TagConfigValidator: address key FullName -> nodeId. - ScriptTagCatalog: project surviving Name/DataType/TagConfig; DriverInstanceId null. - VirtualTag {{equip}} equipment-tag-derived base is dark -> 3 tests skipped (Batch-3). Result: build green; 507 passed / 3 skipped / 0 failed.
42 lines
1.5 KiB
C#
42 lines
1.5 KiB
C#
using Shouldly;
|
|
using Xunit;
|
|
using ZB.MOM.WW.OtOpcUa.AdminUI.Uns;
|
|
|
|
namespace ZB.MOM.WW.OtOpcUa.AdminUI.Tests.Uns;
|
|
|
|
[Trait("Category", "Unit")]
|
|
public sealed class UnsTreeServiceEquipmentChildRowsTests
|
|
{
|
|
private static UnsTreeService SeededService()
|
|
{
|
|
var dbName = $"uns-childrows-{Guid.NewGuid():N}";
|
|
UnsTreeTestDb.SeedNamed(dbName);
|
|
return new UnsTreeService(UnsTreeTestDb.Factory(dbName));
|
|
}
|
|
|
|
// v3 Batch-1: the equipment↔Tag binding was retired (Tag is Raw-only; authoring moved to the Raw
|
|
// tree in Batch 2). LoadTagsForEquipmentAsync is a stub that always returns empty — no equipment
|
|
// has bound driver tags to list. The former in-name-order / EquipmentId-scoping assertions moved
|
|
// with the authoring surface to the Batch-2 Raw-tree tests.
|
|
[Fact]
|
|
public async Task LoadTagsForEquipment_returns_empty_stub()
|
|
{
|
|
var rows = await SeededService().LoadTagsForEquipmentAsync(UnsTreeTestDb.SeededEquipmentId);
|
|
rows.ShouldBeEmpty();
|
|
}
|
|
|
|
[Fact]
|
|
public async Task LoadVirtualTagsForEquipment_returns_vtags_in_name_order()
|
|
{
|
|
var rows = await SeededService().LoadVirtualTagsForEquipmentAsync(UnsTreeTestDb.SeededEquipmentId);
|
|
rows.Count.ShouldBe(1);
|
|
rows[0].VirtualTagId.ShouldBe("VTAG-1");
|
|
rows[0].Name.ShouldBe("computed");
|
|
rows[0].DataType.ShouldBe("Double");
|
|
}
|
|
|
|
[Fact]
|
|
public async Task LoadTagsForEquipment_empty_for_unknown_equipment()
|
|
=> (await SeededService().LoadTagsForEquipmentAsync("EQ-NONE")).ShouldBeEmpty();
|
|
}
|