Group all 69 projects into category subfolders under src/ and tests/ so the Rider Solution Explorer mirrors the module structure. Folders: Core, Server, Drivers (with a nested Driver CLIs subfolder), Client, Tooling. - Move every project folder on disk with git mv (history preserved as renames). - Recompute relative paths in 57 .csproj files: cross-category ProjectReferences, the lib/ HintPath+None refs in Driver.Historian.Wonderware, and the external mxaccessgw refs in Driver.Galaxy and its test project. - Rebuild ZB.MOM.WW.OtOpcUa.slnx with nested solution folders. - Re-prefix project paths in functional scripts (e2e, compliance, smoke SQL, integration, install). Build green (0 errors); unit tests pass. Docs left for a separate pass. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
41 lines
1.4 KiB
C#
41 lines
1.4 KiB
C#
using Serilog;
|
|
using Serilog.Core;
|
|
using ZB.MOM.WW.OtOpcUa.Core.Abstractions;
|
|
using ZB.MOM.WW.OtOpcUa.Core.Scripting;
|
|
|
|
namespace ZB.MOM.WW.OtOpcUa.Core.Scripting.Tests;
|
|
|
|
/// <summary>
|
|
/// In-memory <see cref="ScriptContext"/> for tests. Holds a tag dictionary + a write
|
|
/// log + a deterministic clock. Concrete subclasses in production will wire
|
|
/// GetTag/SetVirtualTag through the virtual-tag engine + driver dispatch; here they
|
|
/// hit a plain dictionary.
|
|
/// </summary>
|
|
public sealed class FakeScriptContext : ScriptContext
|
|
{
|
|
public Dictionary<string, DataValueSnapshot> Tags { get; } = new(StringComparer.Ordinal);
|
|
public List<(string Path, object? Value)> Writes { get; } = [];
|
|
|
|
public override DateTime Now { get; } = new DateTime(2026, 1, 1, 12, 0, 0, DateTimeKind.Utc);
|
|
public override ILogger Logger { get; } = new LoggerConfiguration().CreateLogger();
|
|
|
|
public override DataValueSnapshot GetTag(string path)
|
|
{
|
|
return Tags.TryGetValue(path, out var v)
|
|
? v
|
|
: new DataValueSnapshot(null, 0x80340000u, null, Now); // BadNodeIdUnknown
|
|
}
|
|
|
|
public override void SetVirtualTag(string path, object? value)
|
|
{
|
|
Writes.Add((path, value));
|
|
}
|
|
|
|
public FakeScriptContext Seed(string path, object? value,
|
|
uint statusCode = 0u, DateTime? sourceTs = null)
|
|
{
|
|
Tags[path] = new DataValueSnapshot(value, statusCode, sourceTs ?? Now, Now);
|
|
return this;
|
|
}
|
|
}
|