Automate policy source freshness and inventory
Some checks failed
Build and publish policy-nexus image / build-and-push (push) Failing after 2s

This commit is contained in:
tegwick 2026-08-18 13:25:49 +02:00
parent 78d096bdd5
commit 03a4fab9e0
17 changed files with 1647 additions and 42 deletions

View file

@ -46,6 +46,8 @@ def _release(root: Path) -> Path:
"review_due": "2027-02-18",
"canonical_path": "standards/example/v1/index.html",
"revision_path": "standards/example/v1/revisions/draft-1/index.html",
"source_repo": "canon",
"source_path": "canon/standards/example.md",
"source_revision": COMMIT,
"source_digest": SOURCE_DIGEST,
}
@ -54,10 +56,38 @@ def _release(root: Path) -> Path:
(build / "publication-manifest.json").write_text(
json.dumps(manifest, sort_keys=True) + "\n", encoding="utf-8"
)
(build / "source-inventory.json").write_text(
json.dumps(
{
"schema_version": "policy-nexus-source-inventory/v1",
"source_set_digest": "3" * 64,
"repositories": [
{"name": "canon", "revision": COMMIT, "source_count": 1}
],
"sources": [
{
"source_repo": "canon",
"source_path": "canon/standards/example.md",
"disposition": "published",
"reason": "test",
}
],
},
sort_keys=True,
)
+ "\n",
encoding="utf-8",
)
return build
class ReleaseVerificationTest(unittest.TestCase):
def test_release_pipeline_does_not_delete_immutable_revision_tree(self) -> None:
makefile = (ROOT / "Makefile").read_text(encoding="utf-8")
containerfile = (ROOT / "Containerfile").read_text(encoding="utf-8")
self.assertIn("release-build: build release-check", makefile)
self.assertNotIn("RUN rm -rf build", containerfile)
def test_accepts_clean_provenance_and_returns_manifest_digest(self) -> None:
with tempfile.TemporaryDirectory() as directory:
build = _release(Path(directory))
@ -67,6 +97,7 @@ class ReleaseVerificationTest(unittest.TestCase):
).hexdigest()
self.assertEqual(expected, evidence["publication_manifest_digest"])
self.assertEqual(["example"], evidence["documents"])
self.assertEqual("3" * 64, evidence["source_set_digest"])
def test_rejects_working_tree_source_revision(self) -> None:
with tempfile.TemporaryDirectory() as directory:

View file

@ -0,0 +1,142 @@
from __future__ import annotations
import hashlib
import json
from pathlib import Path
import sys
import tempfile
import unittest
ROOT = Path(__file__).parents[1]
sys.path.insert(0, str(ROOT / "tools"))
from source_inventory import check, refresh
REVISION = "a" * 40
def _fixture(root: Path) -> tuple[Path, Path, Path, Path]:
source = root / "docs/adr/ADR-0001.md"
source.parent.mkdir(parents=True)
source.write_text("# ADR-0001\n", encoding="utf-8")
config = root / "source-inventory.config.json"
config.write_text(
json.dumps(
{
"schema_version": 1,
"repositories": {
"policy-nexus": {
"local": True,
"selectors": ["docs/adr/*.md"],
}
},
}
),
encoding="utf-8",
)
publication = root / "publication.json"
publication.write_text(
json.dumps(
{
"schema_version": 1,
"documents": [
{
"source_repo": "policy-nexus",
"source_path": "docs/adr/ADR-0001.md",
}
],
}
),
encoding="utf-8",
)
revisions = {"policy-nexus": REVISION}
digest = hashlib.sha256(
json.dumps(revisions, sort_keys=True, separators=(",", ":")).encode()
).hexdigest()
lock = root / "source-lock.json"
lock.write_text(
json.dumps(
{
"schema_version": 1,
"source_set_digest": digest,
"repositories": {"policy-nexus": {"revision": REVISION}},
}
),
encoding="utf-8",
)
return config, root / "source-inventory.json", publication, lock
class SourceInventoryTest(unittest.TestCase):
def test_refresh_and_check_bind_publication_to_inventory(self) -> None:
with tempfile.TemporaryDirectory() as directory:
root = Path(directory)
config, inventory, publication, lock = _fixture(root)
refresh(
config,
inventory,
publication,
policy_root=root,
source_root=root.parent,
)
report = check(
config,
inventory,
publication,
policy_root=root,
source_root=root.parent,
lock_path=lock,
)
self.assertEqual(1, report["dispositions"]["published"])
self.assertEqual(REVISION, report["repositories"][0]["revision"])
def test_check_rejects_unreviewed_new_source(self) -> None:
with tempfile.TemporaryDirectory() as directory:
root = Path(directory)
config, inventory, publication, lock = _fixture(root)
refresh(
config,
inventory,
publication,
policy_root=root,
source_root=root.parent,
)
(root / "docs/adr/ADR-0002.md").write_text("# New\n", encoding="utf-8")
with self.assertRaisesRegex(ValueError, "unreviewed sources"):
check(
config,
inventory,
publication,
policy_root=root,
source_root=root.parent,
lock_path=lock,
)
def test_check_rejects_published_disposition_drift(self) -> None:
with tempfile.TemporaryDirectory() as directory:
root = Path(directory)
config, inventory, publication, lock = _fixture(root)
refresh(
config,
inventory,
publication,
policy_root=root,
source_root=root.parent,
)
value = json.loads(inventory.read_text(encoding="utf-8"))
value["sources"][0]["disposition"] = "metadata-pending"
inventory.write_text(json.dumps(value), encoding="utf-8")
with self.assertRaisesRegex(ValueError, "must exactly match"):
check(
config,
inventory,
publication,
policy_root=root,
source_root=root.parent,
lock_path=lock,
)
if __name__ == "__main__":
unittest.main()