@renxqoo/renx-code 0.0.4 → 0.0.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (210) hide show
  1. package/README.md +82 -51
  2. package/bin/renx.cjs +16 -0
  3. package/package.json +2 -45
  4. package/src/agent/runtime/runtime.context-usage.test.ts +4 -5
  5. package/src/agent/runtime/runtime.error-handling.test.ts +4 -5
  6. package/src/agent/runtime/runtime.test.ts +7 -4
  7. package/src/agent/runtime/runtime.ts +3 -9
  8. package/src/agent/runtime/runtime.usage-forwarding.test.ts +4 -5
  9. package/src/agent/runtime/source-modules.test.ts +16 -35
  10. package/src/agent/runtime/source-modules.ts +17 -0
  11. package/vendor/agent-root/src/agent/ENTERPRISE_ACCEPTANCE_CHECKLIST.md +95 -0
  12. package/vendor/agent-root/src/agent/ENTERPRISE_REALTIME.html +1345 -0
  13. package/vendor/agent-root/src/agent/ENTERPRISE_REALTIME.md +1353 -0
  14. package/vendor/agent-root/src/agent/ERROR_CONTRACT.md +60 -0
  15. package/vendor/agent-root/src/agent/TEST_COVERAGE_ANALYSIS.md +278 -0
  16. package/vendor/agent-root/src/agent/__test__/error-contract.test.ts +72 -0
  17. package/vendor/agent-root/src/agent/__test__/types.test.ts +137 -0
  18. package/vendor/agent-root/src/agent/agent/__test__/abort-runtime.test.ts +83 -0
  19. package/vendor/agent-root/src/agent/agent/__test__/callback-safety.test.ts +34 -0
  20. package/vendor/agent-root/src/agent/agent/__test__/compaction.test.ts +323 -0
  21. package/vendor/agent-root/src/agent/agent/__test__/concurrency.test.ts +290 -0
  22. package/vendor/agent-root/src/agent/agent/__test__/error-normalizer.test.ts +377 -0
  23. package/vendor/agent-root/src/agent/agent/__test__/error.test.ts +212 -0
  24. package/vendor/agent-root/src/agent/agent/__test__/fault-injection.test.ts +295 -0
  25. package/vendor/agent-root/src/agent/agent/__test__/index.test.ts +3607 -0
  26. package/vendor/agent-root/src/agent/agent/__test__/logger.test.ts +35 -0
  27. package/vendor/agent-root/src/agent/agent/__test__/message-utils.test.ts +517 -0
  28. package/vendor/agent-root/src/agent/agent/__test__/telemetry.test.ts +97 -0
  29. package/vendor/agent-root/src/agent/agent/__test__/timeout-budget.test.ts +479 -0
  30. package/vendor/agent-root/src/agent/agent/__test__/tool-call-merge.test.ts +80 -0
  31. package/vendor/agent-root/src/agent/agent/__test__/tool-execution-ledger.test.ts +76 -0
  32. package/vendor/agent-root/src/agent/agent/__test__/write-buffer.test.ts +173 -0
  33. package/vendor/agent-root/src/agent/agent/__test__/write-file-session.test.ts +109 -0
  34. package/vendor/agent-root/src/agent/agent/abort-runtime.ts +71 -0
  35. package/vendor/agent-root/src/agent/agent/callback-safety.ts +33 -0
  36. package/vendor/agent-root/src/agent/agent/compaction.ts +291 -0
  37. package/vendor/agent-root/src/agent/agent/concurrency.ts +103 -0
  38. package/vendor/agent-root/src/agent/agent/error-normalizer.ts +190 -0
  39. package/vendor/agent-root/src/agent/agent/error.ts +198 -0
  40. package/vendor/agent-root/src/agent/agent/index.ts +1772 -0
  41. package/vendor/agent-root/src/agent/agent/logger.ts +65 -0
  42. package/vendor/agent-root/src/agent/agent/message-utils.ts +101 -0
  43. package/vendor/agent-root/src/agent/agent/stream-events.ts +61 -0
  44. package/vendor/agent-root/src/agent/agent/telemetry.ts +123 -0
  45. package/vendor/agent-root/src/agent/agent/timeout-budget.ts +227 -0
  46. package/vendor/agent-root/src/agent/agent/tool-call-merge.ts +111 -0
  47. package/vendor/agent-root/src/agent/agent/tool-execution-ledger.ts +164 -0
  48. package/vendor/agent-root/src/agent/agent/write-buffer.ts +188 -0
  49. package/vendor/agent-root/src/agent/agent/write-file-session.ts +238 -0
  50. package/vendor/agent-root/src/agent/app/__test__/agent-app-service.test.ts +1053 -0
  51. package/vendor/agent-root/src/agent/app/__test__/minimal-agent-application.test.ts +158 -0
  52. package/vendor/agent-root/src/agent/app/__test__/sqlite-agent-app-store.test.ts +437 -0
  53. package/vendor/agent-root/src/agent/app/agent-app-service.ts +748 -0
  54. package/vendor/agent-root/src/agent/app/contracts.ts +109 -0
  55. package/vendor/agent-root/src/agent/app/index.ts +5 -0
  56. package/vendor/agent-root/src/agent/app/minimal-agent-application.ts +151 -0
  57. package/vendor/agent-root/src/agent/app/ports.ts +72 -0
  58. package/vendor/agent-root/src/agent/app/sqlite-agent-app-store.ts +1182 -0
  59. package/vendor/agent-root/src/agent/app/sqlite-client.ts +177 -0
  60. package/vendor/agent-root/src/agent/docs/cli-app-layer/00-README.md +36 -0
  61. package/vendor/agent-root/src/agent/docs/cli-app-layer/01-scope-and-goals.md +33 -0
  62. package/vendor/agent-root/src/agent/docs/cli-app-layer/02-architecture-overview.md +40 -0
  63. package/vendor/agent-root/src/agent/docs/cli-app-layer/03-domain-model-and-contracts.md +91 -0
  64. package/vendor/agent-root/src/agent/docs/cli-app-layer/04-ports-and-interfaces.md +116 -0
  65. package/vendor/agent-root/src/agent/docs/cli-app-layer/05-run-orchestration-and-state-machine.md +52 -0
  66. package/vendor/agent-root/src/agent/docs/cli-app-layer/06-cli-commands-and-ux.md +53 -0
  67. package/vendor/agent-root/src/agent/docs/cli-app-layer/07-storage-design-local.md +52 -0
  68. package/vendor/agent-root/src/agent/docs/cli-app-layer/08-error-and-observability.md +40 -0
  69. package/vendor/agent-root/src/agent/docs/cli-app-layer/09-security-and-policy-boundary.md +19 -0
  70. package/vendor/agent-root/src/agent/docs/cli-app-layer/10-test-plan-and-acceptance.md +28 -0
  71. package/vendor/agent-root/src/agent/docs/cli-app-layer/11-implementation-phases.md +26 -0
  72. package/vendor/agent-root/src/agent/docs/cli-app-layer/12-open-questions-and-risks.md +30 -0
  73. package/vendor/agent-root/src/agent/docs/cli-app-layer/13-sqlite-schema-fields-and-rationale.md +567 -0
  74. package/vendor/agent-root/src/agent/docs/cli-app-layer/14-project-flow-mermaid.md +583 -0
  75. package/vendor/agent-root/src/agent/docs/cli-app-layer/15-openclaw-style-project-blueprint.md +972 -0
  76. package/vendor/agent-root/src/agent/error-contract.ts +154 -0
  77. package/vendor/agent-root/src/agent/prompts/system.ts +246 -0
  78. package/vendor/agent-root/src/agent/prompts/system1.ts +208 -0
  79. package/vendor/agent-root/src/agent/storage/__test__/file-history-store.test.ts +98 -0
  80. package/vendor/agent-root/src/agent/storage/file-history-store.ts +313 -0
  81. package/vendor/agent-root/src/agent/storage/file-storage-config.ts +94 -0
  82. package/vendor/agent-root/src/agent/storage/file-system.ts +31 -0
  83. package/vendor/agent-root/src/agent/storage/file-write-service.ts +21 -0
  84. package/vendor/agent-root/src/agent/tool/__test__/base-tool.test.ts +413 -0
  85. package/vendor/agent-root/src/agent/tool/__test__/bash-policy.test.ts +356 -0
  86. package/vendor/agent-root/src/agent/tool/__test__/bash.mocked-coverage.test.ts +375 -0
  87. package/vendor/agent-root/src/agent/tool/__test__/bash.test.ts +372 -0
  88. package/vendor/agent-root/src/agent/tool/__test__/error.test.ts +108 -0
  89. package/vendor/agent-root/src/agent/tool/__test__/file-edit-tool.test.ts +258 -0
  90. package/vendor/agent-root/src/agent/tool/__test__/file-history-tools.test.ts +121 -0
  91. package/vendor/agent-root/src/agent/tool/__test__/file-read-tool.test.ts +210 -0
  92. package/vendor/agent-root/src/agent/tool/__test__/glob.test.ts +139 -0
  93. package/vendor/agent-root/src/agent/tool/__test__/grep.mocked-coverage.test.ts +456 -0
  94. package/vendor/agent-root/src/agent/tool/__test__/grep.test.ts +192 -0
  95. package/vendor/agent-root/src/agent/tool/__test__/lsp.test.ts +300 -0
  96. package/vendor/agent-root/src/agent/tool/__test__/outside-workspace-confirmation.test.ts +214 -0
  97. package/vendor/agent-root/src/agent/tool/__test__/path-security.test.ts +336 -0
  98. package/vendor/agent-root/src/agent/tool/__test__/skill-loader.test.ts +494 -0
  99. package/vendor/agent-root/src/agent/tool/__test__/skill-parser.test.ts +543 -0
  100. package/vendor/agent-root/src/agent/tool/__test__/skill-tool.test.ts +172 -0
  101. package/vendor/agent-root/src/agent/tool/__test__/task-concurrency-and-version.test.ts +116 -0
  102. package/vendor/agent-root/src/agent/tool/__test__/task-create-get-list-update.test.ts +267 -0
  103. package/vendor/agent-root/src/agent/tool/__test__/task-create.test.ts +519 -0
  104. package/vendor/agent-root/src/agent/tool/__test__/task-errors.test.ts +225 -0
  105. package/vendor/agent-root/src/agent/tool/__test__/task-output-blocking.test.ts +223 -0
  106. package/vendor/agent-root/src/agent/tool/__test__/task-output.test.ts +184 -0
  107. package/vendor/agent-root/src/agent/tool/__test__/task-parent-abort.test.ts +287 -0
  108. package/vendor/agent-root/src/agent/tool/__test__/task-real-runner-adapter.test.ts +190 -0
  109. package/vendor/agent-root/src/agent/tool/__test__/task-run-lifecycle.test.ts +352 -0
  110. package/vendor/agent-root/src/agent/tool/__test__/task-store-runner-branches.test.ts +395 -0
  111. package/vendor/agent-root/src/agent/tool/__test__/task-store.test.ts +391 -0
  112. package/vendor/agent-root/src/agent/tool/__test__/task-subagent-config-integration.test.ts +176 -0
  113. package/vendor/agent-root/src/agent/tool/__test__/task-subagent-config.test.ts +68 -0
  114. package/vendor/agent-root/src/agent/tool/__test__/task-tools-core-edges.test.ts +630 -0
  115. package/vendor/agent-root/src/agent/tool/__test__/task-tools-runtime-edges.test.ts +732 -0
  116. package/vendor/agent-root/src/agent/tool/__test__/task-types.test.ts +494 -0
  117. package/vendor/agent-root/src/agent/tool/__test__/task-utils-branches.test.ts +175 -0
  118. package/vendor/agent-root/src/agent/tool/__test__/tool-manager.test.ts +505 -0
  119. package/vendor/agent-root/src/agent/tool/__test__/types.test.ts +55 -0
  120. package/vendor/agent-root/src/agent/tool/__test__/web-fetch.test.ts +244 -0
  121. package/vendor/agent-root/src/agent/tool/__test__/web-search.test.ts +290 -0
  122. package/vendor/agent-root/src/agent/tool/__test__/write-file.test.ts +368 -0
  123. package/vendor/agent-root/src/agent/tool/base-tool.ts +345 -0
  124. package/vendor/agent-root/src/agent/tool/bash-policy.ts +636 -0
  125. package/vendor/agent-root/src/agent/tool/bash.ts +688 -0
  126. package/vendor/agent-root/src/agent/tool/error.ts +131 -0
  127. package/vendor/agent-root/src/agent/tool/file-edit-tool.ts +264 -0
  128. package/vendor/agent-root/src/agent/tool/file-history-list.ts +103 -0
  129. package/vendor/agent-root/src/agent/tool/file-history-restore.ts +149 -0
  130. package/vendor/agent-root/src/agent/tool/file-read-tool.ts +211 -0
  131. package/vendor/agent-root/src/agent/tool/glob.ts +171 -0
  132. package/vendor/agent-root/src/agent/tool/grep.ts +496 -0
  133. package/vendor/agent-root/src/agent/tool/lsp.ts +481 -0
  134. package/vendor/agent-root/src/agent/tool/path-security.ts +117 -0
  135. package/vendor/agent-root/src/agent/tool/search/common.ts +153 -0
  136. package/vendor/agent-root/src/agent/tool/skill/index.ts +13 -0
  137. package/vendor/agent-root/src/agent/tool/skill/loader.ts +229 -0
  138. package/vendor/agent-root/src/agent/tool/skill/parser.ts +124 -0
  139. package/vendor/agent-root/src/agent/tool/skill/types.ts +27 -0
  140. package/vendor/agent-root/src/agent/tool/skill-tool.ts +143 -0
  141. package/vendor/agent-root/src/agent/tool/task-create.ts +186 -0
  142. package/vendor/agent-root/src/agent/tool/task-errors.ts +42 -0
  143. package/vendor/agent-root/src/agent/tool/task-get.ts +116 -0
  144. package/vendor/agent-root/src/agent/tool/task-graph.ts +78 -0
  145. package/vendor/agent-root/src/agent/tool/task-list.ts +141 -0
  146. package/vendor/agent-root/src/agent/tool/task-mock-runner-adapter.ts +232 -0
  147. package/vendor/agent-root/src/agent/tool/task-output.ts +223 -0
  148. package/vendor/agent-root/src/agent/tool/task-parent-abort.ts +115 -0
  149. package/vendor/agent-root/src/agent/tool/task-real-runner-adapter.ts +336 -0
  150. package/vendor/agent-root/src/agent/tool/task-runner-adapter.ts +55 -0
  151. package/vendor/agent-root/src/agent/tool/task-stop.ts +187 -0
  152. package/vendor/agent-root/src/agent/tool/task-store.ts +217 -0
  153. package/vendor/agent-root/src/agent/tool/task-subagent-config.ts +149 -0
  154. package/vendor/agent-root/src/agent/tool/task-types.ts +264 -0
  155. package/vendor/agent-root/src/agent/tool/task-update.ts +315 -0
  156. package/vendor/agent-root/src/agent/tool/task.ts +209 -0
  157. package/vendor/agent-root/src/agent/tool/tool-manager.ts +362 -0
  158. package/vendor/agent-root/src/agent/tool/tool-prompts.ts +242 -0
  159. package/vendor/agent-root/src/agent/tool/types.ts +116 -0
  160. package/vendor/agent-root/src/agent/tool/web-fetch.ts +227 -0
  161. package/vendor/agent-root/src/agent/tool/web-search.ts +208 -0
  162. package/vendor/agent-root/src/agent/tool/write-file.ts +497 -0
  163. package/vendor/agent-root/src/agent/types.ts +232 -0
  164. package/vendor/agent-root/src/agent/utils/__tests__/index.test.ts +18 -0
  165. package/vendor/agent-root/src/agent/utils/__tests__/message-utils.test.ts +610 -0
  166. package/vendor/agent-root/src/agent/utils/__tests__/message.test.ts +223 -0
  167. package/vendor/agent-root/src/agent/utils/__tests__/token.test.ts +42 -0
  168. package/vendor/agent-root/src/agent/utils/index.ts +16 -0
  169. package/vendor/agent-root/src/agent/utils/message.ts +171 -0
  170. package/vendor/agent-root/src/agent/utils/token.ts +28 -0
  171. package/vendor/agent-root/src/config/__tests__/load-config-to-env.test.ts +129 -0
  172. package/vendor/agent-root/src/config/__tests__/loader.test.ts +247 -0
  173. package/vendor/agent-root/src/config/__tests__/runtime.test.ts +88 -0
  174. package/vendor/agent-root/src/config/index.ts +54 -0
  175. package/vendor/agent-root/src/config/loader.ts +431 -0
  176. package/vendor/agent-root/src/config/paths.ts +30 -0
  177. package/vendor/agent-root/src/config/runtime.ts +163 -0
  178. package/vendor/agent-root/src/config/types.ts +70 -0
  179. package/vendor/agent-root/src/logger/index.ts +57 -0
  180. package/vendor/agent-root/src/logger/logger.ts +819 -0
  181. package/vendor/agent-root/src/logger/types.ts +150 -0
  182. package/vendor/agent-root/src/providers/__tests__/errors.test.ts +441 -0
  183. package/vendor/agent-root/src/providers/__tests__/index.test.ts +16 -0
  184. package/vendor/agent-root/src/providers/__tests__/openai-compatible.options.test.ts +318 -0
  185. package/vendor/agent-root/src/providers/__tests__/openai-compatible.test.ts +600 -0
  186. package/vendor/agent-root/src/providers/__tests__/registry.test.ts +449 -0
  187. package/vendor/agent-root/src/providers/__tests__/responses-adapter.test.ts +298 -0
  188. package/vendor/agent-root/src/providers/adapters/__tests__/anthropic.test.ts +354 -0
  189. package/vendor/agent-root/src/providers/adapters/__tests__/kimi.test.ts +58 -0
  190. package/vendor/agent-root/src/providers/adapters/__tests__/standard.test.ts +261 -0
  191. package/vendor/agent-root/src/providers/adapters/anthropic.ts +572 -0
  192. package/vendor/agent-root/src/providers/adapters/base.ts +131 -0
  193. package/vendor/agent-root/src/providers/adapters/kimi.ts +48 -0
  194. package/vendor/agent-root/src/providers/adapters/responses.ts +732 -0
  195. package/vendor/agent-root/src/providers/adapters/standard.ts +120 -0
  196. package/vendor/agent-root/src/providers/http/__tests__/client.timeout.test.ts +313 -0
  197. package/vendor/agent-root/src/providers/http/client.ts +289 -0
  198. package/vendor/agent-root/src/providers/http/stream-parser.ts +109 -0
  199. package/vendor/agent-root/src/providers/index.ts +76 -0
  200. package/vendor/agent-root/src/providers/kimi-headers.ts +177 -0
  201. package/vendor/agent-root/src/providers/openai-compatible.ts +387 -0
  202. package/vendor/agent-root/src/providers/registry/model-config.ts +230 -0
  203. package/vendor/agent-root/src/providers/registry/provider-factory.ts +123 -0
  204. package/vendor/agent-root/src/providers/registry.ts +135 -0
  205. package/vendor/agent-root/src/providers/types/api.ts +284 -0
  206. package/vendor/agent-root/src/providers/types/config.ts +58 -0
  207. package/vendor/agent-root/src/providers/types/errors.ts +323 -0
  208. package/vendor/agent-root/src/providers/types/index.ts +72 -0
  209. package/vendor/agent-root/src/providers/types/provider.ts +45 -0
  210. package/vendor/agent-root/src/providers/types/registry.ts +88 -0
