feat: HistorianGateway as the OtOpcUa historian backend (read/write/alarms + continuous historization); retire Wonderware #423

Merged
dohertj2 merged 40 commits from feat/historian-gateway-backend into master 2026-06-27 11:09:04 -04:00
Showing only changes of commit b2276b5b04 - Show all commits
@@ -152,6 +152,13 @@ public sealed class AlarmHistorianRegistrationTests
opts.Validate().ShouldContain(w => w.Contains("DeadLetterRetentionDays")); opts.Validate().ShouldContain(w => w.Contains("DeadLetterRetentionDays"));
} }
[Fact]
public void Validate_warns_on_non_positive_max_attempts()
{
var opts = new AlarmHistorianOptions { Enabled = true, DatabasePath = "/abs/h.db", MaxAttempts = 0 };
opts.Validate().ShouldContain(w => w.Contains("MaxAttempts"));
}
[Fact] [Fact]
public void Validate_accumulates_multiple_warnings() public void Validate_accumulates_multiple_warnings()
{ {