stabilize tests

This commit is contained in:
master
2026-02-01 21:37:40 +02:00
parent 55744f6a39
commit 5d5e80b2e4
6435 changed files with 33984 additions and 13802 deletions

View File

@@ -5,8 +5,9 @@
// Description: Resolves backport evidence by calling proof generator
// -----------------------------------------------------------------------------
using System.Text.RegularExpressions;
using Microsoft.Extensions.Logging;
using System.Text.RegularExpressions;
namespace StellaOps.Concelier.Merge.Backport;

View File

@@ -5,10 +5,11 @@
// Description: Service for managing provenance scope lifecycle
// -----------------------------------------------------------------------------
using Microsoft.Extensions.Logging;
using System.Security.Cryptography;
using System.Text;
using System.Text.RegularExpressions;
using Microsoft.Extensions.Logging;
namespace StellaOps.Concelier.Merge.Backport;

View File

@@ -1,9 +1,10 @@
namespace StellaOps.Concelier.Merge.Comparers;
using System;
using System.Collections.Immutable;
using StellaOps.Concelier.Normalization.Distro;
using StellaOps.VersionComparison;
using System;
using System.Collections.Immutable;
namespace StellaOps.Concelier.Merge.Comparers;
/// <summary>
/// Compares Alpine APK package versions using apk-tools ordering rules.

View File

