fix(lifecycle): reject claim self-contradiction#437
Open
davion-knight wants to merge 1 commit into
Open
Conversation
contradict() had no guard against claim_a == claim_b, unlike its sibling supersede() which explicitly rejects self-reference. calling it with the same id on both sides wrote a self-loop contradicts reference and flipped the claim to contested with no real counterparty -- durable, nonsensical state with no way to recover short of manual yaml editing.
|
Important Review skippedAuto reviews are disabled on base/target branches other than the default branch. Please check the settings in the CodeRabbit UI or the ⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Pro Plus Run ID: You can disable this status message by setting the Use the checkbox below for a quick retry:
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
summary
lifecycle.contradict()had no guard againstclaim_a == claim_b, unlike its siblingsupersede(), which explicitly rejectsold_claim_id == new_claim_id. callingcontradict()with the same id on both sides wrote a self-loopcontradictsreference onto the claim and flipped its status tocontestedwith no actual counterparty — durable, nonsensical on-disk state with no way to recover short of manual yaml editing. all three surfaces (cli, mcp, jsonl) reach the unguarded function with zero pre-checks.what changed
added the same self-reference guard
supersede()already has, at the top ofcontradict()insrc/vouch/lifecycle.py.test plan
new regression test
test_contradict_rejects_self_referenceintests/test_storage.py— assertsLifecycleErroris raised and the claim is left untouched on disk (fails on the old code, which raised nothing and corrupted the claim).all three clean on the rebased branch (rebased onto
testafter the recent CI incident was resolved).