feat(sphistorianclient): port SDK source + tests, rebrand namespace to ZB.MOM.WW.SPHistorianClient

This commit is contained in:
Joseph Doherty
2026-06-19 05:45:06 -04:00
parent 965f5006f2
commit 63cddfb65b
105 changed files with 11454 additions and 0 deletions
@@ -0,0 +1,63 @@
using System.Runtime.Versioning;
using ZB.MOM.WW.SPHistorianClient.Wcf;
using Xunit.Abstractions;
namespace ZB.MOM.WW.SPHistorianClient.Tests;
[SupportedOSPlatform("windows")]
public sealed class EventChainDiagnosticTests
{
private readonly ITestOutputHelper _output;
public EventChainDiagnosticTests(ITestOutputHelper output)
{
_output = output;
}
[Fact]
public async Task EventOrchestrator_DiagnosticDump_AgainstLocalHistorian()
{
string? host = Environment.GetEnvironmentVariable("HISTORIAN_HOST");
if (string.IsNullOrWhiteSpace(host) || !string.Equals(host, "localhost", StringComparison.OrdinalIgnoreCase) || !OperatingSystem.IsWindows())
{
return;
}
HistorianClientOptions options = new()
{
Host = host,
IntegratedSecurity = true,
Transport = HistorianTransport.LocalPipe
};
HistorianWcfEventOrchestrator orchestrator = new(options);
DateTime endUtc = DateTime.UtcNow;
DateTime startUtc = endUtc - TimeSpan.FromDays(7);
int observed = 0;
ZB.MOM.WW.SPHistorianClient.Models.HistorianEvent? firstEvent = null;
await foreach (var evt in orchestrator.ReadEventsAsync(startUtc, endUtc, CancellationToken.None))
{
observed++;
firstEvent ??= evt;
}
_output.WriteLine($"Events observed: {observed}");
if (firstEvent is not null)
{
_output.WriteLine($" EventTimeUtc: {firstEvent.EventTimeUtc:O}");
_output.WriteLine($" ReceivedTimeUtc: {firstEvent.ReceivedTimeUtc:O}");
_output.WriteLine($" Type: {firstEvent.Type}");
_output.WriteLine($" Properties.Count:{firstEvent.Properties.Count}");
_output.WriteLine($" Has alarm_id: {firstEvent.Id != Guid.Empty}");
}
_output.WriteLine($"LastEnsT2Handle: {HistorianWcfEventOrchestrator.LastEnsT2Handle}");
_output.WriteLine($"LastEnsT2PayloadSha256: {HistorianWcfEventOrchestrator.LastEnsT2PayloadSha256}");
_output.WriteLine($"LastUpdC3ReturnCode: {HistorianWcfEventOrchestrator.LastUpdC3ReturnCode}");
_output.WriteLine($"LastRTag2ReturnCode: {HistorianWcfEventOrchestrator.LastRTag2ReturnCode}");
_output.WriteLine($"LastAddReturnCode (EnsT2): {HistorianWcfEventOrchestrator.LastAddReturnCode}");
_output.WriteLine($"LastAddOutputLength: {HistorianWcfEventOrchestrator.LastAddOutputLength}");
_output.WriteLine($"LastResultBufferLength: {orchestrator.LastResultBufferLength}");
_output.WriteLine($"LastErrorBufferDescription: {orchestrator.LastErrorBufferDescription}");
}
}