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>
45 lines
1.7 KiB
C#
45 lines
1.7 KiB
C#
using Microsoft.Playwright;
|
|
using Xunit;
|
|
|
|
namespace ZB.MOM.WW.OtOpcUa.Admin.E2ETests;
|
|
|
|
/// <summary>
|
|
/// One Playwright runtime + Chromium browser for the whole E2E suite. Tests
|
|
/// open a fresh <see cref="IBrowserContext"/> per fixture so cookies + localStorage
|
|
/// stay isolated. Browser install is a one-time step:
|
|
/// <c>pwsh tests/ZB.MOM.WW.OtOpcUa.Admin.E2ETests/bin/Debug/net10.0/playwright.ps1 install chromium</c>.
|
|
/// When the browser binary isn't present the suite reports a <see cref="PlaywrightBrowserMissingException"/>
|
|
/// so CI can distinguish missing-browser from real test failure.
|
|
/// </summary>
|
|
public sealed class PlaywrightFixture : IAsyncLifetime
|
|
{
|
|
public IPlaywright Playwright { get; private set; } = null!;
|
|
public IBrowser Browser { get; private set; } = null!;
|
|
|
|
public async ValueTask InitializeAsync()
|
|
{
|
|
Playwright = await Microsoft.Playwright.Playwright.CreateAsync();
|
|
try
|
|
{
|
|
Browser = await Playwright.Chromium.LaunchAsync(new BrowserTypeLaunchOptions { Headless = true });
|
|
}
|
|
catch (PlaywrightException ex) when (ex.Message.Contains("Executable doesn't exist"))
|
|
{
|
|
throw new PlaywrightBrowserMissingException(ex.Message);
|
|
}
|
|
}
|
|
|
|
public async ValueTask DisposeAsync()
|
|
{
|
|
if (Browser is not null) await Browser.CloseAsync();
|
|
Playwright?.Dispose();
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Thrown by <see cref="PlaywrightFixture"/> when Chromium isn't installed. Tests
|
|
/// catching this mark themselves as "skipped" rather than "failed", so CI without
|
|
/// the install step stays green.
|
|
/// </summary>
|
|
public sealed class PlaywrightBrowserMissingException(string message) : Exception(message);
|