more audit work

This commit is contained in:
master
2026-01-08 10:21:51 +02:00
parent 43c02081ef
commit 51cf4bc16c
546 changed files with 36721 additions and 4003 deletions

View File

@@ -0,0 +1,26 @@
# AirGap Sync Charter
## Mission
Provide offline job sync bundle export/import and HLC merge services.
## Responsibilities
- Maintain air-gap bundle export/import, sync, and transport logic.
- Keep outputs deterministic and offline-friendly.
- Track sprint tasks in `TASKS.md` and update the sprint tracker.
## Key Paths
- `Services/*.cs`
- `Transport/*.cs`
- `Stores/*.cs`
- `Models/*.cs`
## Required Reading
- `docs/modules/airgap/architecture.md`
- `docs/modules/scheduler/architecture.md`
- `docs/implplan/permament/SPRINT_20251229_049_BE_csproj_audit_maint_tests.md`
## Working Agreement
- 1. Use TimeProvider and deterministic IDs; avoid DateTime.UtcNow and Guid.NewGuid in production paths.
- 2. Keep bundle outputs canonical and stable (ordering, line endings, hashing).
- 3. Validate file paths and inputs for offline safety.
- 4. Update `TASKS.md` and sprint statuses when work changes.

View File

@@ -0,0 +1,10 @@
# AirGap Sync Task Board
This board mirrors active sprint tasks for this module.
Source of truth: `docs/implplan/permament/SPRINT_20251229_049_BE_csproj_audit_maint_tests.md`.
| Task ID | Status | Notes |
| --- | --- | --- |
| AUDIT-0792-M | DONE | Revalidated 2026-01-07. |
| AUDIT-0792-T | DONE | Revalidated 2026-01-07. |
| AUDIT-0792-A | TODO | Open findings (TimeProvider, DSSE helper, InvariantCulture, path validation, line endings, tests). |

View File

@@ -0,0 +1,24 @@
# AirGap Sync Tests Charter
## Mission
Validate air-gap sync services, merge behavior, and signing determinism.
## Responsibilities
- Maintain unit tests for AirGap.Sync services.
- Keep fixtures deterministic and offline-friendly.
- Track sprint tasks in `TASKS.md` and update the sprint tracker.
## Key Paths
- `AirGapBundleDsseSignerTests.cs`
- `ConflictResolverTests.cs`
- `HlcMergeServiceTests.cs`
## Required Reading
- `docs/modules/airgap/architecture.md`
- `docs/modules/scheduler/architecture.md`
- `docs/implplan/permament/SPRINT_20251229_049_BE_csproj_audit_maint_tests.md`
## Working Agreement
- 1. Use fixed time/IDs in tests; avoid Guid.NewGuid, DateTime.UtcNow.
- 2. Keep determinism tests stable across platforms.
- 3. Update `TASKS.md` and sprint statuses when work changes.

View File

@@ -0,0 +1,10 @@
# AirGap Sync Tests Task Board
This board mirrors active sprint tasks for this module.
Source of truth: `docs/implplan/permament/SPRINT_20251229_049_BE_csproj_audit_maint_tests.md`.
| Task ID | Status | Notes |
| --- | --- | --- |
| AUDIT-0793-M | DONE | Revalidated 2026-01-07. |
| AUDIT-0793-T | DONE | Revalidated 2026-01-07. |
| AUDIT-0793-A | DONE | Waived (test project; revalidated 2026-01-07). |