using Akka.Actor; using Akka.TestKit.Xunit2; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Logging.Abstractions; using Microsoft.Extensions.Options; using NSubstitute; using ZB.MOM.WW.ScadaBridge.Commons.Entities.Deployment; using ZB.MOM.WW.ScadaBridge.Commons.Entities.Sites; using ZB.MOM.WW.ScadaBridge.Commons.Interfaces.Repositories; using ZB.MOM.WW.ScadaBridge.Commons.Messages.Deployment; using ZB.MOM.WW.ScadaBridge.Commons.Types.Deployment; using ZB.MOM.WW.ScadaBridge.Communication.Actors; namespace ZB.MOM.WW.ScadaBridge.Communication.Tests; /// /// Tests that routes a site→central /// through the scoped /// and pipes the resulting back to the original /// sender (the site's ClusterClient path). Mirrors the audit-ingest routing tests. /// public class CentralCommunicationActorReconcileTests : TestKit { [Fact] public void ReconcileSiteRequest_RoutesResponseToSender() { var deploymentRepo = Substitute.For(); var siteRepo = Substitute.For(); // GetAllSitesAsync is called by the actor's periodic refresh; keep it empty. siteRepo.GetAllSitesAsync(Arg.Any()) .Returns(new List()); siteRepo.GetSiteByIdentifierAsync("site1", Arg.Any()) .Returns(new Site("Site One", "site1") { Id = 7 }); deploymentRepo.GetExpectedDeploymentsForSiteAsync(7, Arg.Any()) .Returns(new List { new(2, "inst-B", "rev2", "dep-B", true), }); deploymentRepo.GetDeployedSnapshotByInstanceIdAsync(2, Arg.Any()) .Returns(new DeployedConfigSnapshot("dep-B", "rev2", "{\"cfg\":\"B\"}")); deploymentRepo.StagePendingIfAbsentAsync( Arg.Any(), Arg.Any(), Arg.Any(), Arg.Any(), Arg.Any(), Arg.Any(), Arg.Any(), Arg.Any()) .Returns(true); var options = Options.Create(new CommunicationOptions { CentralFetchBaseUrl = "https://central.example:9000", PendingDeploymentTtl = TimeSpan.FromMinutes(5), }); var services = new ServiceCollection(); services.AddScoped(_ => deploymentRepo); services.AddScoped(_ => siteRepo); services.AddSingleton(options); services.AddSingleton>( NullLogger.Instance); services.AddScoped(); var sp = services.BuildServiceProvider(); var factory = Substitute.For(); var actor = Sys.ActorOf(Props.Create(() => new CentralCommunicationActor(sp, factory, null))); // Node B is missing inst-B entirely → it should come back as a gap item. actor.Tell(new ReconcileSiteRequest( "site1", "node-b", new Dictionary())); var response = ExpectMsg(TimeSpan.FromSeconds(5)); var gap = Assert.Single(response.Gap); Assert.Equal("inst-B", gap.InstanceUniqueName); Assert.Equal("dep-B", gap.DeploymentId); Assert.False(string.IsNullOrWhiteSpace(gap.FetchToken)); } }