@@ -1,7 +1,8 @@
using StellaOps.Concelier.Normalization.Distro;
using System;
namespace StellaOps.Concelier.Merge.Comparers;
using System;
using StellaOps.Concelier.Normalization.Distro;
public sealed class DebianEvrComparer : IComparer<DebianEvr>, IComparer<string>
{

View File

@@ -1,6 +1,7 @@
using StellaOps.VersionComparison;
namespace StellaOps.Concelier.Merge.Comparers;
using StellaOps.VersionComparison;
/// <summary>
/// Provides version comparison with optional proof output.

View File

@@ -1,7 +1,8 @@
using StellaOps.Concelier.Normalization.Distro;
using System;
namespace StellaOps.Concelier.Merge.Comparers;
using System;
using StellaOps.Concelier.Normalization.Distro;
public sealed class NevraComparer : IComparer<Nevra>, IComparer<string>
{

View File

@@ -1,7 +1,8 @@
using Semver;
using System.Diagnostics.CodeAnalysis;
namespace StellaOps.Concelier.Merge.Comparers;
using System.Diagnostics.CodeAnalysis;
using Semver;
/// <summary>
/// Provides helpers to interpret introduced/fixed/lastAffected SemVer ranges and compare versions.

View File

@@ -1,7 +1,8 @@
using StellaOps.VersionComparison;
using System.Collections.Immutable;
namespace StellaOps.Concelier.Merge.Comparers;
using System.Collections.Immutable;
using StellaOps.VersionComparison;
/// <summary>
/// Result of a version comparison with explainability proof lines.

View File

@@ -1,8 +1,9 @@
using StellaOps.Concelier.Models;
using System;
using System.Collections.Generic;
using System.Collections.Immutable;
using System.Linq;
using StellaOps.Concelier.Models;
namespace StellaOps.Concelier.Merge.Identity;

View File

@@ -1,9 +1,10 @@
using StellaOps.Concelier.Models;
using System;
using System.Collections.Generic;
using System.Collections.Immutable;
using System.Linq;
using System.Runtime.CompilerServices;
using StellaOps.Concelier.Models;
namespace StellaOps.Concelier.Merge.Identity;

View File

@@ -5,10 +5,11 @@
// Description: Core merge hash calculator implementation
// -----------------------------------------------------------------------------
using System.Security.Cryptography;
using System.Text;
using StellaOps.Concelier.Merge.Identity.Normalizers;
using StellaOps.Concelier.Models;
using System.Security.Cryptography;
using System.Text;
namespace StellaOps.Concelier.Merge.Identity;

View File

@@ -1,9 +1,10 @@
using System;
using System.Threading;
using System.Threading.Tasks;
using Microsoft.Extensions.Logging;
using StellaOps.Concelier.Core.Jobs;
using StellaOps.Concelier.Merge.Services;
using System;
using System.Threading;
using System.Threading.Tasks;
namespace StellaOps.Concelier.Merge.Jobs;

View File

@@ -1,4 +1,4 @@
using System;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.DependencyInjection.Extensions;
@@ -7,6 +7,7 @@ using StellaOps.Concelier.Core;
using StellaOps.Concelier.Merge.Jobs;
using StellaOps.Concelier.Merge.Options;
using StellaOps.Concelier.Merge.Services;
using System;
namespace StellaOps.Concelier.Merge;

View File

@@ -1,13 +1,4 @@
using System;
using System.Collections.Generic;
using System.Collections.Immutable;
using System.Diagnostics.Metrics;
using System.Globalization;
using System.Linq;
using System.Security.Cryptography;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using Microsoft.Extensions.Logging;
using StellaOps.Concelier.Core;
using StellaOps.Concelier.Core.Events;
@@ -18,8 +9,18 @@ using StellaOps.Concelier.Storage.Aliases;
using StellaOps.Concelier.Storage.MergeEvents;
using StellaOps.Messaging.Abstractions;
using StellaOps.Provcache.Events;
using System.Text.Json;
using StellaOps.Provenance;
using System;
using System.Collections.Generic;
using System.Collections.Immutable;
using System.Diagnostics.Metrics;
using System.Globalization;
using System.Linq;
using System.Security.Cryptography;
using System.Text;
using System.Text.Json;
using System.Threading;
using System.Threading.Tasks;
namespace StellaOps.Concelier.Merge.Services;

View File

@@ -1,12 +1,13 @@
using Microsoft.Extensions.Logging;
using Microsoft.Extensions.Logging.Abstractions;
using StellaOps.Concelier.Merge.Options;
using StellaOps.Concelier.Models;
using System;
using System.Collections.Generic;
using System.Diagnostics.Metrics;
using System.Globalization;
using System.Linq;
using Microsoft.Extensions.Logging;
using Microsoft.Extensions.Logging.Abstractions;
using StellaOps.Concelier.Merge.Options;
using StellaOps.Concelier.Models;
namespace StellaOps.Concelier.Merge.Services;

View File

@@ -1,9 +1,10 @@
using StellaOps.Concelier.Merge.Options;
using StellaOps.Concelier.Models;
using System;
using System.Collections.Generic;
using System.Collections.Immutable;
using System.Linq;
using StellaOps.Concelier.Merge.Options;
using StellaOps.Concelier.Models;
namespace StellaOps.Concelier.Merge.Services;

View File

@@ -1,9 +1,10 @@
using StellaOps.Concelier.Storage.Aliases;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
using StellaOps.Concelier.Storage.Aliases;
namespace StellaOps.Concelier.Merge.Services;

View File

@@ -1,8 +1,9 @@
namespace StellaOps.Concelier.Merge.Services;
using StellaOps.Concelier.Models;
using System.Security.Cryptography;
using System.Text;
using StellaOps.Concelier.Models;
namespace StellaOps.Concelier.Merge.Services;
/// <summary>
/// Computes deterministic hashes over canonical advisory JSON payloads.

View File

@@ -1,6 +1,7 @@
using StellaOps.Concelier.Models;
using System;
using System.Collections.Generic;
using StellaOps.Concelier.Models;
namespace StellaOps.Concelier.Merge.Services;

View File

@@ -1,8 +1,9 @@
using StellaOps.Concelier.Models;
using System;
using System.Collections.Generic;
using System.Security.Cryptography;
using System.Text;
using StellaOps.Concelier.Models;
namespace StellaOps.Concelier.Merge.Services;

View File

@@ -1,12 +1,13 @@
namespace StellaOps.Concelier.Merge.Services;
using System.Security.Cryptography;
using System.Linq;
using System.Text;
using Microsoft.Extensions.Logging;
using StellaOps.Concelier.Merge.Backport;
using StellaOps.Concelier.Models;
using StellaOps.Concelier.Storage.MergeEvents;
using System.Linq;
using System.Security.Cryptography;
using System.Text;
namespace StellaOps.Concelier.Merge.Services;
/// <summary>
/// Persists merge events with canonical before/after hashes for auditability.

View File

@@ -5,11 +5,12 @@
// Description: Shadow-write mode for computing merge_hash on existing advisories
// -----------------------------------------------------------------------------
using System.Diagnostics;
using Microsoft.Extensions.Logging;
using StellaOps.Concelier.Merge.Identity;
using StellaOps.Concelier.Models;
using StellaOps.Concelier.Storage.Advisories;
using System.Diagnostics;
namespace StellaOps.Concelier.Merge.Services;

View File

@@ -1,5 +1,6 @@
using System.Collections.Generic;
using StellaOps.Concelier.Models;
using System.Collections.Generic;
namespace StellaOps.Concelier.Merge.Services;