docs: update failure-path coverage status

This commit is contained in:
nav
2026-04-09 03:02:40 +00:00
parent 6f164db7f8
commit 8c9307f061
4 changed files with 19 additions and 6 deletions

View File

@@ -65,9 +65,9 @@ This document defines the systematic test coverage for pairing and authenticatio
| CF-02 | Server unreachable | Initial connect fails | Exponential backoff retry | ⬜ |
| CF-03 | Duplicate connection | Same ID connects twice | Old connection closed, new accepted | ✅ |
| CF-04 | Protocol version mismatch | Unsupported version | Connection rejected with error | ✅ |
| CF-05 | Malformed hello | Invalid JSON | Error response, connection maintained | |
| CF-05 | Malformed hello | Invalid payload / missing required hello fields | Error response, connection maintained | |
| CF-06 | Unauthenticated rule message | Client sends before auth | Connection closed | ✅ |
| CF-07 | Reserved rule registration | Plugin tries `registerRule("builtin")` | Registration rejected | |
| CF-07 | Reserved rule registration | Plugin tries `registerRule("builtin")` | Registration rejected | |
---
@@ -89,7 +89,7 @@ This document defines the systematic test coverage for pairing and authenticatio
| SR-01 | Server restart with pending pairing | Pairing in progress | Preserve pairing state, code valid | ✅ |
| SR-02 | Server restart with active sessions | Online clients | All marked offline, reconnect required | ⬜ |
| SR-03 | Client restart with credentials | Has secret + keys | Resume with auth, no re-pairing | ✅ |
| SR-04 | Client restart without credentials | First run | Full pairing flow required | |
| SR-04 | Client restart without credentials | First run | Full pairing flow required | |
| SR-05 | Corrupted server store | File unreadable | Surface corruption error clearly for operator handling | ✅ |
| SR-06 | Corrupted client state | File unreadable | Surface corruption error clearly for operator handling | ✅ |
@@ -134,7 +134,7 @@ npm test -- failure-paths
- AF-04 (`invalid_secret`) 仍未单独覆盖:现有实现把“错误 secret 导致的验签失败”统一落到 `invalid_signature`,是否拆分错误码仍待确认。
- RP-04key rotation当前仍视为 v2+ 议题v1 尚未承诺“无重配对换 key”语义因此暂不强行补测试。
- 本轮已补齐 AF-01/02/03/05/06/09/10/11、RP-01/02、CF-03/04、HF-01/02、PF-09、SR-01/03/05/06。
- 本轮已补齐 AF-01/02/03/05/06/09/10/11、RP-01/02、CF-03/04/05/07、HF-01/02、PF-09、SR-01/03/04/05/06。
### Adding New Test Cases