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

@@ -1,13 +1,13 @@
# StellaOps.Replay.Core Agent Charter
# StellaOps.Replay.Core ??? Agent Charter
## Purpose
Own shared replay domain types, canonicalisation helpers, bundle hashing utilities, and DSSE payload builders that power deterministic replay across Stella Ops services.
## Required Reading
- `docs/replay/DETERMINISTIC_REPLAY.md`
- `docs/replay/DEVS_GUIDE_REPLAY.md`
- `docs/modules/replay/guides/DETERMINISTIC_REPLAY.md`
- `docs/modules/replay/guides/DEVS_GUIDE_REPLAY.md`
- `docs/modules/platform/architecture-overview.md` (Replay CAS section once published)
- `docs/data/replay_schema.md` (when created)
- `docs/modules/replay/schemas/replay_schema.md` (when created)
## Expectations
1. Maintain deterministic behaviour (lexicographic ordering, canonical JSON, fixed encodings).
@@ -17,3 +17,4 @@ Own shared replay domain types, canonicalisation helpers, bundle hashing utiliti
## Contacts
- BE-Base Platform Guild (primary)
- Docs Guild (for spec alignment)

View File

@@ -1,3 +1,7 @@
using Microsoft.Extensions.Logging;
using StellaOps.Replay.Core.Manifest;
using StellaOps.Replay.Core.Models;
using System;
using System.Collections.Generic;
using System.Formats.Tar;
@@ -9,9 +13,6 @@ using System.Text;
using System.Text.Json;
using System.Threading;
using System.Threading.Tasks;
using Microsoft.Extensions.Logging;
using StellaOps.Replay.Core.Manifest;
using StellaOps.Replay.Core.Models;
namespace StellaOps.Replay.Core.Bundle;

View File

@@ -1,3 +1,4 @@
using System;
using System.Buffers;
using System.Collections.Generic;

View File

@@ -1,8 +1,9 @@
using StellaOps.Cryptography;
using System.Collections.Generic;
using System.IO;
using System.Text;
using System.Linq;
using StellaOps.Cryptography;
using System.Text;
namespace StellaOps.Replay.Core;

View File

@@ -1,6 +1,7 @@
using StellaOps.Cryptography;
using System;
using System.Collections.Generic;
using StellaOps.Cryptography;
namespace StellaOps.Replay.Core;

View File

@@ -5,6 +5,7 @@
// Description: Service implementation coordinating Advisory + VEX + Policy snapshots
// -----------------------------------------------------------------------------
using System.Collections.Frozen;
using System.Collections.Immutable;
using System.IO.Compression;

View File

@@ -1,6 +1,7 @@
using StellaOps.Replay.Core.Models;
using System.Globalization;
using System.Linq;
using StellaOps.Replay.Core.Models;
using YamlDotNet.Serialization;
using YamlDotNet.Serialization.NamingConventions;

View File

@@ -1,6 +1,7 @@
using StellaOps.Cryptography;
using System.Formats.Tar;
using System.IO;
using StellaOps.Cryptography;
using ZstdSharp;
namespace StellaOps.Replay.Core;

View File

@@ -1,5 +1,6 @@
using System;
using StellaOps.Cryptography;
using System;
namespace StellaOps.Replay.Core;

View File

@@ -1,6 +1,7 @@
using StellaOps.Replay.Serialization;
using System;
using System.Collections.Generic;
using StellaOps.Replay.Serialization;
namespace StellaOps.Replay.Core;

View File

@@ -8,3 +8,4 @@ Source of truth: `docs-archived/implplan/2025-12-29-csproj-audit/SPRINT_20251229
| AUDIT-0107-M | DONE | Revalidated 2026-01-08; maintainability audit for Replay.Core. |
| AUDIT-0107-T | DONE | Revalidated 2026-01-08; test coverage audit for Replay.Core. |
| AUDIT-0107-A | TODO | Pending approval (revalidated 2026-01-08). |
| REMED-06 | DONE | SOLID review notes captured for SPRINT_20260130_002. |

View File

@@ -5,6 +5,7 @@
// Description: Validator for determinism manifest compliance
// -----------------------------------------------------------------------------
using System.Collections.Immutable;
using System.Text.Json;
using System.Text.RegularExpressions;