@alumbwe/anvil 1.0.20 → 1.0.21
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.
- package/package.json +6 -2
- package/src/agents/bundled-agents.generated.ts +4 -4
- package/src/chat.tsx +1703 -1698
- package/src/cli-args.ts +134 -134
- package/src/components/status-bar.tsx +331 -313
- package/src/hooks/helpers/send-message.ts +663 -654
- package/src/hooks/use-send-message.ts +806 -773
- package/src/index.tsx +473 -473
- package/src/state/chat-store.ts +553 -544
- package/src/utils/create-run-config.ts +121 -121
- package/src/utils/format-compact-number.ts +37 -0
- package/vendor/@anvil/common/package.json +27 -0
- package/vendor/@anvil/common/src/__tests__/agent-validation.test.ts +846 -0
- package/vendor/@anvil/common/src/__tests__/anvil-model-availability.test.ts +101 -0
- package/vendor/@anvil/common/src/__tests__/anvil-models.test.ts +1408 -0
- package/vendor/@anvil/common/src/__tests__/anvil-public-data-use-copy.test.ts +258 -0
- package/vendor/@anvil/common/src/__tests__/anvil-referral-tiers.test.ts +48 -0
- package/vendor/@anvil/common/src/__tests__/anvil-spend-ceilings.test.ts +282 -0
- package/vendor/@anvil/common/src/__tests__/anvil-trust.test.ts +526 -0
- package/vendor/@anvil/common/src/__tests__/deepseek-direct.test.ts +68 -0
- package/vendor/@anvil/common/src/__tests__/disposable-email.test.ts +132 -0
- package/vendor/@anvil/common/src/__tests__/dynamic-agent-template-schema.test.ts +422 -0
- package/vendor/@anvil/common/src/__tests__/env-ci.test.ts +167 -0
- package/vendor/@anvil/common/src/__tests__/env-process.test.ts +145 -0
- package/vendor/@anvil/common/src/__tests__/foreign-client-shipped-agents.test.ts +234 -0
- package/vendor/@anvil/common/src/__tests__/foreign-client-signals.test.ts +379 -0
- package/vendor/@anvil/common/src/__tests__/free-agents.test.ts +807 -0
- package/vendor/@anvil/common/src/__tests__/gravity-capi.test.ts +154 -0
- package/vendor/@anvil/common/src/__tests__/handlesteps-parsing.test.ts +246 -0
- package/vendor/@anvil/common/src/__tests__/kimi-k3-god-only.test.ts +77 -0
- package/vendor/@anvil/common/src/__tests__/model-config.test.ts +89 -0
- package/vendor/@anvil/common/src/__tests__/project-file-tree.test.ts +298 -0
- package/vendor/@anvil/common/src/__tests__/provisioned-model-tiers.test.ts +116 -0
- package/vendor/@anvil/common/src/__tests__/reasoning-effort.test.ts +167 -0
- package/vendor/@anvil/common/src/__tests__/reddit-capi.test.ts +132 -0
- package/vendor/@anvil/common/src/__tests__/response-ad-positions.test.ts +72 -0
- package/vendor/@anvil/common/src/__tests__/user-state.test.ts +30 -0
- package/vendor/@anvil/common/src/actions.ts +215 -0
- package/vendor/@anvil/common/src/analytics-core.ts +69 -0
- package/vendor/@anvil/common/src/analytics.ts +93 -0
- package/vendor/@anvil/common/src/api-keys/constants.ts +26 -0
- package/vendor/@anvil/common/src/browser-actions.ts +413 -0
- package/vendor/@anvil/common/src/constants/__tests__/anvil-onboarding-gate.test.ts +63 -0
- package/vendor/@anvil/common/src/constants/__tests__/anvil-onboarding.test.ts +246 -0
- package/vendor/@anvil/common/src/constants/__tests__/cf-worker-signals.test.ts +106 -0
- package/vendor/@anvil/common/src/constants/agents.ts +99 -0
- package/vendor/@anvil/common/src/constants/analytics-events.ts +435 -0
- package/vendor/@anvil/common/src/constants/anthropic.ts +73 -0
- package/vendor/@anvil/common/src/constants/anvil-data-use.ts +81 -0
- package/vendor/@anvil/common/src/constants/anvil-errors.ts +7 -0
- package/vendor/@anvil/common/src/constants/anvil-gemini-thinker.ts +21 -0
- package/vendor/@anvil/common/src/constants/anvil-model-ids.ts +11 -0
- package/vendor/@anvil/common/src/constants/anvil-models.ts +2130 -0
- package/vendor/@anvil/common/src/constants/anvil-onboarding-gate.ts +55 -0
- package/vendor/@anvil/common/src/constants/anvil-onboarding.ts +307 -0
- package/vendor/@anvil/common/src/constants/anvil-referral-tiers.ts +87 -0
- package/vendor/@anvil/common/src/constants/anvil-signup-block.ts +68 -0
- package/vendor/@anvil/common/src/constants/anvil-spend-ceilings.ts +450 -0
- package/vendor/@anvil/common/src/constants/anvil-trust.ts +976 -0
- package/vendor/@anvil/common/src/constants/auth.ts +18 -0
- package/vendor/@anvil/common/src/constants/byok.ts +2 -0
- package/vendor/@anvil/common/src/constants/cf-worker-signals.ts +132 -0
- package/vendor/@anvil/common/src/constants/composio.ts +34 -0
- package/vendor/@anvil/common/src/constants/deepseek-direct.ts +55 -0
- package/vendor/@anvil/common/src/constants/feedback.ts +13 -0
- package/vendor/@anvil/common/src/constants/foreign-client-signals.ts +272 -0
- package/vendor/@anvil/common/src/constants/free-agents.ts +777 -0
- package/vendor/@anvil/common/src/constants/gemini.ts +15 -0
- package/vendor/@anvil/common/src/constants/grant-priorities.ts +13 -0
- package/vendor/@anvil/common/src/constants/hosts.ts +6 -0
- package/vendor/@anvil/common/src/constants/images.ts +51 -0
- package/vendor/@anvil/common/src/constants/index.ts +7 -0
- package/vendor/@anvil/common/src/constants/knowledge.ts +35 -0
- package/vendor/@anvil/common/src/constants/limits.ts +23 -0
- package/vendor/@anvil/common/src/constants/model-config.ts +277 -0
- package/vendor/@anvil/common/src/constants/openrouter-attribution.ts +8 -0
- package/vendor/@anvil/common/src/constants/paths.ts +69 -0
- package/vendor/@anvil/common/src/constants/provider-routes.ts +317 -0
- package/vendor/@anvil/common/src/constants/reasoning-effort.ts +79 -0
- package/vendor/@anvil/common/src/constants/skills.ts +60 -0
- package/vendor/@anvil/common/src/constants/subscription-plans.ts +49 -0
- package/vendor/@anvil/common/src/constants/ui.ts +25 -0
- package/vendor/@anvil/common/src/env-ci.ts +36 -0
- package/vendor/@anvil/common/src/env-process.ts +95 -0
- package/vendor/@anvil/common/src/env-schema.ts +95 -0
- package/vendor/@anvil/common/src/env.ts +24 -0
- package/vendor/@anvil/common/src/gravity-capi.ts +207 -0
- package/vendor/@anvil/common/src/mcp/client.ts +233 -0
- package/vendor/@anvil/common/src/old-constants.ts +10 -0
- package/vendor/@anvil/common/src/project-file-tree.ts +355 -0
- package/vendor/@anvil/common/src/reddit-capi.ts +254 -0
- package/vendor/@anvil/common/src/schemas/feedback.ts +52 -0
- package/vendor/@anvil/common/src/schemas/logs.ts +66 -0
- package/vendor/@anvil/common/src/templates/agent-validation.ts +392 -0
- package/vendor/@anvil/common/src/templates/initial-agents-dir/LICENSE +202 -0
- package/vendor/@anvil/common/src/templates/initial-agents-dir/README.md +294 -0
- package/vendor/@anvil/common/src/templates/initial-agents-dir/examples/01-basic-diff-reviewer.ts +17 -0
- package/vendor/@anvil/common/src/templates/initial-agents-dir/examples/02-intermediate-git-committer.ts +78 -0
- package/vendor/@anvil/common/src/templates/initial-agents-dir/examples/03-advanced-file-explorer.ts +73 -0
- package/vendor/@anvil/common/src/templates/initial-agents-dir/my-custom-agent.ts +40 -0
- package/vendor/@anvil/common/src/templates/initial-agents-dir/package.json +6 -0
- package/vendor/@anvil/common/src/templates/initial-agents-dir/skills/README.md +65 -0
- package/vendor/@anvil/common/src/templates/initial-agents-dir/skills/example-skill/SKILL.md +29 -0
- package/vendor/@anvil/common/src/templates/initial-agents-dir/types/agent-definition.ts +497 -0
- package/vendor/@anvil/common/src/templates/initial-agents-dir/types/tools.ts +444 -0
- package/vendor/@anvil/common/src/templates/initial-agents-dir/types/util-types.ts +178 -0
- package/vendor/@anvil/common/src/testing/TESTING_PATTERNS.md +351 -0
- package/vendor/@anvil/common/src/testing/anvil-offer-invariants.ts +169 -0
- package/vendor/@anvil/common/src/testing/errors.ts +33 -0
- package/vendor/@anvil/common/src/testing/fixtures/agent-runtime.ts +334 -0
- package/vendor/@anvil/common/src/testing/impl/agent-runtime.ts +6 -0
- package/vendor/@anvil/common/src/testing/index.ts +84 -0
- package/vendor/@anvil/common/src/testing/mock-modules.ts +53 -0
- package/vendor/@anvil/common/src/testing/mock-types.ts +123 -0
- package/vendor/@anvil/common/src/testing/mocks/analytics.ts +261 -0
- package/vendor/@anvil/common/src/testing/mocks/child-process.ts +93 -0
- package/vendor/@anvil/common/src/testing/mocks/crypto.ts +218 -0
- package/vendor/@anvil/common/src/testing/mocks/database.ts +337 -0
- package/vendor/@anvil/common/src/testing/mocks/fetch.ts +219 -0
- package/vendor/@anvil/common/src/testing/mocks/filesystem.ts +166 -0
- package/vendor/@anvil/common/src/testing/mocks/index.ts +101 -0
- package/vendor/@anvil/common/src/testing/mocks/logger.ts +135 -0
- package/vendor/@anvil/common/src/testing/mocks/stream.ts +313 -0
- package/vendor/@anvil/common/src/testing/mocks/timers.ts +132 -0
- package/vendor/@anvil/common/src/testing/mocks/tree-sitter.ts +127 -0
- package/vendor/@anvil/common/src/testing/setup.ts +282 -0
- package/vendor/@anvil/common/src/testing-env-ci.ts +15 -0
- package/vendor/@anvil/common/src/testing-env-process.ts +78 -0
- package/vendor/@anvil/common/src/tools/__tests__/compile-tool-definitions.test.ts +34 -0
- package/vendor/@anvil/common/src/tools/compile-tool-definitions.ts +157 -0
- package/vendor/@anvil/common/src/tools/constants.ts +117 -0
- package/vendor/@anvil/common/src/tools/list.ts +190 -0
- package/vendor/@anvil/common/src/tools/params/__tests__/coerce-to-array.test.ts +213 -0
- package/vendor/@anvil/common/src/tools/params/__tests__/read-docs.test.ts +47 -0
- package/vendor/@anvil/common/src/tools/params/__tests__/render-ui.test.ts +65 -0
- package/vendor/@anvil/common/src/tools/params/tool/__tests__/run-terminal-command-timeout.test.ts +49 -0
- package/vendor/@anvil/common/src/tools/params/tool/add-message.ts +39 -0
- package/vendor/@anvil/common/src/tools/params/tool/add-subgoal.ts +57 -0
- package/vendor/@anvil/common/src/tools/params/tool/apply-patch.ts +110 -0
- package/vendor/@anvil/common/src/tools/params/tool/ask-user.ts +181 -0
- package/vendor/@anvil/common/src/tools/params/tool/browser-logs.ts +85 -0
- package/vendor/@anvil/common/src/tools/params/tool/cloud-plan-ready.ts +94 -0
- package/vendor/@anvil/common/src/tools/params/tool/code-search.ts +159 -0
- package/vendor/@anvil/common/src/tools/params/tool/composio.ts +131 -0
- package/vendor/@anvil/common/src/tools/params/tool/create-plan.ts +80 -0
- package/vendor/@anvil/common/src/tools/params/tool/end-turn.ts +57 -0
- package/vendor/@anvil/common/src/tools/params/tool/find-files.ts +60 -0
- package/vendor/@anvil/common/src/tools/params/tool/glob.ts +80 -0
- package/vendor/@anvil/common/src/tools/params/tool/gravity-index.ts +93 -0
- package/vendor/@anvil/common/src/tools/params/tool/list-directory.ts +58 -0
- package/vendor/@anvil/common/src/tools/params/tool/lookup-agent-info.ts +37 -0
- package/vendor/@anvil/common/src/tools/params/tool/propose-str-replace.ts +103 -0
- package/vendor/@anvil/common/src/tools/params/tool/propose-write-file.ts +71 -0
- package/vendor/@anvil/common/src/tools/params/tool/read-docs.ts +90 -0
- package/vendor/@anvil/common/src/tools/params/tool/read-files.ts +109 -0
- package/vendor/@anvil/common/src/tools/params/tool/read-subtree.ts +79 -0
- package/vendor/@anvil/common/src/tools/params/tool/read-url.ts +81 -0
- package/vendor/@anvil/common/src/tools/params/tool/render-ui.ts +168 -0
- package/vendor/@anvil/common/src/tools/params/tool/run-file-change-hooks.ts +57 -0
- package/vendor/@anvil/common/src/tools/params/tool/run-terminal-command.ts +211 -0
- package/vendor/@anvil/common/src/tools/params/tool/screenshot.ts +97 -0
- package/vendor/@anvil/common/src/tools/params/tool/set-messages.ts +44 -0
- package/vendor/@anvil/common/src/tools/params/tool/set-output.ts +61 -0
- package/vendor/@anvil/common/src/tools/params/tool/skill.ts +59 -0
- package/vendor/@anvil/common/src/tools/params/tool/spawn-agent-inline.ts +56 -0
- package/vendor/@anvil/common/src/tools/params/tool/spawn-agents.ts +154 -0
- package/vendor/@anvil/common/src/tools/params/tool/str-replace.ts +107 -0
- package/vendor/@anvil/common/src/tools/params/tool/suggest-followups.ts +97 -0
- package/vendor/@anvil/common/src/tools/params/tool/task-completed.ts +61 -0
- package/vendor/@anvil/common/src/tools/params/tool/think-deeply.ts +56 -0
- package/vendor/@anvil/common/src/tools/params/tool/update-subgoal.ts +89 -0
- package/vendor/@anvil/common/src/tools/params/tool/vision-analyze.ts +82 -0
- package/vendor/@anvil/common/src/tools/params/tool/web-search.ts +73 -0
- package/vendor/@anvil/common/src/tools/params/tool/write-file.ts +71 -0
- package/vendor/@anvil/common/src/tools/params/tool/write-todos.ts +67 -0
- package/vendor/@anvil/common/src/tools/params/utils.ts +150 -0
- package/vendor/@anvil/common/src/tools/utils.ts +24 -0
- package/vendor/@anvil/common/src/types/__tests__/dynamic-agent-template.test.ts +20 -0
- package/vendor/@anvil/common/src/types/agent-template.ts +215 -0
- package/vendor/@anvil/common/src/types/anvil-session.ts +535 -0
- package/vendor/@anvil/common/src/types/anvil-streak.ts +6 -0
- package/vendor/@anvil/common/src/types/anvil-usage.ts +64 -0
- package/vendor/@anvil/common/src/types/api/agents/publish.ts +61 -0
- package/vendor/@anvil/common/src/types/bun-test.d.ts +5 -0
- package/vendor/@anvil/common/src/types/contracts/agent-runtime.ts +75 -0
- package/vendor/@anvil/common/src/types/contracts/analytics.ts +9 -0
- package/vendor/@anvil/common/src/types/contracts/bigquery.ts +55 -0
- package/vendor/@anvil/common/src/types/contracts/billing.ts +46 -0
- package/vendor/@anvil/common/src/types/contracts/client.ts +53 -0
- package/vendor/@anvil/common/src/types/contracts/database.ts +112 -0
- package/vendor/@anvil/common/src/types/contracts/env.ts +203 -0
- package/vendor/@anvil/common/src/types/contracts/llm.ts +191 -0
- package/vendor/@anvil/common/src/types/contracts/logger.ts +14 -0
- package/vendor/@anvil/common/src/types/contracts/logs.ts +34 -0
- package/vendor/@anvil/common/src/types/contracts/trace.ts +21 -0
- package/vendor/@anvil/common/src/types/dynamic-agent-template.ts +328 -0
- package/vendor/@anvil/common/src/types/filesystem.ts +10 -0
- package/vendor/@anvil/common/src/types/function-params.ts +33 -0
- package/vendor/@anvil/common/src/types/grant.ts +20 -0
- package/vendor/@anvil/common/src/types/gravity-index.ts +170 -0
- package/vendor/@anvil/common/src/types/json.ts +29 -0
- package/vendor/@anvil/common/src/types/mcp.ts +24 -0
- package/vendor/@anvil/common/src/types/messages/anvil-message.ts +58 -0
- package/vendor/@anvil/common/src/types/messages/content-part.ts +59 -0
- package/vendor/@anvil/common/src/types/messages/data-content.ts +14 -0
- package/vendor/@anvil/common/src/types/messages/provider-metadata.ts +13 -0
- package/vendor/@anvil/common/src/types/organization.ts +118 -0
- package/vendor/@anvil/common/src/types/print-mode.ts +121 -0
- package/vendor/@anvil/common/src/types/publisher.ts +67 -0
- package/vendor/@anvil/common/src/types/session-state.ts +149 -0
- package/vendor/@anvil/common/src/types/skill.ts +86 -0
- package/vendor/@anvil/common/src/types/source.ts +11 -0
- package/vendor/@anvil/common/src/types/spawn.ts +13 -0
- package/vendor/@anvil/common/src/types/subscription.ts +67 -0
- package/vendor/@anvil/common/src/types/usage.ts +16 -0
- package/vendor/@anvil/common/src/types/util.ts +3 -0
- package/vendor/@anvil/common/src/util/__tests__/ad-user-agent.test.ts +26 -0
- package/vendor/@anvil/common/src/util/__tests__/analytics-dispatcher.test.ts +122 -0
- package/vendor/@anvil/common/src/util/__tests__/analytics-log.test.ts +102 -0
- package/vendor/@anvil/common/src/util/__tests__/analytics-sampling.test.ts +143 -0
- package/vendor/@anvil/common/src/util/__tests__/anvil-streak.test.ts +202 -0
- package/vendor/@anvil/common/src/util/__tests__/anvil-usage-summary.test.ts +193 -0
- package/vendor/@anvil/common/src/util/__tests__/axiom-only-log.test.ts +140 -0
- package/vendor/@anvil/common/src/util/__tests__/client-user-agent.test.ts +148 -0
- package/vendor/@anvil/common/src/util/__tests__/engagement-tracker.test.ts +115 -0
- package/vendor/@anvil/common/src/util/__tests__/env-file-path.test.ts +57 -0
- package/vendor/@anvil/common/src/util/__tests__/error-abort.test.ts +774 -0
- package/vendor/@anvil/common/src/util/__tests__/error-api-details.test.ts +206 -0
- package/vendor/@anvil/common/src/util/__tests__/file-read-limits.test.ts +173 -0
- package/vendor/@anvil/common/src/util/__tests__/format-code-search.test.ts +60 -0
- package/vendor/@anvil/common/src/util/__tests__/log-mirror.test.ts +31 -0
- package/vendor/@anvil/common/src/util/__tests__/messages.test.ts +1252 -0
- package/vendor/@anvil/common/src/util/__tests__/partial-json-delta.test.ts +505 -0
- package/vendor/@anvil/common/src/util/__tests__/path.test.ts +22 -0
- package/vendor/@anvil/common/src/util/__tests__/project-ignore.test.ts +90 -0
- package/vendor/@anvil/common/src/util/__tests__/promise.test.ts +325 -0
- package/vendor/@anvil/common/src/util/__tests__/rate-limit.test.ts +28 -0
- package/vendor/@anvil/common/src/util/__tests__/reddit-anvil-retention.test.ts +130 -0
- package/vendor/@anvil/common/src/util/__tests__/saxy.test.ts +1008 -0
- package/vendor/@anvil/common/src/util/__tests__/split-data.test.ts +289 -0
- package/vendor/@anvil/common/src/util/__tests__/string.test.ts +239 -0
- package/vendor/@anvil/common/src/util/__tests__/thread-title.test.ts +70 -0
- package/vendor/@anvil/common/src/util/__tests__/tool-result-media-order.test.ts +108 -0
- package/vendor/@anvil/common/src/util/__tests__/ttft-histogram.test.ts +180 -0
- package/vendor/@anvil/common/src/util/__tests__/with-timeout.test.ts +24 -0
- package/vendor/@anvil/common/src/util/__tests__/zoned-time.test.ts +88 -0
- package/vendor/@anvil/common/src/util/ad-user-agent.ts +25 -0
- package/vendor/@anvil/common/src/util/agent-file-utils.ts +110 -0
- package/vendor/@anvil/common/src/util/agent-id-parsing.ts +136 -0
- package/vendor/@anvil/common/src/util/agent-name-normalization.ts +38 -0
- package/vendor/@anvil/common/src/util/agent-name-resolver.ts +86 -0
- package/vendor/@anvil/common/src/util/analytics-dispatcher.ts +82 -0
- package/vendor/@anvil/common/src/util/analytics-log.ts +78 -0
- package/vendor/@anvil/common/src/util/analytics-sampling.ts +255 -0
- package/vendor/@anvil/common/src/util/anvil-model-availability.ts +102 -0
- package/vendor/@anvil/common/src/util/anvil-privacy.ts +82 -0
- package/vendor/@anvil/common/src/util/anvil-streak-line.ts +103 -0
- package/vendor/@anvil/common/src/util/anvil-streak.ts +156 -0
- package/vendor/@anvil/common/src/util/anvil-usage-summary.ts +125 -0
- package/vendor/@anvil/common/src/util/array.ts +31 -0
- package/vendor/@anvil/common/src/util/axiom-only-log.ts +124 -0
- package/vendor/@anvil/common/src/util/cache-debug.ts +171 -0
- package/vendor/@anvil/common/src/util/client-user-agent.ts +114 -0
- package/vendor/@anvil/common/src/util/credentials.ts +26 -0
- package/vendor/@anvil/common/src/util/currency.ts +25 -0
- package/vendor/@anvil/common/src/util/dates.ts +81 -0
- package/vendor/@anvil/common/src/util/disposable-email.ts +277 -0
- package/vendor/@anvil/common/src/util/engagement-tracker.ts +129 -0
- package/vendor/@anvil/common/src/util/env-file-path.ts +40 -0
- package/vendor/@anvil/common/src/util/error.ts +562 -0
- package/vendor/@anvil/common/src/util/file-read-limits.ts +236 -0
- package/vendor/@anvil/common/src/util/file.ts +339 -0
- package/vendor/@anvil/common/src/util/format-code-search.ts +115 -0
- package/vendor/@anvil/common/src/util/lazy-response-ads.ts +92 -0
- package/vendor/@anvil/common/src/util/log-data.ts +57 -0
- package/vendor/@anvil/common/src/util/log-ingest.ts +58 -0
- package/vendor/@anvil/common/src/util/log-mirror.ts +34 -0
- package/vendor/@anvil/common/src/util/lru-cache.ts +67 -0
- package/vendor/@anvil/common/src/util/messages.ts +685 -0
- package/vendor/@anvil/common/src/util/min-heap.ts +87 -0
- package/vendor/@anvil/common/src/util/model-utils.ts +4 -0
- package/vendor/@anvil/common/src/util/object.ts +128 -0
- package/vendor/@anvil/common/src/util/partial-json-delta.ts +89 -0
- package/vendor/@anvil/common/src/util/path.ts +15 -0
- package/vendor/@anvil/common/src/util/project-ignore.ts +119 -0
- package/vendor/@anvil/common/src/util/promise.ts +73 -0
- package/vendor/@anvil/common/src/util/random.ts +15 -0
- package/vendor/@anvil/common/src/util/rate-limit.ts +56 -0
- package/vendor/@anvil/common/src/util/reddit-anvil-retention.ts +60 -0
- package/vendor/@anvil/common/src/util/reddit-capi-events.ts +36 -0
- package/vendor/@anvil/common/src/util/response-ad-positions.ts +54 -0
- package/vendor/@anvil/common/src/util/saxy.ts +741 -0
- package/vendor/@anvil/common/src/util/skills.test.ts +44 -0
- package/vendor/@anvil/common/src/util/skills.ts +36 -0
- package/vendor/@anvil/common/src/util/split-data.ts +259 -0
- package/vendor/@anvil/common/src/util/stop-sequence.ts +61 -0
- package/vendor/@anvil/common/src/util/string.ts +426 -0
- package/vendor/@anvil/common/src/util/system-info.ts +53 -0
- package/vendor/@anvil/common/src/util/thread-title.ts +46 -0
- package/vendor/@anvil/common/src/util/ttft-histogram.ts +73 -0
- package/vendor/@anvil/common/src/util/xml-parser.ts +27 -0
- package/vendor/@anvil/common/src/util/xml.ts +17 -0
- package/vendor/@anvil/common/src/util/zod-schema.ts +25 -0
- package/vendor/@anvil/common/src/util/zoned-time.ts +136 -0
- package/vendor/@anvil/common/src/utils/ask-user-bridge.ts +44 -0
- package/vendor/@anvil/sdk/dist/index.cjs +52297 -0
- package/vendor/@anvil/sdk/dist/index.cjs.map +440 -0
- package/vendor/@anvil/sdk/dist/index.d.ts +4277 -0
- package/vendor/@anvil/sdk/dist/index.mjs +52290 -0
- package/vendor/@anvil/sdk/dist/index.mjs.map +440 -0
- package/vendor/@anvil/sdk/dist/vendor/ai.cjs +30886 -0
- package/vendor/@anvil/sdk/dist/vendor/ripgrep/arm64-darwin/rg +0 -0
- package/vendor/@anvil/sdk/dist/vendor/ripgrep/arm64-linux/rg +0 -0
- package/vendor/@anvil/sdk/dist/vendor/ripgrep/x64-darwin/rg +0 -0
- package/vendor/@anvil/sdk/dist/vendor/ripgrep/x64-linux/rg +0 -0
- package/vendor/@anvil/sdk/dist/vendor/ripgrep/x64-win32/rg.exe +0 -0
- package/vendor/@anvil/sdk/dist/wasm/tree-sitter-c-sharp.wasm +0 -0
- package/vendor/@anvil/sdk/dist/wasm/tree-sitter-cpp.wasm +0 -0
- package/vendor/@anvil/sdk/dist/wasm/tree-sitter-go.wasm +0 -0
- package/vendor/@anvil/sdk/dist/wasm/tree-sitter-java.wasm +0 -0
- package/vendor/@anvil/sdk/dist/wasm/tree-sitter-javascript.wasm +0 -0
- package/vendor/@anvil/sdk/dist/wasm/tree-sitter-python.wasm +0 -0
- package/vendor/@anvil/sdk/dist/wasm/tree-sitter-ruby.wasm +0 -0
- package/vendor/@anvil/sdk/dist/wasm/tree-sitter-rust.wasm +0 -0
- package/vendor/@anvil/sdk/dist/wasm/tree-sitter-tsx.wasm +0 -0
- package/vendor/@anvil/sdk/dist/wasm/tree-sitter-typescript.wasm +0 -0
- package/vendor/@anvil/sdk/dist/wasm/tree-sitter.wasm +0 -0
- package/vendor/@anvil/sdk/package.json +21 -0
|
@@ -0,0 +1,334 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Test fixtures for agent runtime testing.
|
|
3
|
+
*
|
|
4
|
+
* Provides pre-built test fixtures and factory functions for
|
|
5
|
+
* testing agent runtime components without needing to set up
|
|
6
|
+
* all the dependencies manually.
|
|
7
|
+
*
|
|
8
|
+
* @example
|
|
9
|
+
* ```typescript
|
|
10
|
+
* import {
|
|
11
|
+
* createTestAgentRuntimeParams,
|
|
12
|
+
* createTestAgentRuntimeDeps,
|
|
13
|
+
* mockFileContext,
|
|
14
|
+
* } from '@anvil/common/testing/fixtures/agent-runtime'
|
|
15
|
+
*
|
|
16
|
+
* const params = createTestAgentRuntimeParams()
|
|
17
|
+
* const { agentTemplate, localAgentTemplates } = params
|
|
18
|
+
* ```
|
|
19
|
+
*/
|
|
20
|
+
|
|
21
|
+
import { mock } from 'bun:test'
|
|
22
|
+
|
|
23
|
+
import { promptSuccess } from '../../util/error'
|
|
24
|
+
|
|
25
|
+
import type { ProjectFileContext } from '../../util/file'
|
|
26
|
+
|
|
27
|
+
export const mockFileContext: ProjectFileContext = {
|
|
28
|
+
projectRoot: '/test',
|
|
29
|
+
cwd: '/test',
|
|
30
|
+
fileTree: [],
|
|
31
|
+
fileTokenScores: {},
|
|
32
|
+
knowledgeFiles: {},
|
|
33
|
+
userKnowledgeFiles: {},
|
|
34
|
+
agentTemplates: {},
|
|
35
|
+
customToolDefinitions: {},
|
|
36
|
+
gitChanges: {
|
|
37
|
+
status: '',
|
|
38
|
+
diff: '',
|
|
39
|
+
diffCached: '',
|
|
40
|
+
lastCommitMessages: '',
|
|
41
|
+
},
|
|
42
|
+
changesSinceLastChat: {},
|
|
43
|
+
shellConfigFiles: {},
|
|
44
|
+
systemInfo: {
|
|
45
|
+
platform: 'test',
|
|
46
|
+
shell: 'test',
|
|
47
|
+
nodeVersion: 'test',
|
|
48
|
+
arch: 'test',
|
|
49
|
+
homedir: '/home/test',
|
|
50
|
+
cpus: 1,
|
|
51
|
+
chromeAvailable: false,
|
|
52
|
+
},
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
/** @deprecated Use mockFileContext */
|
|
56
|
+
export const testFileContext: ProjectFileContext = mockFileContext
|
|
57
|
+
|
|
58
|
+
export const testLogger = {
|
|
59
|
+
debug: () => {},
|
|
60
|
+
error: () => {},
|
|
61
|
+
info: () => {},
|
|
62
|
+
warn: () => {},
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
export const testFetch = Object.assign(
|
|
66
|
+
async () => {
|
|
67
|
+
throw new Error('fetch not implemented in test runtime')
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
preconnect: async () => {
|
|
71
|
+
throw new Error('fetch.preconnect not implemented in test runtime')
|
|
72
|
+
},
|
|
73
|
+
},
|
|
74
|
+
)
|
|
75
|
+
|
|
76
|
+
export const testClientEnv = {
|
|
77
|
+
NEXT_PUBLIC_CB_ENVIRONMENT: 'test' as const,
|
|
78
|
+
NEXT_PUBLIC_ANVIL_APP_URL: 'https://test.codebuff.com',
|
|
79
|
+
NEXT_PUBLIC_SUPPORT_EMAIL: 'support@codebuff.test',
|
|
80
|
+
NEXT_PUBLIC_POSTHOG_API_KEY: 'test-posthog-key',
|
|
81
|
+
NEXT_PUBLIC_POSTHOG_HOST_URL: 'https://test.posthog.com',
|
|
82
|
+
NEXT_PUBLIC_STRIPE_PUBLISHABLE_KEY: 'pk_test_123',
|
|
83
|
+
NEXT_PUBLIC_STRIPE_CUSTOMER_PORTAL: 'https://test.stripe.com/portal',
|
|
84
|
+
NEXT_PUBLIC_GOOGLE_SITE_VERIFICATION_ID: undefined,
|
|
85
|
+
NEXT_PUBLIC_WEB_PORT: 3000,
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
export const testCiEnv = {
|
|
89
|
+
CI: undefined,
|
|
90
|
+
GITHUB_ACTIONS: undefined,
|
|
91
|
+
RENDER: undefined,
|
|
92
|
+
IS_PULL_REQUEST: undefined,
|
|
93
|
+
ANVIL_GITHUB_TOKEN: undefined,
|
|
94
|
+
ANVIL_API_KEY: 'test-api-key',
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
/** @deprecated Use createTestAgentRuntimeParams() */
|
|
98
|
+
export const TEST_AGENT_RUNTIME_IMPL = Object.freeze({
|
|
99
|
+
clientEnv: testClientEnv,
|
|
100
|
+
ciEnv: testCiEnv,
|
|
101
|
+
trackEvent: () => {},
|
|
102
|
+
logger: testLogger,
|
|
103
|
+
fetch: testFetch,
|
|
104
|
+
getUserInfoFromApiKey: async <T extends string>({
|
|
105
|
+
fields,
|
|
106
|
+
}: {
|
|
107
|
+
apiKey: string
|
|
108
|
+
fields: readonly T[]
|
|
109
|
+
}) => {
|
|
110
|
+
const user = {
|
|
111
|
+
id: 'test-user-id',
|
|
112
|
+
email: 'test@example.com',
|
|
113
|
+
discord_id: 'test-discord-id',
|
|
114
|
+
stripe_customer_id: null,
|
|
115
|
+
banned: false,
|
|
116
|
+
created_at: new Date('2024-01-01T00:00:00Z'),
|
|
117
|
+
} as const
|
|
118
|
+
return Object.fromEntries(
|
|
119
|
+
fields.map((field) => [field, user[field as keyof typeof user]]),
|
|
120
|
+
) as {
|
|
121
|
+
[K in T]: (typeof user)[K & keyof typeof user]
|
|
122
|
+
}
|
|
123
|
+
},
|
|
124
|
+
fetchAgentFromDatabase: async () => null,
|
|
125
|
+
startAgentRun: async () => 'test-agent-run-id',
|
|
126
|
+
finishAgentRun: async () => {},
|
|
127
|
+
addAgentStep: async () => 'test-agent-step-id',
|
|
128
|
+
consumeCreditsWithFallback: async () => {
|
|
129
|
+
throw new Error(
|
|
130
|
+
'consumeCreditsWithFallback not implemented in test runtime',
|
|
131
|
+
)
|
|
132
|
+
},
|
|
133
|
+
promptAiSdkStream: async function* () {
|
|
134
|
+
throw new Error('promptAiSdkStream not implemented in test runtime')
|
|
135
|
+
},
|
|
136
|
+
promptAiSdk: async function () {
|
|
137
|
+
throw new Error('promptAiSdk not implemented in test runtime')
|
|
138
|
+
},
|
|
139
|
+
promptAiSdkStructured: async function () {
|
|
140
|
+
throw new Error('promptAiSdkStructured not implemented in test runtime')
|
|
141
|
+
},
|
|
142
|
+
databaseAgentCache: new Map(),
|
|
143
|
+
handleStepsLogChunk: () => {
|
|
144
|
+
throw new Error('handleStepsLogChunk not implemented in test runtime')
|
|
145
|
+
},
|
|
146
|
+
requestToolCall: () => {
|
|
147
|
+
throw new Error('requestToolCall not implemented in test runtime')
|
|
148
|
+
},
|
|
149
|
+
requestMcpToolData: () => {
|
|
150
|
+
throw new Error('requestMcpToolData not implemented in test runtime')
|
|
151
|
+
},
|
|
152
|
+
requestFiles: () => {
|
|
153
|
+
throw new Error('requestFiles not implemented in test runtime')
|
|
154
|
+
},
|
|
155
|
+
requestOptionalFile: () => {
|
|
156
|
+
throw new Error('requestOptionalFile not implemented in test runtime')
|
|
157
|
+
},
|
|
158
|
+
sendSubagentChunk: () => {
|
|
159
|
+
throw new Error('sendSubagentChunk not implemented in test runtime')
|
|
160
|
+
},
|
|
161
|
+
sendAction: () => {
|
|
162
|
+
throw new Error('sendAction not implemented in test runtime')
|
|
163
|
+
},
|
|
164
|
+
apiKey: 'test-api-key',
|
|
165
|
+
})
|
|
166
|
+
|
|
167
|
+
export interface TestAgentRuntimeParams {
|
|
168
|
+
agentTemplate: {
|
|
169
|
+
id: string
|
|
170
|
+
displayName: string
|
|
171
|
+
model: string
|
|
172
|
+
inputSchema: Record<string, unknown>
|
|
173
|
+
outputMode: string
|
|
174
|
+
includeMessageHistory: boolean
|
|
175
|
+
inheritParentSystemPrompt: boolean
|
|
176
|
+
mcpServers: Record<string, unknown>
|
|
177
|
+
toolNames: string[]
|
|
178
|
+
spawnableAgents: string[]
|
|
179
|
+
systemPrompt: string
|
|
180
|
+
instructionsPrompt: string
|
|
181
|
+
stepPrompt: string
|
|
182
|
+
}
|
|
183
|
+
localAgentTemplates: Record<string, TestAgentRuntimeParams['agentTemplate']>
|
|
184
|
+
sendAction: ReturnType<typeof mock>
|
|
185
|
+
requestFiles: ReturnType<typeof mock>
|
|
186
|
+
requestToolCall: ReturnType<typeof mock>
|
|
187
|
+
onResponseChunk: ReturnType<typeof mock>
|
|
188
|
+
fileContext: ProjectFileContext
|
|
189
|
+
promptAiSdkStream: ReturnType<typeof mock>
|
|
190
|
+
promptAiSdk: ReturnType<typeof mock>
|
|
191
|
+
promptAiSdkStructured: ReturnType<typeof mock>
|
|
192
|
+
requestMcpToolData: ReturnType<typeof mock>
|
|
193
|
+
startAgentRun: ReturnType<typeof mock>
|
|
194
|
+
finishAgentRun: ReturnType<typeof mock>
|
|
195
|
+
addAgentStep: ReturnType<typeof mock>
|
|
196
|
+
logger: typeof testLogger
|
|
197
|
+
trackEvent: ReturnType<typeof mock>
|
|
198
|
+
clientEnv: typeof testClientEnv
|
|
199
|
+
ciEnv: typeof testCiEnv
|
|
200
|
+
apiKey: string
|
|
201
|
+
fetch: typeof testFetch
|
|
202
|
+
fetchAgentFromDatabase: ReturnType<typeof mock>
|
|
203
|
+
databaseAgentCache: Map<string, null>
|
|
204
|
+
consumeCreditsWithFallback: ReturnType<typeof mock>
|
|
205
|
+
getUserInfoFromApiKey: ReturnType<typeof mock>
|
|
206
|
+
handleStepsLogChunk: ReturnType<typeof mock>
|
|
207
|
+
requestOptionalFile: ReturnType<typeof mock>
|
|
208
|
+
sendSubagentChunk: ReturnType<typeof mock>
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
export function createTestAgentRuntimeParams(
|
|
212
|
+
overrides: Partial<TestAgentRuntimeParams> = {},
|
|
213
|
+
): TestAgentRuntimeParams {
|
|
214
|
+
const defaultTemplate: TestAgentRuntimeParams['agentTemplate'] = {
|
|
215
|
+
id: 'test-agent',
|
|
216
|
+
displayName: 'Test Agent',
|
|
217
|
+
model: 'claude-3-5-sonnet-20241022',
|
|
218
|
+
inputSchema: {},
|
|
219
|
+
outputMode: 'last_message',
|
|
220
|
+
includeMessageHistory: true,
|
|
221
|
+
inheritParentSystemPrompt: false,
|
|
222
|
+
mcpServers: {},
|
|
223
|
+
toolNames: ['read_files', 'write_file', 'end_turn'],
|
|
224
|
+
spawnableAgents: [],
|
|
225
|
+
systemPrompt: 'You are a test agent.',
|
|
226
|
+
instructionsPrompt: 'Help the user with testing.',
|
|
227
|
+
stepPrompt: '',
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
const agentTemplate = overrides.agentTemplate ?? defaultTemplate
|
|
231
|
+
|
|
232
|
+
return {
|
|
233
|
+
agentTemplate,
|
|
234
|
+
localAgentTemplates: overrides.localAgentTemplates ?? {
|
|
235
|
+
'test-agent': agentTemplate,
|
|
236
|
+
},
|
|
237
|
+
sendAction: overrides.sendAction ?? mock(() => {}),
|
|
238
|
+
requestFiles: overrides.requestFiles ?? mock(async () => ({})),
|
|
239
|
+
requestToolCall:
|
|
240
|
+
overrides.requestToolCall ??
|
|
241
|
+
mock(async () => ({ success: true, result: 'mock result' })),
|
|
242
|
+
onResponseChunk: overrides.onResponseChunk ?? mock(() => {}),
|
|
243
|
+
fileContext: overrides.fileContext ?? mockFileContext,
|
|
244
|
+
promptAiSdkStream:
|
|
245
|
+
overrides.promptAiSdkStream ??
|
|
246
|
+
mock(async function* () {
|
|
247
|
+
yield { type: 'text' as const, text: 'Mock response\n\n' }
|
|
248
|
+
yield {
|
|
249
|
+
type: 'tool-call' as const,
|
|
250
|
+
toolName: 'end_turn',
|
|
251
|
+
toolCallId: 'mock-id',
|
|
252
|
+
input: {},
|
|
253
|
+
}
|
|
254
|
+
return promptSuccess('mock-message-id')
|
|
255
|
+
}),
|
|
256
|
+
promptAiSdk: overrides.promptAiSdk ?? mock(async () => promptSuccess('Mock response')),
|
|
257
|
+
promptAiSdkStructured:
|
|
258
|
+
overrides.promptAiSdkStructured ?? mock(async () => promptSuccess({})),
|
|
259
|
+
requestMcpToolData: overrides.requestMcpToolData ?? mock(async () => ({})),
|
|
260
|
+
startAgentRun: overrides.startAgentRun ?? mock(async () => 'test-run-id'),
|
|
261
|
+
finishAgentRun: overrides.finishAgentRun ?? mock(async () => {}),
|
|
262
|
+
addAgentStep: overrides.addAgentStep ?? mock(async () => 'test-step-id'),
|
|
263
|
+
logger: overrides.logger ?? testLogger,
|
|
264
|
+
trackEvent: overrides.trackEvent ?? mock(() => {}),
|
|
265
|
+
clientEnv: overrides.clientEnv ?? testClientEnv,
|
|
266
|
+
ciEnv: overrides.ciEnv ?? testCiEnv,
|
|
267
|
+
apiKey: overrides.apiKey ?? 'test-api-key',
|
|
268
|
+
fetch: overrides.fetch ?? testFetch,
|
|
269
|
+
fetchAgentFromDatabase:
|
|
270
|
+
overrides.fetchAgentFromDatabase ?? mock(async () => null),
|
|
271
|
+
databaseAgentCache: overrides.databaseAgentCache ?? new Map<string, null>(),
|
|
272
|
+
consumeCreditsWithFallback:
|
|
273
|
+
overrides.consumeCreditsWithFallback ?? mock(async () => {}),
|
|
274
|
+
getUserInfoFromApiKey:
|
|
275
|
+
overrides.getUserInfoFromApiKey ??
|
|
276
|
+
mock(async () => ({
|
|
277
|
+
id: 'test-user-id',
|
|
278
|
+
email: 'test@example.com',
|
|
279
|
+
})),
|
|
280
|
+
handleStepsLogChunk: overrides.handleStepsLogChunk ?? mock(() => {}),
|
|
281
|
+
requestOptionalFile:
|
|
282
|
+
overrides.requestOptionalFile ?? mock(async () => null),
|
|
283
|
+
sendSubagentChunk: overrides.sendSubagentChunk ?? mock(() => {}),
|
|
284
|
+
...overrides,
|
|
285
|
+
}
|
|
286
|
+
}
|
|
287
|
+
|
|
288
|
+
export function createTestAgentRuntimeDeps(): Omit<
|
|
289
|
+
TestAgentRuntimeParams,
|
|
290
|
+
'agentTemplate' | 'localAgentTemplates'
|
|
291
|
+
> {
|
|
292
|
+
return {
|
|
293
|
+
sendAction: mock(() => {}),
|
|
294
|
+
requestFiles: mock(async () => ({})),
|
|
295
|
+
requestToolCall: mock(async () => ({
|
|
296
|
+
success: true,
|
|
297
|
+
result: 'mock result',
|
|
298
|
+
})),
|
|
299
|
+
onResponseChunk: mock(() => {}),
|
|
300
|
+
fileContext: mockFileContext,
|
|
301
|
+
promptAiSdkStream: mock(async function* () {
|
|
302
|
+
yield { type: 'text' as const, text: 'Mock response\n\n' }
|
|
303
|
+
yield {
|
|
304
|
+
type: 'tool-call' as const,
|
|
305
|
+
toolName: 'end_turn',
|
|
306
|
+
toolCallId: 'mock-id',
|
|
307
|
+
input: {},
|
|
308
|
+
}
|
|
309
|
+
return promptSuccess('mock-message-id')
|
|
310
|
+
}),
|
|
311
|
+
promptAiSdk: mock(async () => promptSuccess('Mock response')),
|
|
312
|
+
promptAiSdkStructured: mock(async () => promptSuccess({})),
|
|
313
|
+
requestMcpToolData: mock(async () => ({})),
|
|
314
|
+
startAgentRun: mock(async () => 'test-run-id'),
|
|
315
|
+
finishAgentRun: mock(async () => {}),
|
|
316
|
+
addAgentStep: mock(async () => 'test-step-id'),
|
|
317
|
+
logger: testLogger,
|
|
318
|
+
trackEvent: mock(() => {}),
|
|
319
|
+
clientEnv: testClientEnv,
|
|
320
|
+
ciEnv: testCiEnv,
|
|
321
|
+
apiKey: 'test-api-key',
|
|
322
|
+
fetch: testFetch,
|
|
323
|
+
fetchAgentFromDatabase: mock(async () => null),
|
|
324
|
+
databaseAgentCache: new Map<string, null>(),
|
|
325
|
+
consumeCreditsWithFallback: mock(async () => {}),
|
|
326
|
+
getUserInfoFromApiKey: mock(async () => ({
|
|
327
|
+
id: 'test-user-id',
|
|
328
|
+
email: 'test@example.com',
|
|
329
|
+
})),
|
|
330
|
+
handleStepsLogChunk: mock(() => {}),
|
|
331
|
+
requestOptionalFile: mock(async () => null),
|
|
332
|
+
sendSubagentChunk: mock(() => {}),
|
|
333
|
+
}
|
|
334
|
+
}
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Consolidated testing utilities for Anvil.
|
|
3
|
+
*
|
|
4
|
+
* This module re-exports all testing utilities from a single entry point,
|
|
5
|
+
* making it easy to import everything you need for testing.
|
|
6
|
+
*
|
|
7
|
+
* ## Module Overview
|
|
8
|
+
*
|
|
9
|
+
* - **mocks**: Typed mock factories for logger, analytics, database, crypto, and streams
|
|
10
|
+
* - **fixtures**: Pre-built test fixtures for agent runtime and other components
|
|
11
|
+
* - **errors**: Typed error creators for testing error handling
|
|
12
|
+
* - **mock-modules**: Dynamic module mocking utilities
|
|
13
|
+
* - **env**: Test environment helpers
|
|
14
|
+
*
|
|
15
|
+
* @example
|
|
16
|
+
* ```typescript
|
|
17
|
+
* import {
|
|
18
|
+
* // Mock factories
|
|
19
|
+
* createMockLogger,
|
|
20
|
+
* createMockAnalytics,
|
|
21
|
+
* setupDbSpies,
|
|
22
|
+
* setupCryptoMocks,
|
|
23
|
+
*
|
|
24
|
+
* // Fixtures
|
|
25
|
+
* createTestAgentRuntimeParams,
|
|
26
|
+
*
|
|
27
|
+
* // Errors
|
|
28
|
+
* createNodeError,
|
|
29
|
+
*
|
|
30
|
+
* // Module mocking
|
|
31
|
+
* mockModule,
|
|
32
|
+
* clearMockedModules,
|
|
33
|
+
* } from '@anvil/common/testing'
|
|
34
|
+
* ```
|
|
35
|
+
*
|
|
36
|
+
* @module testing
|
|
37
|
+
*/
|
|
38
|
+
|
|
39
|
+
// ============================================================================
|
|
40
|
+
// Mock Factories
|
|
41
|
+
// ============================================================================
|
|
42
|
+
|
|
43
|
+
export * from './mocks'
|
|
44
|
+
|
|
45
|
+
// ============================================================================
|
|
46
|
+
// Fixtures
|
|
47
|
+
// ============================================================================
|
|
48
|
+
|
|
49
|
+
export {
|
|
50
|
+
createTestAgentRuntimeParams,
|
|
51
|
+
createTestAgentRuntimeDeps,
|
|
52
|
+
mockFileContext,
|
|
53
|
+
} from './fixtures/agent-runtime'
|
|
54
|
+
export type { TestAgentRuntimeParams } from './fixtures/agent-runtime'
|
|
55
|
+
|
|
56
|
+
// ============================================================================
|
|
57
|
+
// Error Utilities
|
|
58
|
+
// ============================================================================
|
|
59
|
+
|
|
60
|
+
export { createNodeError, createPostgresError } from './errors'
|
|
61
|
+
export type { NodeError, PostgresError } from './errors'
|
|
62
|
+
|
|
63
|
+
// ============================================================================
|
|
64
|
+
// Module Mocking
|
|
65
|
+
// ============================================================================
|
|
66
|
+
|
|
67
|
+
export { mockModule, clearMockedModules } from './mock-modules'
|
|
68
|
+
|
|
69
|
+
// ============================================================================
|
|
70
|
+
// Test Setup Utilities
|
|
71
|
+
// ============================================================================
|
|
72
|
+
|
|
73
|
+
export { createTestSetup, sleep, waitFor, captureCallArgs } from './setup'
|
|
74
|
+
export type { CreateTestSetupOptions, TestSetupResult } from './setup'
|
|
75
|
+
|
|
76
|
+
// ============================================================================
|
|
77
|
+
// Environment Helpers (re-exported from sibling modules)
|
|
78
|
+
// ============================================================================
|
|
79
|
+
|
|
80
|
+
// Note: These are in separate files for historical reasons but are commonly
|
|
81
|
+
// used together with other testing utilities.
|
|
82
|
+
// Import directly from their modules if you need only env helpers:
|
|
83
|
+
// - '@anvil/common/testing-env-process' for process env
|
|
84
|
+
// - '@anvil/common/testing-env-ci' for CI env
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { mock } from 'bun:test'
|
|
2
|
+
|
|
3
|
+
export type MockResult = {
|
|
4
|
+
clear: () => void
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
const originalModuleCache: Record<string, any> = {}
|
|
8
|
+
let mockModuleCache: Record<string, MockResult> = {}
|
|
9
|
+
|
|
10
|
+
/**
|
|
11
|
+
*
|
|
12
|
+
* @param modulePath - the path starting from this files' path.
|
|
13
|
+
* @param renderMocks - function to generate mocks (by their named or default exports)
|
|
14
|
+
* @returns an object
|
|
15
|
+
*/
|
|
16
|
+
export async function mockModule(
|
|
17
|
+
modulePath: string,
|
|
18
|
+
renderMocks: () => Record<string, any>,
|
|
19
|
+
): Promise<MockResult> {
|
|
20
|
+
let original = originalModuleCache[modulePath]
|
|
21
|
+
if (!original) {
|
|
22
|
+
const moduleExports = await import(modulePath)
|
|
23
|
+
original = {
|
|
24
|
+
...moduleExports,
|
|
25
|
+
}
|
|
26
|
+
originalModuleCache[modulePath] = original
|
|
27
|
+
}
|
|
28
|
+
let mocks = renderMocks()
|
|
29
|
+
let result = {
|
|
30
|
+
...original,
|
|
31
|
+
...mocks,
|
|
32
|
+
}
|
|
33
|
+
mock.module(modulePath, () => result)
|
|
34
|
+
let num = 0
|
|
35
|
+
let key = modulePath
|
|
36
|
+
while (key in mockModuleCache) {
|
|
37
|
+
num++
|
|
38
|
+
key = `${modulePath}\n${num}`
|
|
39
|
+
}
|
|
40
|
+
const mocked: MockResult = {
|
|
41
|
+
clear: () => {
|
|
42
|
+
mock.module(modulePath, () => original)
|
|
43
|
+
delete mockModuleCache[key]
|
|
44
|
+
},
|
|
45
|
+
}
|
|
46
|
+
mockModuleCache[key] = mocked
|
|
47
|
+
return mocked
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
export const clearMockedModules = () => {
|
|
51
|
+
Object.values(mockModuleCache).forEach((mockResult) => mockResult.clear())
|
|
52
|
+
mockModuleCache = {}
|
|
53
|
+
}
|
|
@@ -0,0 +1,123 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Shared mock types for testing.
|
|
3
|
+
*
|
|
4
|
+
* This module provides common mock types and factory functions that are
|
|
5
|
+
* frequently used across test files. Using these shared types ensures
|
|
6
|
+
* consistency and reduces duplication in test code.
|
|
7
|
+
*
|
|
8
|
+
* @example
|
|
9
|
+
* ```typescript
|
|
10
|
+
* import {
|
|
11
|
+
* createMockLogger,
|
|
12
|
+
* type MockUserInfo,
|
|
13
|
+
* type MockCreditResult,
|
|
14
|
+
* } from '@anvil/common/testing/mock-types'
|
|
15
|
+
*
|
|
16
|
+
* const logger = createMockLogger()
|
|
17
|
+
* const userInfo: MockUserInfo = { id: 'user-123' }
|
|
18
|
+
* ```
|
|
19
|
+
*/
|
|
20
|
+
|
|
21
|
+
import { mock } from 'bun:test'
|
|
22
|
+
|
|
23
|
+
import type { Logger } from '../types/contracts/logger'
|
|
24
|
+
|
|
25
|
+
/**
|
|
26
|
+
* Mock user info returned by API key lookup functions.
|
|
27
|
+
* Contains the minimal user identification data needed for testing.
|
|
28
|
+
*/
|
|
29
|
+
export interface MockUserInfo {
|
|
30
|
+
id: string
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
/**
|
|
34
|
+
* Mock result from credit consumption operations.
|
|
35
|
+
* Used when testing billing-related functionality.
|
|
36
|
+
*/
|
|
37
|
+
export interface MockCreditResult {
|
|
38
|
+
success: boolean
|
|
39
|
+
value: { chargedToOrganization: boolean }
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
/**
|
|
43
|
+
* Mock file stat result for filesystem operations.
|
|
44
|
+
* Provides typed methods for checking file type.
|
|
45
|
+
*/
|
|
46
|
+
export interface MockStatResult {
|
|
47
|
+
isDirectory: () => boolean
|
|
48
|
+
isFile: () => boolean
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
/**
|
|
52
|
+
* Typed mock logger where each method is a Bun test mock.
|
|
53
|
+
* Useful for verifying that specific log methods were called.
|
|
54
|
+
*/
|
|
55
|
+
export type MockLogger = {
|
|
56
|
+
[K in keyof Logger]: ReturnType<typeof mock> & Logger[K]
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
/**
|
|
60
|
+
* Creates a mock logger with all methods as Bun test mocks.
|
|
61
|
+
* Each method can be inspected for calls using mock.calls.
|
|
62
|
+
*
|
|
63
|
+
* @example
|
|
64
|
+
* ```typescript
|
|
65
|
+
* const logger = createMockLogger()
|
|
66
|
+
* someFunction({ logger })
|
|
67
|
+
* expect(logger.error.mock.calls.length).toBe(1)
|
|
68
|
+
* ```
|
|
69
|
+
*/
|
|
70
|
+
export function createMockLogger(): MockLogger {
|
|
71
|
+
return {
|
|
72
|
+
info: mock(() => {}) as ReturnType<typeof mock> & Logger['info'],
|
|
73
|
+
error: mock(() => {}) as ReturnType<typeof mock> & Logger['error'],
|
|
74
|
+
warn: mock(() => {}) as ReturnType<typeof mock> & Logger['warn'],
|
|
75
|
+
debug: mock(() => {}) as ReturnType<typeof mock> & Logger['debug'],
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
/**
|
|
80
|
+
* Creates a mock stat result for filesystem testing.
|
|
81
|
+
*
|
|
82
|
+
* @param options - Configure whether the mock represents a directory or file
|
|
83
|
+
* @returns A MockStatResult with the specified behavior
|
|
84
|
+
*
|
|
85
|
+
* @example
|
|
86
|
+
* ```typescript
|
|
87
|
+
* const dirStat = createMockStatResult({ isDirectory: true })
|
|
88
|
+
* const fileStat = createMockStatResult({ isFile: true })
|
|
89
|
+
* ```
|
|
90
|
+
*/
|
|
91
|
+
export function createMockStatResult(options: {
|
|
92
|
+
isDirectory?: boolean
|
|
93
|
+
isFile?: boolean
|
|
94
|
+
}): MockStatResult {
|
|
95
|
+
return {
|
|
96
|
+
isDirectory: () => options.isDirectory ?? false,
|
|
97
|
+
isFile: () => options.isFile ?? false,
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
/**
|
|
102
|
+
* Creates a mock credit result for billing-related tests.
|
|
103
|
+
*
|
|
104
|
+
* @param options - Configure the success state and organization charging
|
|
105
|
+
* @returns A MockCreditResult with the specified values
|
|
106
|
+
*
|
|
107
|
+
* @example
|
|
108
|
+
* ```typescript
|
|
109
|
+
* const successResult = createMockCreditResult({ success: true })
|
|
110
|
+
* const orgResult = createMockCreditResult({ success: true, chargedToOrganization: true })
|
|
111
|
+
* ```
|
|
112
|
+
*/
|
|
113
|
+
export function createMockCreditResult(
|
|
114
|
+
options: {
|
|
115
|
+
success?: boolean
|
|
116
|
+
chargedToOrganization?: boolean
|
|
117
|
+
} = {},
|
|
118
|
+
): MockCreditResult {
|
|
119
|
+
return {
|
|
120
|
+
success: options.success ?? true,
|
|
121
|
+
value: { chargedToOrganization: options.chargedToOrganization ?? false },
|
|
122
|
+
}
|
|
123
|
+
}
|