Tests fixes, audit progress, UI completions

This commit is contained in:
StellaOps Bot
2025-12-30 09:03:22 +02:00
parent 7a5210e2aa
commit 82e55c206a
318 changed files with 7232 additions and 1256 deletions

View File

@@ -16,7 +16,7 @@ namespace StellaOps.Scanner.WebService.Tests;
public sealed class ScannerApplicationFactory : WebApplicationFactory<ServiceStatus>
{
private readonly ScannerWebServicePostgresFixture postgresFixture;
private readonly Dictionary<string, string?> configuration = new()
private readonly Dictionary<string, string?> configuration = new(StringComparer.OrdinalIgnoreCase)
{
["scanner:storage:driver"] = "postgres",
["scanner:storage:dsn"] = string.Empty,
@@ -32,7 +32,9 @@ public sealed class ScannerApplicationFactory : WebApplicationFactory<ServiceSta
["scanner:telemetry:minimumLogLevel"] = "Information",
["scanner:telemetry:enableRequestLogging"] = "false",
["scanner:events:enabled"] = "false",
["scanner:features:enableSignedReports"] = "false"
["scanner:features:enableSignedReports"] = "false",
["scanner:offlineKit:requireDsse"] = "false",
["scanner:offlineKit:rekorOfflineMode"] = "false"
};
private Action<IDictionary<string, string?>>? configureConfiguration;