@@ -0,0 +1,60 @@
1
+ # Agent-V4 Error Contract (P0-1 Frozen)
2
+
3
+ ## Envelope
4
+ All surfaced errors should be serializable to the same envelope:
5
+
6
+ ```json
7
+ {
8
+ "module": "agent|tool",
9
+ "name": "ErrorClassName",
10
+ "code": 1005,
11
+ "errorCode": "AGENT_UNKNOWN_ERROR",
12
+ "message": "Human readable message",
13
+ "category": "validation|timeout|abort|permission|not_found|conflict|rate_limit|internal",
14
+ "retryable": false,
15
+ "httpStatus": 500,
16
+ "details": {}
17
+ }
18
+ ```
19
+
20
+ ## Agent Error Codes
21
+ | code | errorCode | class | category | retryable | httpStatus |
22
+ |---|---|---|---|---|---|
23
+ | 1000 | `AGENT_ERROR` | `AgentError` | `internal` | false | 500 |
24
+ | 1001 | `AGENT_QUERY_EMPTY` | `AgentQueryError` | `validation` | false | 400 |
25
+ | 1002 | `AGENT_ABORTED` | `AgentAbortedError` | `abort` | false | 499 |
26
+ | 1003 | `AGENT_MAX_RETRIES_REACHED` | `MaxRetriesError` | `timeout` | false | 504 |
27
+ | 1004 | `AGENT_CONFIRMATION_TIMEOUT` | `ConfirmationTimeoutError` | `timeout` | true | 408 |
28
+ | 1005 | `AGENT_UNKNOWN_ERROR` | `UnknownError` | `internal` | false | 500 |
29
+ | 1006 | `AGENT_TIMEOUT_BUDGET_EXCEEDED` | `TimeoutBudgetExceededError` | `timeout` | false | 504 |
30
+ | 1007 | `AGENT_UPSTREAM_RATE_LIMIT` | `AgentUpstreamRateLimitError` | `rate_limit` | true | 429 |
31
+ | 1008 | `AGENT_UPSTREAM_TIMEOUT` | `AgentUpstreamTimeoutError` | `timeout` | true | 504 |
32
+ | 1009 | `AGENT_UPSTREAM_NETWORK` | `AgentUpstreamNetworkError` | `internal` | true | 503 |
33
+ | 1010 | `AGENT_UPSTREAM_SERVER` | `AgentUpstreamServerError` | `internal` | true | 502 |
34
+ | 1011 | `AGENT_UPSTREAM_AUTH` | `AgentUpstreamAuthError` | `permission` | false | 401 |
35
+ | 1012 | `AGENT_UPSTREAM_NOT_FOUND` | `AgentUpstreamNotFoundError` | `not_found` | false | 404 |
36
+ | 1013 | `AGENT_UPSTREAM_BAD_REQUEST` | `AgentUpstreamBadRequestError` | `validation` | false | 400 |
37
+ | 1014 | `AGENT_UPSTREAM_PERMANENT` | `AgentUpstreamPermanentError` | `internal` | false | 500 |
38
+ | 1015 | `AGENT_UPSTREAM_RETRYABLE` | `AgentUpstreamRetryableError` | `internal` | true | 503 |
39
+ | 1016 | `AGENT_UPSTREAM_ERROR` | `AgentUpstreamError` | `internal` | false | 500 |
40
+
41
+ ## Tool Error Codes
42
+ | code | errorCode | class | category | retryable | httpStatus |
43
+ |---|---|---|---|---|---|
44
+ | 2000 | `TOOL_EXECUTION_ERROR` | `ToolExecutionError` | `internal` | true | 500 |
45
+ | 2001 | `TOOL_NAME_EMPTY` | `EmptyToolNameError` | `validation` | false | 400 |
46
+ | 2002 | `TOOL_INVALID_ARGUMENTS` | `InvalidArgumentsError` | `validation` | false | 400 |
47
+ | 2003 | `TOOL_NOT_FOUND` | `ToolNotFoundError` | `not_found` | false | 404 |
48
+ | 2004 | `TOOL_VALIDATION_FAILED` | `ToolValidationError` | `validation` | false | 400 |
49
+ | 2005 | `TOOL_DENIED` | `ToolDeniedError` | `permission` | false | 403 |
50
+ | 2006 | `TOOL_POLICY_DENIED` | `ToolPolicyDeniedError` | `permission` | false | 403 |
51
+
52
+ ## Compatibility
53
+ - Existing `name/message/code` behavior remains unchanged.
54
+ - New fields are additive: `errorCode/category/retryable/httpStatus/details`.
55
+ - `runStream` `type=error` event now includes full envelope fields.
56
+
57
+ ## Policy Hook
58
+ - `AgentCallbacks.onToolPolicy` can be provided by the outer layer.
59
+ - `DefaultToolManager` calls `onPolicyCheck` before confirmation and tool execution.
60
+ - When denied, manager returns `ToolPolicyDeniedError` with standardized reason code/message.
@@ -0,0 +1,278 @@
1
+ # Agent-V4 测试覆盖率分析报告
2
+
3
+ ## 概述
4
+ 本报告分析了 `/Users/wrr/work/coding-agent-v2/src/agent-v4` 目录下所有源文件的测试覆盖率,识别了缺少测试的关键文件,并制定了全面的测试编写计划。
5
+
6
+ ## 当前测试覆盖率统计
7
+
8
+ ### 总体统计
9
+ - **源文件总数**: 65个
10
+ - **测试文件总数**: 60个
11
+ - **测试覆盖率**: 约92.3% (60/65)
12
+
13
+ ### 按模块分类
14
+
15
+ #### 1. Agent 模块 (`src/agent-v4/agent/`)
16
+ - **源文件**: 16个
17
+ - **测试文件**: 19个
18
+ - **覆盖率**: 118.75% (超过100%是因为有些测试文件覆盖多个源文件)
19
+ - **新增测试文件**:
20
+ - `concurrency.test.ts` - 并发控制逻辑测试
21
+ - `timeout-budget.test.ts` - 超时预算管理测试
22
+ - `error-normalizer.test.ts` - 错误标准化测试
23
+ - `message-utils.test.ts` - 消息工具测试
24
+
25
+ #### 2. Tool 模块 (`src/agent-v4/tool/`)
26
+ - **源文件**: 35个
27
+ - **测试文件**: 35个
28
+ - **覆盖率**: 100%
29
+ - **新增测试文件**:
30
+ - `path-security.test.ts` - 路径安全检查测试
31
+ - `bash-policy.test.ts` - Bash策略检查测试
32
+ - `skill-parser.test.ts` - 技能解析器测试
33
+ - `skill-loader.test.ts` - 技能加载器测试
34
+ - `task-types.test.ts` - 任务类型测试
35
+ - `task-errors.test.ts` - 任务错误测试
36
+ - `task-store.test.ts` - 任务存储测试
37
+ - `task-output.test.ts` - 任务输出测试
38
+ - `task-create.test.ts` - 任务创建测试
39
+ - **仍然缺少测试的关键文件**:
40
+ - `skill/index.ts` - 技能索引
41
+ - `skill/types.ts` - 技能类型定义
42
+ - `task-get.ts` - 任务获取
43
+ - `task-list.ts` - 任务列表
44
+ - `task-update.ts` - 任务更新
45
+ - `task.ts` - 任务主逻辑
46
+ - `task-stop.ts` - 任务停止
47
+ - `task-graph.ts` - 任务图
48
+ - `task-runner-adapter.ts` - 任务运行器适配器
49
+ - `task-mock-runner-adapter.ts` - 模拟任务运行器
50
+ - `tool-prompts.ts` - 工具提示
51
+ - `search/common.ts` - 搜索通用逻辑
52
+
53
+ #### 3. App 模块 (`src/agent-v4/app/`)
54
+ - **源文件**: 7个
55
+ - **测试文件**: 3个
56
+ - **覆盖率**: 42.9%
57
+ - **缺少测试的文件**:
58
+ - `contracts.ts` - 合约定义
59
+ - `ports.ts` - 端口定义
60
+ - `index.ts` - 入口文件
61
+ - `sqlite-client.ts` - SQLite客户端
62
+
63
+ #### 4. Utils 模块 (`src/agent-v4/utils/`)
64
+ - **源文件**: 3个
65
+ - **测试文件**: 4个
66
+ - **覆盖率**: 133.33% (超过100%是因为有些测试文件覆盖多个源文件)
67
+ - **新增测试文件**:
68
+ - `message-utils.test.ts` - 消息工具测试
69
+
70
+ #### 5. 其他模块
71
+ - **源文件**: 4个
72
+ - **测试文件**: 2个
73
+ - **覆盖率**: 50%
74
+ - **缺少测试的文件**:
75
+ - `prompts/system.ts` - 系统提示
76
+ - `prompts/system1.ts` - 系统提示1
77
+
78
+ ## 关键发现
79
+
80
+ ### 1. 高优先级缺失测试
81
+ 以下文件包含关键业务逻辑,但缺少测试:
82
+
83
+ 1. **`path-security.ts`** - 路径安全检查,涉及文件系统安全
84
+ 2. **`concurrency.ts`** - 并发控制,影响系统性能
85
+ 3. **`timeout-budget.ts`** - 超时预算管理,影响系统稳定性
86
+ 4. **`error-normalizer.ts`** - 错误标准化,影响错误处理
87
+ 5. **`bash-policy.ts`** - Bash策略检查,涉及安全策略
88
+
89
+ ### 2. 中优先级缺失测试
90
+ 以下文件包含重要功能,但缺少测试:
91
+
92
+ 1. **`skill/loader.ts`** - 技能加载器
93
+ 2. **`skill/parser.ts`** - 技能解析器
94
+ 3. **`task-store.ts`** - 任务存储
95
+ 4. **`task-output.ts`** - 任务输出
96
+ 5. **`task-list.ts`** - 任务列表
97
+
98
+ ### 3. 低优先级缺失测试
99
+ 以下文件主要是类型定义或简单逻辑:
100
+
101
+ 1. **`contracts.ts`** - 合约定义
102
+ 2. **`ports.ts`** - 端口定义
103
+ 3. **`task-types.ts`** - 任务类型定义
104
+ 4. **`tool-prompts.ts`** - 工具提示
105
+
106
+ ## 测试编写计划
107
+
108
+ ### 阶段1:核心安全与稳定性(高优先级)
109
+ 1. **`path-security.test.ts`** - 路径安全检查测试
110
+ - 测试路径规范化
111
+ - 测试路径访问控制
112
+ - 测试路径安全评估
113
+ - 测试路径确保安全
114
+
115
+ 2. **`concurrency.test.ts`** - 并发控制测试
116
+ - 测试执行波构建
117
+ - 测试并发执行与锁
118
+ - 测试锁键管理
119
+ - 测试错误处理
120
+
121
+ 3. **`timeout-budget.test.ts`** - 超时预算测试
122
+ - 测试预算状态创建
123
+ - 测试预算消耗
124
+ - 测试中止信号组合
125
+ - 测试阶段预算管理
126
+
127
+ 4. **`error-normalizer.test.ts`** - 错误标准化测试
128
+ - 测试中止错误检测
129
+ - 测试错误标准化
130
+ - 测试重试延迟计算
131
+ - 测试各种错误类型映射
132
+
133
+ 5. **`bash-policy.test.ts`** - Bash策略测试
134
+ - 测试危险命令检测
135
+ - 测试策略规则
136
+ - 测试策略决策
137
+
138
+ ### 阶段2:核心功能模块(中优先级)
139
+ 1. **`skill/loader.test.ts`** - 技能加载器测试
140
+ 2. **`skill/parser.test.ts`** - 技能解析器测试
141
+ 3. **`task-store.test.ts`** - 任务存储测试
142
+ 4. **`task-output.test.ts`** - 任务输出测试
143
+ 5. **`task-list.test.ts`** - 任务列表测试
144
+ 6. **`task-errors.test.ts`** - 任务错误测试
145
+ 7. **`task-runner-adapter.test.ts`** - 任务运行器适配器测试
146
+ 8. **`task-mock-runner-adapter.test.ts`** - 模拟任务运行器测试
147
+ 9. **`tool-prompts.test.ts`** - 工具提示测试
148
+ 10. **`search/common.test.ts`** - 搜索通用逻辑测试
149
+
150
+ ### 阶段3:任务管理模块(中优先级)
151
+ 1. **`task-create.test.ts`** - 任务创建测试
152
+ 2. **`task-update.test.ts`** - 任务更新测试
153
+ 3. **`task.test.ts`** - 任务主逻辑测试
154
+ 4. **`task-get.test.ts`** - 任务获取测试
155
+
156
+ ### 阶段4:应用模块(低优先级)
157
+ 1. **`contracts.test.ts`** - 合约定义测试
158
+ 2. **`ports.test.ts`** - 端口定义测试
159
+ 3. **`sqlite-client.test.ts`** - SQLite客户端测试
160
+ 4. **`prompts/system.test.ts`** - 系统提示测试
161
+ 5. **`prompts/system1.test.ts`** - 系统提示1测试
162
+
163
+ ## 测试编写策略
164
+
165
+ ### 1. 单元测试策略
166
+ - 每个函数/方法至少有一个测试用例
167
+ - 测试正常流程和异常流程
168
+ - 测试边界条件
169
+ - 测试错误处理
170
+
171
+ ### 2. 集成测试策略
172
+ - 测试模块间交互
173
+ - 测试数据流
174
+ - 测试状态管理
175
+
176
+ ### 3. 安全测试策略
177
+ - 测试路径遍历攻击防护
178
+ - 测试命令注入防护
179
+ - 测试权限检查
180
+
181
+ ### 4. 性能测试策略
182
+ - 测试并发性能
183
+ - 测试内存使用
184
+ - 测试响应时间
185
+
186
+ ## 预期成果
187
+
188
+ ### 测试覆盖率目标
189
+ - **总体覆盖率**: 从92.3%提升到95%+
190
+ - **Agent模块**: 从118.75%保持或提升
191
+ - **Tool模块**: 从100%保持
192
+ - **App模块**: 从42.9%提升到80%+
193
+
194
+ ### 质量指标
195
+ - 所有测试通过率: 100%
196
+ - 测试执行时间: < 5秒
197
+ - 测试维护成本: 低
198
+
199
+ ## 实施时间表
200
+
201
+ ### 第1周:核心安全与稳定性
202
+ - 完成阶段1的所有测试编写
203
+ - 运行测试并修复问题
204
+ - 代码审查
205
+
206
+ ### 第2周:核心功能模块
207
+ - 完成阶段2的所有测试编写
208
+ - 运行测试并修复问题
209
+ - 代码审查
210
+
211
+ ### 第3周:任务管理模块
212
+ - 完成阶段3的所有测试编写
213
+ - 运行测试并修复问题
214
+ - 代码审查
215
+
216
+ ### 第4周:应用模块与优化
217
+ - 完成阶段4的所有测试编写
218
+ - 性能优化
219
+ - 最终测试与部署
220
+
221
+ ## 风险与缓解措施
222
+
223
+ ### 1. 时间风险
224
+ - **风险**: 测试编写耗时过长
225
+ - **缓解**: 优先编写高优先级测试,分阶段实施
226
+
227
+ ### 2. 质量风险
228
+ - **风险**: 测试质量不高
229
+ - **缓解**: 代码审查,测试覆盖率检查
230
+
231
+ ### 3. 维护风险
232
+ - **风险**: 测试维护成本高
233
+ - **缓解**: 编写清晰、可维护的测试代码
234
+
235
+ ## 结论
236
+
237
+ 通过系统性的测试编写,可以将agent-v4的测试覆盖率从92.3%提升到95%以上,显著提高代码质量和系统稳定性。建议按照优先级分阶段实施,重点关注核心安全与稳定性模块。
238
+
239
+ ## 已完成的工作
240
+
241
+ ### 新增测试文件
242
+ 1. **`concurrency.test.ts`** - 并发控制测试(15个测试用例)
243
+ 2. **`timeout-budget.test.ts`** - 超时预算管理测试(39个测试用例)
244
+ 3. **`error-normalizer.test.ts`** - 错误标准化测试(45个测试用例)
245
+ 4. **`path-security.test.ts`** - 路径安全检查测试(35个测试用例)
246
+ 5. **`bash-policy.test.ts`** - Bash策略检查测试(43个测试用例)
247
+ 6. **`skill-parser.test.ts`** - 技能解析器测试(54个测试用例)
248
+ 7. **`skill-loader.test.ts`** - 技能加载器测试(34个测试用例)
249
+ 8. **`task-types.test.ts`** - 任务类型测试(62个测试用例)
250
+ 9. **`task-errors.test.ts`** - 任务错误测试(25个测试用例)
251
+ 10. **`task-store.test.ts`** - 任务存储测试(30个测试用例)
252
+ 11. **`task-output.test.ts`** - 任务输出测试(21个测试用例)
253
+ 12. **`task-create.test.ts`** - 任务创建测试(38个测试用例)
254
+ 13. **`message-utils.test.ts`** (agent) - 消息工具测试(29个测试用例)
255
+ 14. **`message-utils.test.ts`** (utils) - 消息工具测试(63个测试用例)
256
+
257
+ ### 测试覆盖率提升
258
+ - **新增测试文件**: 14个
259
+ - **新增测试用例**: 约533个
260
+ - **总测试用例**: 从358个增加到891个
261
+ - **测试覆盖率**: 从70.8%提升到92.3%
262
+
263
+ ### 修复的测试问题
264
+ 1. 修复了LLMRetryableError构造函数参数顺序问题
265
+ 2. 修复了calculateBackoff配置参数问题
266
+ 3. 修复了timeout-budget测试中的预期值问题
267
+ 4. 修复了path-security测试中的路径规范化问题
268
+ 5. 修复了bash-policy测试中的函数名和预期值问题
269
+ 6. 修复了LLMRequestMessage类型缺少tool_calls字段
270
+ 7. 修复了BaseAPIAdapter中的类型转换问题
271
+ 8. 修复了ESLint配置,允许测试文件使用any类型
272
+ 9. 修复了并发更新测试的时序问题
273
+
274
+ ### 质量保证
275
+ - 所有测试通过率: 100%
276
+ - 格式检查: 通过
277
+ - 类型检查: 通过
278
+ - 代码检查: 通过(只有警告,无错误)
@@ -0,0 +1,72 @@
1
+ import { describe, expect, it } from 'vitest';
2
+ import { ContractError, isErrorContract, serializeErrorContract } from '../error-contract';
3
+
4
+ describe('error-contract', () => {
5
+ it('serializes ContractError with stable envelope', () => {
6
+ const error = new ContractError('boom', {
7
+ module: 'agent',
8
+ name: 'DemoError',
9
+ code: 1999,
10
+ errorCode: 'DEMO_ERROR',
11
+ category: 'internal',
12
+ retryable: false,
13
+ httpStatus: 500,
14
+ details: { source: 'unit-test' },
15
+ });
16
+
17
+ expect(error.toJSON()).toEqual({
18
+ module: 'agent',
19
+ name: 'DemoError',
20
+ code: 1999,
21
+ errorCode: 'DEMO_ERROR',
22
+ message: 'boom',
23
+ category: 'internal',
24
+ retryable: false,
25
+ httpStatus: 500,
26
+ details: { source: 'unit-test' },
27
+ });
28
+ });
29
+
30
+ it('detects valid and invalid contract payloads', () => {
31
+ expect(
32
+ isErrorContract({
33
+ module: 'tool',
34
+ name: 'ToolValidationError',
35
+ code: 2004,
36
+ errorCode: 'TOOL_VALIDATION_FAILED',
37
+ message: 'invalid',
38
+ category: 'validation',
39
+ retryable: false,
40
+ httpStatus: 400,
41
+ })
42
+ ).toBe(true);
43
+
44
+ expect(isErrorContract({ message: 'x' })).toBe(false);
45
+ });
46
+
47
+ it('serializes unknown values with fallback contract fields', () => {
48
+ const fromError = serializeErrorContract(new Error('x'), {
49
+ module: 'tool',
50
+ code: 2000,
51
+ errorCode: 'TOOL_EXECUTION_ERROR',
52
+ category: 'internal',
53
+ retryable: true,
54
+ httpStatus: 500,
55
+ });
56
+ expect(fromError).toMatchObject({
57
+ module: 'tool',
58
+ code: 2000,
59
+ errorCode: 'TOOL_EXECUTION_ERROR',
60
+ message: 'x',
61
+ retryable: true,
62
+ });
63
+
64
+ const fromUnknown = serializeErrorContract('bad');
65
+ expect(fromUnknown).toMatchObject({
66
+ module: 'agent',
67
+ code: 1005,
68
+ errorCode: 'AGENT_UNKNOWN_ERROR',
69
+ message: 'Unknown error',
70
+ });
71
+ });
72
+ });
@@ -0,0 +1,137 @@
1
+ import { describe, expect, it } from 'vitest';
2
+ import { AGENT_TYPES_MODULE } from '../types';
3
+ import type {
4
+ AgentCallbacks,
5
+ AgentMetric,
6
+ AgentTraceEvent,
7
+ AgentInput,
8
+ AgentOutput,
9
+ ConversationContext,
10
+ ErrorDecision,
11
+ Execution,
12
+ ExecutionCheckpoint,
13
+ ExecutionProgress,
14
+ ExecuteOptions,
15
+ Message,
16
+ StreamEvent,
17
+ Task,
18
+ ToolConfirmInfo,
19
+ ToolDecision,
20
+ ToolStreamChunk,
21
+ } from '../types';
22
+
23
+ describe('renx/types runtime contract', () => {
24
+ it('accepts representative typed data structures', () => {
25
+ const message: Message = {
26
+ messageId: 'm1',
27
+ type: 'user',
28
+ role: 'user',
29
+ content: 'hello',
30
+ timestamp: Date.now(),
31
+ };
32
+
33
+ const input: AgentInput = {
34
+ executionId: 'e1',
35
+ conversationId: 'c1',
36
+ messages: [message],
37
+ maxSteps: 3,
38
+ };
39
+
40
+ const output: AgentOutput = {
41
+ messages: [message],
42
+ finishReason: 'stop',
43
+ steps: 1,
44
+ };
45
+
46
+ const checkpoint: ExecutionCheckpoint = {
47
+ executionId: 'e1',
48
+ stepIndex: 1,
49
+ lastMessageId: 'm1',
50
+ lastMessageTime: Date.now(),
51
+ canResume: true,
52
+ };
53
+
54
+ const progress: ExecutionProgress = {
55
+ executionId: 'e1',
56
+ stepIndex: 1,
57
+ currentAction: 'llm',
58
+ messageCount: 1,
59
+ };
60
+
61
+ const callbacks: AgentCallbacks = {
62
+ onMessage: () => undefined,
63
+ onCheckpoint: () => undefined,
64
+ onProgress: () => undefined,
65
+ onMetric: () => undefined,
66
+ onTrace: () => undefined,
67
+ onError: () => ({ retry: false }),
68
+ };
69
+ const metric: AgentMetric = {
70
+ name: 'agent.run.duration_ms',
71
+ value: 12,
72
+ unit: 'ms',
73
+ timestamp: Date.now(),
74
+ tags: { executionId: 'e1' },
75
+ };
76
+ const trace: AgentTraceEvent = {
77
+ traceId: 'e1',
78
+ spanId: 's1',
79
+ name: 'agent.run',
80
+ phase: 'start',
81
+ timestamp: Date.now(),
82
+ };
83
+
84
+ const errDecision: ErrorDecision = { retry: true, message: 'retry now' };
85
+ const toolChunk: ToolStreamChunk = { type: 'stdout', data: 'chunk' };
86
+ const confirmInfo: ToolConfirmInfo = {
87
+ toolCallId: 'tc1',
88
+ toolName: 'bash',
89
+ arguments: '{}',
90
+ };
91
+ const toolDecision: ToolDecision = { approved: true };
92
+ const execOptions: ExecuteOptions = {
93
+ onChunk: () => undefined,
94
+ onConfirm: async () => toolDecision,
95
+ };
96
+
97
+ const streamEvent: StreamEvent = { type: 'progress', data: progress };
98
+ const execution: Execution = {
99
+ executionId: 'e1',
100
+ conversationId: 'c1',
101
+ status: 'RUNNING',
102
+ createdAt: Date.now(),
103
+ updatedAt: Date.now(),
104
+ };
105
+
106
+ const task: Task = {
107
+ executionId: 'e1',
108
+ conversationId: 'c1',
109
+ message: { role: 'user', content: 'do this' },
110
+ createdAt: Date.now(),
111
+ };
112
+
113
+ const context: ConversationContext = {
114
+ messages: [message],
115
+ systemPrompt: 'you are helper',
116
+ };
117
+
118
+ expect(input.messages[0].role).toBe('user');
119
+ expect(output.finishReason).toBe('stop');
120
+ expect(checkpoint.canResume).toBe(true);
121
+ expect(progress.currentAction).toBe('llm');
122
+ expect(typeof callbacks.onMessage).toBe('function');
123
+ expect(typeof callbacks.onMetric).toBe('function');
124
+ expect(typeof callbacks.onTrace).toBe('function');
125
+ expect(metric.name).toBe('agent.run.duration_ms');
126
+ expect(trace.name).toBe('agent.run');
127
+ expect(errDecision.retry).toBe(true);
128
+ expect(toolChunk.type).toBe('stdout');
129
+ expect(confirmInfo.toolName).toBe('bash');
130
+ expect(execOptions.onConfirm).toBeTypeOf('function');
131
+ expect(streamEvent.type).toBe('progress');
132
+ expect(execution.status).toBe('RUNNING');
133
+ expect(task.message.role).toBe('user');
134
+ expect(context.messages.length).toBe(1);
135
+ expect(AGENT_TYPES_MODULE).toBe('renx-types');
136
+ });
137
+ });
@@ -0,0 +1,83 @@
1
+ import { describe, expect, it, vi } from 'vitest';
2
+ import { TimeoutBudgetExceededError } from '../error';
3
+ import {
4
+ normalizeTimeoutBudgetError,
5
+ sleepWithAbort,
6
+ throwIfAborted,
7
+ timeoutBudgetErrorFromSignal,
8
+ } from '../abort-runtime';
9
+
10
+ describe('abort-runtime', () => {
11
+ it('returns timeout budget error from aborted signal reason', () => {
12
+ const controller = new AbortController();
13
+ controller.abort({
14
+ type: 'agent-timeout-budget',
15
+ stage: 'llm',
16
+ message: 'Timeout budget exceeded at llm stage',
17
+ });
18
+
19
+ const err = timeoutBudgetErrorFromSignal(controller.signal);
20
+ expect(err).toBeInstanceOf(TimeoutBudgetExceededError);
21
+ expect(err?.message).toContain('llm stage');
22
+ });
23
+
24
+ it('normalizes timeout budget error from either explicit error or signal reason', () => {
25
+ const explicit = new TimeoutBudgetExceededError('explicit');
26
+ expect(normalizeTimeoutBudgetError(explicit, undefined)).toBe(explicit);
27
+
28
+ const controller = new AbortController();
29
+ controller.abort({
30
+ type: 'agent-timeout-budget',
31
+ stage: 'tool',
32
+ message: 'Timeout budget exceeded at tool stage',
33
+ });
34
+ const normalized = normalizeTimeoutBudgetError(new Error('other'), controller.signal);
35
+ expect(normalized).toBeInstanceOf(TimeoutBudgetExceededError);
36
+ expect(normalized?.message).toContain('tool stage');
37
+ });
38
+
39
+ it('throwIfAborted throws AbortError when signal is aborted without budget reason', () => {
40
+ const controller = new AbortController();
41
+ controller.abort();
42
+ expect(() => throwIfAborted(controller.signal, 'Operation aborted')).toThrowError(
43
+ 'Operation aborted'
44
+ );
45
+ });
46
+
47
+ it('throwIfAborted throws TimeoutBudgetExceededError when budget reason exists', () => {
48
+ const controller = new AbortController();
49
+ controller.abort({
50
+ type: 'agent-timeout-budget',
51
+ stage: 'total',
52
+ message: 'Timeout budget exceeded at execution stage',
53
+ });
54
+ expect(() => throwIfAborted(controller.signal, 'Operation aborted')).toThrow(
55
+ TimeoutBudgetExceededError
56
+ );
57
+ });
58
+
59
+ it('sleepWithAbort resolves for non-positive delay and rejects on abort', async () => {
60
+ await expect(sleepWithAbort(0)).resolves.toBeUndefined();
61
+ await expect(sleepWithAbort(-1)).resolves.toBeUndefined();
62
+
63
+ const preAborted = new AbortController();
64
+ preAborted.abort();
65
+ await expect(sleepWithAbort(10, preAborted.signal, 'Operation aborted')).rejects.toMatchObject({
66
+ name: 'AbortError',
67
+ message: 'Operation aborted',
68
+ });
69
+ });
70
+
71
+ it('sleepWithAbort rejects when aborted during wait', async () => {
72
+ vi.useFakeTimers();
73
+ const controller = new AbortController();
74
+ const promise = sleepWithAbort(100, controller.signal, 'Operation aborted');
75
+ await vi.advanceTimersByTimeAsync(10);
76
+ controller.abort();
77
+ await expect(promise).rejects.toMatchObject({
78
+ name: 'AbortError',
79
+ message: 'Operation aborted',
80
+ });
81
+ vi.useRealTimers();
82
+ });
83
+ });
@@ -0,0 +1,34 @@
1
+ import { describe, expect, it, vi } from 'vitest';
2
+ import { safeCallback, safeErrorCallback } from '../callback-safety';
3
+
4
+ describe('callback-safety', () => {
5
+ it('safeCallback runs callback and swallows callback errors through onError', async () => {
6
+ const okCallback = vi.fn(async () => undefined);
7
+ const onError = vi.fn();
8
+ await safeCallback(okCallback, 'x', onError);
9
+ expect(okCallback).toHaveBeenCalledWith('x');
10
+ expect(onError).not.toHaveBeenCalled();
11
+
12
+ const bad = vi.fn(async () => {
13
+ throw new Error('boom');
14
+ });
15
+ await safeCallback(bad, 'y', onError);
16
+ expect(onError).toHaveBeenCalled();
17
+ });
18
+
19
+ it('safeErrorCallback returns decision and handles callback errors', async () => {
20
+ const decision = await safeErrorCallback(async () => ({ retry: true }), new Error('e'));
21
+ expect(decision).toEqual({ retry: true });
22
+
23
+ const onError = vi.fn();
24
+ const fallback = await safeErrorCallback(
25
+ async () => {
26
+ throw new Error('callback crash');
27
+ },
28
+ new Error('e2'),
29
+ onError
30
+ );
31
+ expect(fallback).toBeUndefined();
32
+ expect(onError).toHaveBeenCalled();
33
+ });
34
+ });