7fd5cb2b56
ClusterClient→gRPC migration Phase 4 (docs/plans/2026-07-22-clusterclient-to-grpc-plan.md). Phases 2/3 proved both directions on gRPC; this removes the Akka transport underneath. Deleted: - AkkaCentralTransport, AkkaSiteTransport (+ their dedicated tests) - ISiteClientFactory + DefaultSiteClientFactory; CentralCommunicationActor legacy ctor + SelectTransport (Host now builds GrpcSiteTransport and injects it) - ClusterClient creation + both ClusterClientReceptionist.RegisterService calls in AkkaHostedService; the RegisterCentralClient message + receive block - CommunicationOptions.CentralContactPoints; the CentralTransport/SiteTransport coexistence flags; the CentralTransportMode/SiteTransportKind enums gRPC is now the only site↔central transport (site→central CentralControlService via GrpcCentralTransport; central→site SiteCommandService via GrpcSiteTransport), both built unconditionally by the Host. NoOpCentralTransport is the fail-loud null-default so TestKit command-dispatch suites still construct the site actor without a wired transport; production always injects GrpcCentralTransport. Config: CentralGrpcEndpoints is now unconditional — CommunicationOptionsValidator rejects blank entries (role-agnostic), and StartupValidator requires a Site node to list >=1 endpoint (fail-fast, mirrors GrpcPsk). Rig configs moved CentralContactPoints -> CentralGrpcEndpoints (docker x6, docker-env2 x2, Host default, deploy/wonder-app-vd03). Kept Akka.Cluster.Tools (ClusterSingleton still used). Tests: build 0/0; Communication.Tests 640, Host.Tests 421 green. Removed the ClusterClient.Send per-site-routing tests (covered by the transport suites), swapped the ISiteClientFactory-based ctors to a substitute ISiteCommandTransport, converted the audit-push integration relay to an in-process bridge transport. Docs: Component-Communication/Host/StoreAndForward, components/Communication, topology-guide, grpc_streams (SUPERSEDED note), the frame-size known-issue (retired amendment), and CLAUDE.md transport decisions. Not included: the dead IntegrationCallRequest path (#32) is a separate user-owned behavioral decision — SiteEnvelope routing is transport-agnostic so it still compiles.
192 lines
8.2 KiB
C#
192 lines
8.2 KiB
C#
using Akka.Actor;
|
|
using Akka.TestKit.Xunit2;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
using NSubstitute;
|
|
using ZB.MOM.WW.ScadaBridge.Commons.Entities.Sites;
|
|
using ZB.MOM.WW.ScadaBridge.Commons.Interfaces.Repositories;
|
|
using ZB.MOM.WW.ScadaBridge.Commons.Messages.Communication;
|
|
using ZB.MOM.WW.ScadaBridge.Commons.Messages.Deployment;
|
|
using ZB.MOM.WW.ScadaBridge.Commons.Messages.DebugView;
|
|
using ZB.MOM.WW.ScadaBridge.Commons.Messages.Health;
|
|
using ZB.MOM.WW.ScadaBridge.Commons.Messages.Notification;
|
|
using ZB.MOM.WW.ScadaBridge.Communication.Actors;
|
|
using ZB.MOM.WW.ScadaBridge.HealthMonitoring;
|
|
using Akka.TestKit;
|
|
|
|
namespace ZB.MOM.WW.ScadaBridge.Communication.Tests;
|
|
|
|
/// <summary>
|
|
/// Tests for <see cref="CentralCommunicationActor"/> behaviour that is independent of the
|
|
/// central→site command transport: heartbeat/replica aggregation, notification-outbox proxying,
|
|
/// and the DB-refresh failure path. The per-site routing itself (envelope → transport → the right
|
|
/// site) is the transport's job and is covered by
|
|
/// <see cref="CentralCommunicationActorTransportTests"/> and the <c>GrpcSiteTransport</c> suites;
|
|
/// the old ClusterClient-routing tests here were removed with the Akka transport in the
|
|
/// ClusterClient→gRPC migration's Phase 4.
|
|
/// </summary>
|
|
public class CentralCommunicationActorTests : TestKit
|
|
{
|
|
public CentralCommunicationActorTests() : base(@"akka.loglevel = DEBUG") { }
|
|
|
|
private (IActorRef actor, ISiteRepository mockRepo) CreateActorWithMockRepo(
|
|
IEnumerable<Site>? sites = null)
|
|
{
|
|
var mockRepo = Substitute.For<ISiteRepository>();
|
|
mockRepo.GetAllSitesAsync(Arg.Any<CancellationToken>())
|
|
.Returns(sites?.ToList() ?? new List<Site>());
|
|
|
|
var services = new ServiceCollection();
|
|
services.AddScoped(_ => mockRepo);
|
|
var sp = services.BuildServiceProvider();
|
|
|
|
var transport = Substitute.For<ISiteCommandTransport>();
|
|
var actor = Sys.ActorOf(Props.Create(() => new CentralCommunicationActor(sp, transport, (TimeSpan?)null)));
|
|
return (actor, mockRepo);
|
|
}
|
|
|
|
[Fact]
|
|
public void Heartbeat_BumpsAggregatorTimestamp()
|
|
{
|
|
var mockRepo = Substitute.For<ISiteRepository>();
|
|
mockRepo.GetAllSitesAsync(Arg.Any<CancellationToken>())
|
|
.Returns(new List<Site>());
|
|
|
|
var aggregator = Substitute.For<ICentralHealthAggregator>();
|
|
|
|
var services = new ServiceCollection();
|
|
services.AddScoped(_ => mockRepo);
|
|
services.AddSingleton(aggregator);
|
|
var sp = services.BuildServiceProvider();
|
|
|
|
var transport = Substitute.For<ISiteCommandTransport>();
|
|
var centralActor = Sys.ActorOf(
|
|
Props.Create(() => new CentralCommunicationActor(sp, transport, (TimeSpan?)null)));
|
|
|
|
var timestamp = DateTimeOffset.UtcNow;
|
|
centralActor.Tell(new HeartbeatMessage("site1", "host1", true, timestamp));
|
|
|
|
AwaitAssert(() => aggregator.Received(1).MarkHeartbeat("site1", timestamp));
|
|
}
|
|
|
|
[Fact]
|
|
public void HeartbeatReplica_MarksLocalAggregator_WithoutRebroadcast()
|
|
{
|
|
// Task 16 (arch review 02): a heartbeat replicated from the peer central
|
|
// node marks the local aggregator (so post-failover both nodes know the
|
|
// site's liveness) but is NOT re-published (it arrives via pub-sub already).
|
|
var mockRepo = Substitute.For<ISiteRepository>();
|
|
mockRepo.GetAllSitesAsync(Arg.Any<CancellationToken>())
|
|
.Returns(new List<Site>());
|
|
|
|
var aggregator = Substitute.For<ICentralHealthAggregator>();
|
|
|
|
var services = new ServiceCollection();
|
|
services.AddScoped(_ => mockRepo);
|
|
services.AddSingleton(aggregator);
|
|
var sp = services.BuildServiceProvider();
|
|
|
|
var transport = Substitute.For<ISiteCommandTransport>();
|
|
var centralActor = Sys.ActorOf(
|
|
Props.Create(() => new CentralCommunicationActor(sp, transport, (TimeSpan?)null)));
|
|
|
|
var ts = DateTimeOffset.UtcNow;
|
|
centralActor.Tell(new SiteHeartbeatReplica(new HeartbeatMessage("site-1", "host-a", true, ts)));
|
|
|
|
AwaitAssert(() => aggregator.Received(1).MarkHeartbeat("site-1", ts));
|
|
}
|
|
|
|
[Fact]
|
|
public void LoadSiteAddressesFailure_IsLoggedNotSilentlySwallowed()
|
|
{
|
|
// Regression test for Communication-006. When the repository query throws,
|
|
// PipeTo delivers a Status.Failure to the actor. Without a Receive<Status.Failure>
|
|
// handler the failure becomes an unhandled message (debug-level only) and the
|
|
// periodic refresh fails silently — operators cannot tell "no addresses
|
|
// configured" from "database is down". The fix logs the failure at Warning.
|
|
var mockRepo = Substitute.For<ISiteRepository>();
|
|
mockRepo.GetAllSitesAsync(Arg.Any<CancellationToken>())
|
|
.Returns<Task<IReadOnlyList<Site>>>(_ => throw new InvalidOperationException("database is down"));
|
|
|
|
var services = new ServiceCollection();
|
|
services.AddScoped(_ => mockRepo);
|
|
var sp = services.BuildServiceProvider();
|
|
|
|
var transport = Substitute.For<ISiteCommandTransport>();
|
|
|
|
// The fix logs a Warning carrying the InvalidOperationException as the cause.
|
|
EventFilter.Warning(contains: "Failed to load site addresses from the database").ExpectOne(() =>
|
|
{
|
|
Sys.ActorOf(Props.Create(() => new CentralCommunicationActor(sp, transport, (TimeSpan?)null)));
|
|
});
|
|
}
|
|
|
|
private NotificationSubmit CreateSubmit(string id = "notif1") =>
|
|
new(id, "ops-list", "Subject", "Body", "site1", "inst1", "script.cs", DateTimeOffset.UtcNow);
|
|
|
|
[Fact]
|
|
public void NotificationSubmit_ForwardedToOutboxProxy_AckRoutesBackToSite()
|
|
{
|
|
var (actor, _) = CreateActorWithMockRepo();
|
|
var outboxProbe = CreateTestProbe();
|
|
actor.Tell(new RegisterNotificationOutbox(outboxProbe.Ref));
|
|
|
|
// A second probe stands in for the site (the original Sender).
|
|
var siteProbe = CreateTestProbe();
|
|
var submit = CreateSubmit();
|
|
actor.Tell(submit, siteProbe.Ref);
|
|
|
|
// The outbox proxy receives the NotificationSubmit with the site as the sender,
|
|
// so an ack it sends routes straight back to the site, not the central actor.
|
|
outboxProbe.ExpectMsg<NotificationSubmit>(m => m.NotificationId == "notif1");
|
|
outboxProbe.Reply(new NotificationSubmitAck("notif1", Accepted: true, Error: null));
|
|
siteProbe.ExpectMsg<NotificationSubmitAck>(a => a.NotificationId == "notif1" && a.Accepted);
|
|
}
|
|
|
|
[Fact]
|
|
public void NotificationStatusQuery_ForwardedToOutboxProxy_ResponseRoutesBackToSite()
|
|
{
|
|
var (actor, _) = CreateActorWithMockRepo();
|
|
var outboxProbe = CreateTestProbe();
|
|
actor.Tell(new RegisterNotificationOutbox(outboxProbe.Ref));
|
|
|
|
var siteProbe = CreateTestProbe();
|
|
var query = new NotificationStatusQuery("corr1", "notif1");
|
|
actor.Tell(query, siteProbe.Ref);
|
|
|
|
outboxProbe.ExpectMsg<NotificationStatusQuery>(m => m.CorrelationId == "corr1");
|
|
outboxProbe.Reply(new NotificationStatusResponse(
|
|
"corr1", Found: true, Status: "Delivered", RetryCount: 0,
|
|
LastError: null, DeliveredAt: DateTimeOffset.UtcNow));
|
|
siteProbe.ExpectMsg<NotificationStatusResponse>(r => r.CorrelationId == "corr1" && r.Found);
|
|
}
|
|
|
|
[Fact]
|
|
public void NotificationSubmit_NoOutboxConfigured_RepliesNonAccepted()
|
|
{
|
|
var (actor, _) = CreateActorWithMockRepo();
|
|
|
|
// No RegisterNotificationOutbox sent — the proxy is null.
|
|
var submit = CreateSubmit();
|
|
actor.Tell(submit);
|
|
|
|
var ack = ExpectMsg<NotificationSubmitAck>();
|
|
Assert.Equal("notif1", ack.NotificationId);
|
|
Assert.False(ack.Accepted);
|
|
Assert.NotNull(ack.Error);
|
|
}
|
|
|
|
[Fact]
|
|
public void NotificationStatusQuery_NoOutboxConfigured_RepliesNotFound()
|
|
{
|
|
var (actor, _) = CreateActorWithMockRepo();
|
|
|
|
// No RegisterNotificationOutbox sent — the proxy is null.
|
|
var query = new NotificationStatusQuery("corr1", "notif1");
|
|
actor.Tell(query);
|
|
|
|
var response = ExpectMsg<NotificationStatusResponse>();
|
|
Assert.Equal("corr1", response.CorrelationId);
|
|
Assert.False(response.Found);
|
|
}
|
|
}
|