Files
Joseph Doherty 7b0b9c7365 refactor: rename ScadaLink → ZB.MOM.WW.ScadaBridge (code + projects + namespaces)
Solution + 23 src projects + 26 test projects renamed; folders, csproj,
namespaces, and ScadaLinkDbContext/ScadaBridgeDbContext class updated.
ActorSystem "scadalink" → "scadabridge", Akka seed-node URLs migrated.
SQL roles/logins, LDAP domains, CLI command name, and CLI config dir
(~/.scadalink → ~/.scadabridge) also renamed.

Build green; 5 Host.Tests fail awaiting SQL login rename in next commit.
Pre-existing StaleTagMonitor timing flakes unchanged.

Rename script committed at tools/rename-to-scadabridge.sh.
2026-05-28 09:37:45 -04:00

73 lines
2.2 KiB
C#

using Serilog;
using Serilog.Events;
namespace ZB.MOM.WW.ScadaBridge.Host.Tests;
/// <summary>
/// WP-14: Tests for Serilog structured logging with enriched properties.
/// </summary>
public class SerilogTests
{
[Fact]
public void SerilogLogger_EnrichesWithNodeProperties()
{
var sink = new InMemorySink();
var logger = new LoggerConfiguration()
.Enrich.WithProperty("SiteId", "TestSite")
.Enrich.WithProperty("NodeHostname", "test-node1")
.Enrich.WithProperty("NodeRole", "Site")
.WriteTo.Sink(sink)
.CreateLogger();
logger.Information("Test log message");
Assert.Single(sink.LogEvents);
var logEvent = sink.LogEvents[0];
Assert.True(logEvent.Properties.ContainsKey("SiteId"));
Assert.Equal("\"TestSite\"", logEvent.Properties["SiteId"].ToString());
Assert.True(logEvent.Properties.ContainsKey("NodeHostname"));
Assert.Equal("\"test-node1\"", logEvent.Properties["NodeHostname"].ToString());
Assert.True(logEvent.Properties.ContainsKey("NodeRole"));
Assert.Equal("\"Site\"", logEvent.Properties["NodeRole"].ToString());
}
[Fact]
public void SerilogLogger_CentralRole_EnrichesSiteIdAsCentral()
{
var sink = new InMemorySink();
var logger = new LoggerConfiguration()
.Enrich.WithProperty("SiteId", "central")
.Enrich.WithProperty("NodeHostname", "central-node1")
.Enrich.WithProperty("NodeRole", "Central")
.WriteTo.Sink(sink)
.CreateLogger();
logger.Warning("Central warning");
Assert.Single(sink.LogEvents);
var logEvent = sink.LogEvents[0];
Assert.Equal(LogEventLevel.Warning, logEvent.Level);
Assert.Equal("\"central\"", logEvent.Properties["SiteId"].ToString());
Assert.Equal("\"Central\"", logEvent.Properties["NodeRole"].ToString());
}
}
/// <summary>
/// Simple in-memory Serilog sink for testing.
/// </summary>
public class InMemorySink : Serilog.Core.ILogEventSink
{
public List<LogEvent> LogEvents { get; } = new();
public void Emit(LogEvent logEvent)
{
LogEvents.Add(logEvent);
}
}