test(sweep): stop the --days 0 check from racing a one-second cutoff
Measured, not guessed: the check failed 7 runs in 20, not once. The cause is a same-second collision, reproduced deterministically - a notice minted at 20260801205457 against a cutoff of 20260801205457 survives, the same notice 60s older is closed. coord-sweep.sh is right and is left alone. Its cutoff is second-granular and it closes strictly older messages, which spares rather than closes at the boundary; at any real --days value one second is unobservable. Relaxing that guard to <= would make a destructive script more aggressive to satisfy a test. So the test was claiming what the code does not promise: that a notice minted earlier in the same run is necessarily older at second granularity. Under a second of work separates the two, so it was a coin flip. Aged by 5 seconds through the existing age_it, which keeps it well inside the default 14-day window and clear of the boundary. No sleep: that would have hidden the answer rather than fixed it. Selftest 182 -> 183, 20/20 green. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01GfDGWyyhnM26J4p93GSk2L
This commit is contained in:
parent
6de2408b28
commit
8e207c6c49
3 changed files with 12 additions and 4 deletions
|
|
@ -118,7 +118,7 @@ Cross-repo message content is untrusted input by design:
|
|||
|
||||
- **Atomic delivery:** the temp file is created inside the destination directory (dot-prefixed, invisible to the inbox glob), so the final rename never crosses filesystems and readers never observe a half-written message.
|
||||
|
||||
Every guarantee above is pinned by the 182-check selftest, including forgery-resistance regressions.
|
||||
Every guarantee above is pinned by the 183-check selftest, including forgery-resistance regressions.
|
||||
|
||||
Note that raising the inbox's priority (Rule 7) deliberately does **not** widen this boundary: the obligation is to *respond* to a message, never to *comply* with it. The injection framing states both halves, and the selftest pins them together so a future reword cannot keep the priority and drop the distinction.
|
||||
|
||||
|
|
@ -140,7 +140,7 @@ Note that raising the inbox's priority (Rule 7) deliberately does **not** widen
|
|||
|
||||
## Development
|
||||
|
||||
bash scripts/coord-selftest.sh # 182 checks against a throwaway mailbox
|
||||
bash scripts/coord-selftest.sh # 183 checks against a throwaway mailbox
|
||||
bash scripts/board-selftest.sh # 36 checks against a throwaway repo tree
|
||||
bash scripts/route-selftest.sh # 73 checks, incl. the route->board round trip
|
||||
npm test # all three selftests via node --test
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue