dc9c0c950c
Apply the ZB.MOM.WW. prefix to all gateway-side projects, folders,
.csproj/.sln contents, C# namespaces, using directives, generated proto
C# (csharp_namespace + checked-in generated files), InternalsVisibleTo
attributes, project-name string literals (LoadProject, .sln lookups,
worker exe paths, staticwebassets manifest), and the install/script/doc
references that point at any of the above. Migrate the solution from
.sln to .slnx via `dotnet sln migrate` and delete the old file.
External-runtime identifiers are intentionally NOT prefixed so external
configuration keeps working:
- GatewayMetrics.cs MeterName ("MxGateway.Server")
- DashboardAuthenticationDefaults Scheme/Policy ("MxGateway.Dashboard")
- GatewayRequestLoggingMiddleware logger category ("MxGateway.Request")
- StaRuntime thread name ("MxGateway.Worker.STA")
- appsettings.json root section "MxGateway" + env-var prefix
MxGateway__... and secret-name MxGateway:ApiKeyPepper
- C:\ProgramData\MxGateway\ data dir paths
Also fixes two tests that were not rename-related but became visible
while validating the rename:
- WorkerLiveMxAccessSmokeTests.ShutDownAsync: cancellation that the
gateway service correctly maps to RpcException(Cancelled) per gRPC
convention was being misclassified as a stream fault. Added a sibling
catch on RpcException with StatusCode.Cancelled.
- IntegrationTestEnvironment.ResolveRepositoryRoot: extracted IsRepositoryRoot
and made it accept either a .git marker OR a .sln/.slnx next to src/
so the worker-exe walker works in non-git working copies.
clients/proto/proto-inputs.json's protoRoot updated to point at
src/ZB.MOM.WW.MxGateway.Contracts/Protos.
Verified by `dotnet build` and a full `dotnet test` of the .slnx with
MXGATEWAY_RUN_LIVE_{MXACCESS,LDAP,GALAXY}_TESTS=1:
Tests: 472/472 pass
Worker.Tests: 280/280 pass (4 dev-rig [Fact(Skip=...)] skipped)
IntegrationTests: 18/18 pass
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
178 lines
5.7 KiB
C#
178 lines
5.7 KiB
C#
using Microsoft.Extensions.Options;
|
|
using ZB.MOM.WW.MxGateway.Server.Galaxy;
|
|
|
|
namespace ZB.MOM.WW.MxGateway.Tests.Galaxy;
|
|
|
|
/// <summary>
|
|
/// Covers <see cref="GalaxyHierarchySnapshotStore"/>: the on-disk persistence
|
|
/// that lets the Galaxy browse cache survive a cold start while the Galaxy
|
|
/// database is unreachable.
|
|
/// </summary>
|
|
public sealed class GalaxyHierarchySnapshotStoreTests : IDisposable
|
|
{
|
|
private readonly List<string> _tempPaths = [];
|
|
|
|
[Fact]
|
|
public async Task SaveAsync_ThenTryLoadAsync_RoundTripsRows()
|
|
{
|
|
string path = CreateTempPath();
|
|
GalaxyHierarchySnapshotStore store = CreateStore(path);
|
|
GalaxyHierarchySnapshot snapshot = SampleSnapshot();
|
|
|
|
await store.SaveAsync(snapshot, CancellationToken.None);
|
|
GalaxyHierarchySnapshot? loaded = await store.TryLoadAsync(CancellationToken.None);
|
|
|
|
Assert.NotNull(loaded);
|
|
Assert.Equal(snapshot.LastDeployTime, loaded.LastDeployTime);
|
|
Assert.Equal(snapshot.SavedAt, loaded.SavedAt);
|
|
|
|
GalaxyHierarchyRow row = Assert.Single(loaded.Hierarchy);
|
|
Assert.Equal(7, row.GobjectId);
|
|
Assert.Equal("Pump_001", row.TagName);
|
|
Assert.Equal(["AppPump", "Pump"], row.TemplateChain);
|
|
|
|
Assert.Equal(2, loaded.Attributes.Count);
|
|
GalaxyAttributeRow withDimension = loaded.Attributes[0];
|
|
Assert.Equal("PV", withDimension.AttributeName);
|
|
Assert.Equal(8, withDimension.ArrayDimension);
|
|
Assert.True(withDimension.IsAlarm);
|
|
Assert.Null(loaded.Attributes[1].ArrayDimension);
|
|
}
|
|
|
|
[Fact]
|
|
public async Task TryLoadAsync_WhenNoFileExists_ReturnsNull()
|
|
{
|
|
GalaxyHierarchySnapshotStore store = CreateStore(CreateTempPath());
|
|
|
|
Assert.Null(await store.TryLoadAsync(CancellationToken.None));
|
|
}
|
|
|
|
[Fact]
|
|
public async Task SaveAsync_WhenPersistenceDisabled_WritesNothing()
|
|
{
|
|
string path = CreateTempPath();
|
|
GalaxyHierarchySnapshotStore store = CreateStore(path, persist: false);
|
|
|
|
await store.SaveAsync(SampleSnapshot(), CancellationToken.None);
|
|
|
|
Assert.False(File.Exists(path));
|
|
Assert.Null(await store.TryLoadAsync(CancellationToken.None));
|
|
}
|
|
|
|
[Fact]
|
|
public async Task TryLoadAsync_WhenFileIsCorruptJson_ReturnsNull()
|
|
{
|
|
string path = CreateTempPath();
|
|
await File.WriteAllTextAsync(path, "{ this is not valid json");
|
|
GalaxyHierarchySnapshotStore store = CreateStore(path);
|
|
|
|
Assert.Null(await store.TryLoadAsync(CancellationToken.None));
|
|
}
|
|
|
|
[Fact]
|
|
public async Task TryLoadAsync_WhenSchemaVersionUnrecognized_ReturnsNull()
|
|
{
|
|
string path = CreateTempPath();
|
|
await File.WriteAllTextAsync(path, """{"SchemaVersion":999,"Snapshot":null}""");
|
|
GalaxyHierarchySnapshotStore store = CreateStore(path);
|
|
|
|
Assert.Null(await store.TryLoadAsync(CancellationToken.None));
|
|
}
|
|
|
|
[Fact]
|
|
public async Task SaveAsync_OverwritesAnEarlierSnapshot()
|
|
{
|
|
string path = CreateTempPath();
|
|
GalaxyHierarchySnapshotStore store = CreateStore(path);
|
|
|
|
await store.SaveAsync(SampleSnapshot(), CancellationToken.None);
|
|
GalaxyHierarchySnapshot second = SampleSnapshot() with
|
|
{
|
|
Hierarchy = [],
|
|
Attributes = [],
|
|
};
|
|
await store.SaveAsync(second, CancellationToken.None);
|
|
|
|
GalaxyHierarchySnapshot? loaded = await store.TryLoadAsync(CancellationToken.None);
|
|
Assert.NotNull(loaded);
|
|
Assert.Empty(loaded.Hierarchy);
|
|
Assert.Empty(loaded.Attributes);
|
|
}
|
|
|
|
private static GalaxyHierarchySnapshot SampleSnapshot() => new(
|
|
LastDeployTime: new DateTimeOffset(2026, 5, 20, 9, 30, 0, TimeSpan.Zero),
|
|
SavedAt: new DateTimeOffset(2026, 5, 20, 9, 31, 0, TimeSpan.Zero),
|
|
Hierarchy:
|
|
[
|
|
new GalaxyHierarchyRow
|
|
{
|
|
GobjectId = 7,
|
|
TagName = "Pump_001",
|
|
ContainedName = "Pump",
|
|
BrowseName = "Pump",
|
|
CategoryId = 10,
|
|
TemplateChain = ["AppPump", "Pump"],
|
|
},
|
|
],
|
|
Attributes:
|
|
[
|
|
new GalaxyAttributeRow
|
|
{
|
|
GobjectId = 7,
|
|
TagName = "Pump_001",
|
|
AttributeName = "PV",
|
|
FullTagReference = "Pump_001.PV[]",
|
|
MxDataType = 5,
|
|
DataTypeName = "Float",
|
|
IsArray = true,
|
|
ArrayDimension = 8,
|
|
IsAlarm = true,
|
|
},
|
|
new GalaxyAttributeRow
|
|
{
|
|
GobjectId = 7,
|
|
TagName = "Pump_001",
|
|
AttributeName = "Mode",
|
|
FullTagReference = "Pump_001.Mode",
|
|
MxDataType = 3,
|
|
DataTypeName = "Integer",
|
|
ArrayDimension = null,
|
|
},
|
|
]);
|
|
|
|
private static GalaxyHierarchySnapshotStore CreateStore(string path, bool persist = true)
|
|
{
|
|
GalaxyRepositoryOptions options = new()
|
|
{
|
|
PersistSnapshot = persist,
|
|
SnapshotCachePath = path,
|
|
};
|
|
return new GalaxyHierarchySnapshotStore(Options.Create(options));
|
|
}
|
|
|
|
private string CreateTempPath()
|
|
{
|
|
string path = Path.Combine(
|
|
Path.GetTempPath(),
|
|
$"mxgw-galaxy-snapshot-{Guid.NewGuid():N}.json");
|
|
_tempPaths.Add(path);
|
|
return path;
|
|
}
|
|
|
|
public void Dispose()
|
|
{
|
|
foreach (string path in _tempPaths)
|
|
{
|
|
try
|
|
{
|
|
File.Delete(path);
|
|
File.Delete(path + ".tmp");
|
|
}
|
|
catch (IOException)
|
|
{
|
|
// Best-effort cleanup of test scratch files.
|
|
}
|
|
}
|
|
}
|
|
}
|