Contracts first (T02–T04): approval claim schema with issuer, freshness,
and binding digest; local transactional outbox wire; load-bearing cadence
as heartbeat or reconciliation (layer.yaml declared).
Then the object (T06–T08): SQLite closed state machine, CAS supersession,
distinct-approver fail-closed, revocation without holder cooperation,
outbox insert in the same transaction. Tests fail the mutation when
emission fails, and revoke while the drain sink is down.
Introspection GET /v1/approvals/{id}/claim is a PIP fact, not a decision.
No public consume (T05 waits on GH-WP-0002-T06). Canon T-06 coverage for
wrong binding, expiry, revoke, and supersede.
FLEX-WP-0017 T03 is unblocked on this object; T05 remains blocked only on
consumption ordering.
Assistant: grok
Assistant-Session: 01a04ceb-2057-7e20-b0f9-c282964d5dd9
56 lines
1.2 KiB
Python
56 lines
1.2 KiB
Python
from datetime import datetime, timezone
|
|
|
|
import pytest
|
|
|
|
from approval_engine.api import App
|
|
from approval_engine.store import Engine
|
|
|
|
FROZEN = datetime(2026, 8, 29, 12, 0, tzinfo=timezone.utc)
|
|
|
|
|
|
@pytest.fixture
|
|
def now():
|
|
return FROZEN
|
|
|
|
|
|
@pytest.fixture
|
|
def engine(now):
|
|
eng = Engine(":memory:", clock=lambda: now)
|
|
yield eng
|
|
eng.close()
|
|
|
|
|
|
@pytest.fixture
|
|
def app(engine):
|
|
return App(engine)
|
|
|
|
|
|
def binding(**overrides):
|
|
base = {
|
|
"action": "secrets.kv.destroy",
|
|
"target": {"id": "lane-openbao-root", "stage": "prod"},
|
|
"actor": "agt-secrets-engine",
|
|
"principal": "bernd",
|
|
"purpose": "rotate-exposed-key",
|
|
}
|
|
base.update(overrides)
|
|
return base
|
|
|
|
|
|
def validity():
|
|
return {
|
|
"not_before": "2026-08-29T11:00:00+00:00",
|
|
"expires_at": "2026-08-29T15:00:00+00:00",
|
|
}
|
|
|
|
|
|
def approve(engine, required=1, extra_binding=None, pdp_digest=None):
|
|
obj = engine.create(
|
|
extra_binding or binding(),
|
|
validity(),
|
|
required_count=required,
|
|
pdp_digest=pdp_digest,
|
|
)
|
|
for i in range(required):
|
|
obj = engine.add_entry(obj.id, f"user:approver-{i}")
|
|
return obj
|