@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,337 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Typed database mock factory for testing.
|
|
3
|
+
*
|
|
4
|
+
* Provides type-safe mocks for Drizzle database operations used throughout the codebase.
|
|
5
|
+
* Replaces the need for `as any` casts when setting up database spies.
|
|
6
|
+
*
|
|
7
|
+
* @example
|
|
8
|
+
* ```typescript
|
|
9
|
+
* import { createMockDbOperations, setupDbSpies } from '@anvil/common/testing/mocks/database'
|
|
10
|
+
*
|
|
11
|
+
* // Option 1: Create mock operations object
|
|
12
|
+
* const dbOps = createMockDbOperations()
|
|
13
|
+
*
|
|
14
|
+
* // Option 2: Setup spies on actual db module
|
|
15
|
+
* const spies = setupDbSpies(db)
|
|
16
|
+
* await runTest()
|
|
17
|
+
* spies.restore()
|
|
18
|
+
* ```
|
|
19
|
+
*/
|
|
20
|
+
|
|
21
|
+
import { mock, spyOn } from 'bun:test'
|
|
22
|
+
|
|
23
|
+
import type { Mock } from 'bun:test'
|
|
24
|
+
|
|
25
|
+
/**
|
|
26
|
+
* Type for the chainable insert result.
|
|
27
|
+
*/
|
|
28
|
+
export interface MockInsertResult<T = unknown> {
|
|
29
|
+
values: Mock<(data: T | T[]) => Promise<{ id: string }>>
|
|
30
|
+
returning: Mock<() => Promise<T[]>>
|
|
31
|
+
onConflictDoNothing: Mock<() => MockInsertResult<T>>
|
|
32
|
+
onConflictDoUpdate: Mock<
|
|
33
|
+
(config: { target: unknown; set: unknown }) => MockInsertResult<T>
|
|
34
|
+
>
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
/**
|
|
38
|
+
* Type for the chainable update result.
|
|
39
|
+
*/
|
|
40
|
+
export interface MockUpdateResult<T = unknown> {
|
|
41
|
+
set: Mock<(data: Partial<T>) => MockUpdateSetResult>
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
/**
|
|
45
|
+
* Type for the update.set result.
|
|
46
|
+
*/
|
|
47
|
+
export interface MockUpdateSetResult {
|
|
48
|
+
where: Mock<(condition: unknown) => Promise<void>>
|
|
49
|
+
returning: Mock<() => Promise<unknown[]>>
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
/**
|
|
53
|
+
* Type for the chainable select result.
|
|
54
|
+
*/
|
|
55
|
+
export interface MockSelectResult<T = unknown> {
|
|
56
|
+
from: Mock<(table: unknown) => MockSelectFromResult<T>>
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
/**
|
|
60
|
+
* Type for the select.from result.
|
|
61
|
+
*/
|
|
62
|
+
export interface MockSelectFromResult<T = unknown> {
|
|
63
|
+
where: Mock<(condition: unknown) => MockSelectWhereResult<T>>
|
|
64
|
+
leftJoin: Mock<
|
|
65
|
+
(table: unknown, condition: unknown) => MockSelectFromResult<T>
|
|
66
|
+
>
|
|
67
|
+
innerJoin: Mock<
|
|
68
|
+
(table: unknown, condition: unknown) => MockSelectFromResult<T>
|
|
69
|
+
>
|
|
70
|
+
orderBy: Mock<(...columns: unknown[]) => MockSelectFromResult<T>>
|
|
71
|
+
limit: Mock<(n: number) => MockSelectFromResult<T>>
|
|
72
|
+
offset: Mock<(n: number) => MockSelectFromResult<T>>
|
|
73
|
+
then: Mock<(resolve: (value: T[]) => void) => Promise<T[]>>
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
/**
|
|
77
|
+
* Type for the select.from.where result.
|
|
78
|
+
*/
|
|
79
|
+
export interface MockSelectWhereResult<T = unknown> {
|
|
80
|
+
then: Mock<(resolve: (value: T[]) => void) => Promise<T[]>>
|
|
81
|
+
leftJoin: Mock<
|
|
82
|
+
(table: unknown, condition: unknown) => MockSelectWhereResult<T>
|
|
83
|
+
>
|
|
84
|
+
innerJoin: Mock<
|
|
85
|
+
(table: unknown, condition: unknown) => MockSelectWhereResult<T>
|
|
86
|
+
>
|
|
87
|
+
orderBy: Mock<(...columns: unknown[]) => MockSelectWhereResult<T>>
|
|
88
|
+
limit: Mock<(n: number) => MockSelectWhereResult<T>>
|
|
89
|
+
offset: Mock<(n: number) => MockSelectWhereResult<T>>
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
/**
|
|
93
|
+
* Type for the chainable delete result.
|
|
94
|
+
*/
|
|
95
|
+
export interface MockDeleteResult {
|
|
96
|
+
where: Mock<(condition: unknown) => Promise<void>>
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
/**
|
|
100
|
+
* Interface for the complete mock database operations.
|
|
101
|
+
*/
|
|
102
|
+
export interface MockDbOperations {
|
|
103
|
+
insert: Mock<(table: unknown) => MockInsertResult>
|
|
104
|
+
update: Mock<(table: unknown) => MockUpdateResult>
|
|
105
|
+
select: Mock<(columns?: unknown) => MockSelectResult>
|
|
106
|
+
delete: Mock<(table: unknown) => MockDeleteResult>
|
|
107
|
+
transaction: Mock<<T>(fn: (tx: MockDbOperations) => Promise<T>) => Promise<T>>
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
/**
|
|
111
|
+
* Options for creating mock database operations.
|
|
112
|
+
*/
|
|
113
|
+
export interface CreateMockDbOptions {
|
|
114
|
+
/**
|
|
115
|
+
* Default data to return from select queries.
|
|
116
|
+
*/
|
|
117
|
+
defaultSelectData?: unknown[]
|
|
118
|
+
|
|
119
|
+
/**
|
|
120
|
+
* Default ID to return from insert operations.
|
|
121
|
+
*/
|
|
122
|
+
defaultInsertId?: string
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
/**
|
|
126
|
+
* Creates type-safe mock database operations for testing.
|
|
127
|
+
*
|
|
128
|
+
* @param options - Configuration options for the mock
|
|
129
|
+
* @returns A mock database operations object
|
|
130
|
+
*
|
|
131
|
+
* @example
|
|
132
|
+
* ```typescript
|
|
133
|
+
* const dbOps = createMockDbOperations({
|
|
134
|
+
* defaultSelectData: [{ id: '1', name: 'Test' }],
|
|
135
|
+
* defaultInsertId: 'new-id',
|
|
136
|
+
* })
|
|
137
|
+
*
|
|
138
|
+
* // The mocks are chainable just like real Drizzle
|
|
139
|
+
* await dbOps.insert(users).values({ name: 'Test' })
|
|
140
|
+
* await dbOps.select().from(users).where(eq(users.id, '1'))
|
|
141
|
+
* ```
|
|
142
|
+
*/
|
|
143
|
+
export function createMockDbOperations(
|
|
144
|
+
options: CreateMockDbOptions = {},
|
|
145
|
+
): MockDbOperations {
|
|
146
|
+
const { defaultSelectData = [], defaultInsertId = 'mock-id' } = options
|
|
147
|
+
|
|
148
|
+
const createMockSelectWhereResult = <T>(
|
|
149
|
+
data: T[] = defaultSelectData as T[],
|
|
150
|
+
): MockSelectWhereResult<T> => {
|
|
151
|
+
const result: MockSelectWhereResult<T> = {
|
|
152
|
+
then: mock((resolve) => {
|
|
153
|
+
resolve(data)
|
|
154
|
+
return Promise.resolve(data)
|
|
155
|
+
}),
|
|
156
|
+
leftJoin: mock(() => result),
|
|
157
|
+
innerJoin: mock(() => result),
|
|
158
|
+
orderBy: mock(() => result),
|
|
159
|
+
limit: mock(() => result),
|
|
160
|
+
offset: mock(() => result),
|
|
161
|
+
}
|
|
162
|
+
return result
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
const createMockSelectFromResult = <T>(
|
|
166
|
+
data: T[] = defaultSelectData as T[],
|
|
167
|
+
): MockSelectFromResult<T> => {
|
|
168
|
+
const whereResult = createMockSelectWhereResult(data)
|
|
169
|
+
const result: MockSelectFromResult<T> = {
|
|
170
|
+
where: mock(() => whereResult),
|
|
171
|
+
leftJoin: mock(() => result),
|
|
172
|
+
innerJoin: mock(() => result),
|
|
173
|
+
orderBy: mock(() => result),
|
|
174
|
+
limit: mock(() => result),
|
|
175
|
+
offset: mock(() => result),
|
|
176
|
+
then: mock((resolve) => {
|
|
177
|
+
resolve(data)
|
|
178
|
+
return Promise.resolve(data)
|
|
179
|
+
}),
|
|
180
|
+
}
|
|
181
|
+
return result
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
const createMockInsertResult = <T>(): MockInsertResult<T> => {
|
|
185
|
+
const result: MockInsertResult<T> = {
|
|
186
|
+
values: mock(() => Promise.resolve({ id: defaultInsertId })),
|
|
187
|
+
returning: mock(() => Promise.resolve([])),
|
|
188
|
+
onConflictDoNothing: mock(() => result),
|
|
189
|
+
onConflictDoUpdate: mock(() => result),
|
|
190
|
+
}
|
|
191
|
+
return result
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
const createMockUpdateSetResult = (): MockUpdateSetResult => ({
|
|
195
|
+
where: mock(() => Promise.resolve()),
|
|
196
|
+
returning: mock(() => Promise.resolve([])),
|
|
197
|
+
})
|
|
198
|
+
|
|
199
|
+
const createMockUpdateResult = <T>(): MockUpdateResult<T> => ({
|
|
200
|
+
set: mock(() => createMockUpdateSetResult()),
|
|
201
|
+
})
|
|
202
|
+
|
|
203
|
+
const createMockDeleteResult = (): MockDeleteResult => ({
|
|
204
|
+
where: mock(() => Promise.resolve()),
|
|
205
|
+
})
|
|
206
|
+
|
|
207
|
+
const dbOps: MockDbOperations = {
|
|
208
|
+
insert: mock(() => createMockInsertResult()),
|
|
209
|
+
update: mock(() => createMockUpdateResult()),
|
|
210
|
+
select: mock(() => ({
|
|
211
|
+
from: mock(() => createMockSelectFromResult()),
|
|
212
|
+
})),
|
|
213
|
+
delete: mock(() => createMockDeleteResult()),
|
|
214
|
+
transaction: mock(async (fn) => fn(dbOps)),
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
return dbOps
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
/**
|
|
221
|
+
* Result of setting up database spies.
|
|
222
|
+
*/
|
|
223
|
+
export interface DbSpies {
|
|
224
|
+
/** Spy on insert operations */
|
|
225
|
+
insert: ReturnType<typeof spyOn>
|
|
226
|
+
/** Spy on update operations */
|
|
227
|
+
update: ReturnType<typeof spyOn>
|
|
228
|
+
/** Restore all spies */
|
|
229
|
+
restore: () => void
|
|
230
|
+
/** Clear all spy call history */
|
|
231
|
+
clear: () => void
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
/**
|
|
235
|
+
* Sets up spies on a database module for insert and update operations.
|
|
236
|
+
* This is the most common pattern used in tests.
|
|
237
|
+
*
|
|
238
|
+
* @param db - The database module to spy on
|
|
239
|
+
* @param options - Configuration options
|
|
240
|
+
* @returns Object containing the spies and cleanup utilities
|
|
241
|
+
*
|
|
242
|
+
* @example
|
|
243
|
+
* ```typescript
|
|
244
|
+
* const db = createMockDbOperations()
|
|
245
|
+
*
|
|
246
|
+
* describe('my test', () => {
|
|
247
|
+
* let dbSpies: DbSpies
|
|
248
|
+
*
|
|
249
|
+
* beforeEach(() => {
|
|
250
|
+
* dbSpies = setupDbSpies(db)
|
|
251
|
+
* })
|
|
252
|
+
*
|
|
253
|
+
* afterEach(() => {
|
|
254
|
+
* dbSpies.restore()
|
|
255
|
+
* })
|
|
256
|
+
*
|
|
257
|
+
* it('inserts data', async () => {
|
|
258
|
+
* await createUser({ name: 'Test' })
|
|
259
|
+
* expect(dbSpies.insert).toHaveBeenCalled()
|
|
260
|
+
* })
|
|
261
|
+
* })
|
|
262
|
+
* ```
|
|
263
|
+
*/
|
|
264
|
+
|
|
265
|
+
/**
|
|
266
|
+
* Sets up spies on a database module for insert and update operations.
|
|
267
|
+
* Accepts any object with insert and update methods.
|
|
268
|
+
*/
|
|
269
|
+
export function setupDbSpies(
|
|
270
|
+
db: { insert: unknown; update: unknown },
|
|
271
|
+
options: CreateMockDbOptions = {},
|
|
272
|
+
): DbSpies {
|
|
273
|
+
const { defaultInsertId = 'test-run-id' } = options
|
|
274
|
+
|
|
275
|
+
const mockInsertResult = {
|
|
276
|
+
values: mock(() => Promise.resolve({ id: defaultInsertId })),
|
|
277
|
+
}
|
|
278
|
+
|
|
279
|
+
const mockUpdateResult = {
|
|
280
|
+
set: mock(() => ({
|
|
281
|
+
where: mock(() => Promise.resolve()),
|
|
282
|
+
})),
|
|
283
|
+
}
|
|
284
|
+
|
|
285
|
+
// Cast db to a spyable type - the actual db module has complex types that
|
|
286
|
+
// don't play well with spyOn's inference, but the spy still works at runtime
|
|
287
|
+
const spyableDb = db as { insert: () => unknown; update: () => unknown }
|
|
288
|
+
const insertSpy = spyOn(spyableDb, 'insert').mockReturnValue(mockInsertResult)
|
|
289
|
+
const updateSpy = spyOn(spyableDb, 'update').mockReturnValue(mockUpdateResult)
|
|
290
|
+
|
|
291
|
+
return {
|
|
292
|
+
insert: insertSpy,
|
|
293
|
+
update: updateSpy,
|
|
294
|
+
restore: () => {
|
|
295
|
+
insertSpy.mockRestore()
|
|
296
|
+
updateSpy.mockRestore()
|
|
297
|
+
},
|
|
298
|
+
clear: () => {
|
|
299
|
+
insertSpy.mockClear()
|
|
300
|
+
updateSpy.mockClear()
|
|
301
|
+
},
|
|
302
|
+
}
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
/**
|
|
306
|
+
* Creates a mock for a database query builder chain that returns specific data.
|
|
307
|
+
*
|
|
308
|
+
* @param data - The data to return from the query
|
|
309
|
+
* @returns A thenable mock that resolves to the data
|
|
310
|
+
*
|
|
311
|
+
* @example
|
|
312
|
+
* ```typescript
|
|
313
|
+
* const mockQuery = createMockQueryResult([
|
|
314
|
+
* { id: '1', name: 'User 1' },
|
|
315
|
+
* { id: '2', name: 'User 2' },
|
|
316
|
+
* ])
|
|
317
|
+
*
|
|
318
|
+
* spyOn(userService, 'findAll').mockReturnValue(mockQuery)
|
|
319
|
+
* ```
|
|
320
|
+
*/
|
|
321
|
+
export function createMockQueryResult<T>(data: T[]): Promise<T[]> & {
|
|
322
|
+
where: Mock<() => Promise<T[]>>
|
|
323
|
+
orderBy: Mock<() => Promise<T[]>>
|
|
324
|
+
limit: Mock<() => Promise<T[]>>
|
|
325
|
+
} {
|
|
326
|
+
const promise = Promise.resolve(data) as Promise<T[]> & {
|
|
327
|
+
where: Mock<() => Promise<T[]>>
|
|
328
|
+
orderBy: Mock<() => Promise<T[]>>
|
|
329
|
+
limit: Mock<() => Promise<T[]>>
|
|
330
|
+
}
|
|
331
|
+
|
|
332
|
+
promise.where = mock(() => promise)
|
|
333
|
+
promise.orderBy = mock(() => promise)
|
|
334
|
+
promise.limit = mock(() => promise)
|
|
335
|
+
|
|
336
|
+
return promise
|
|
337
|
+
}
|
|
@@ -0,0 +1,219 @@
|
|
|
1
|
+
/** Typed fetch mock utilities for testing. */
|
|
2
|
+
|
|
3
|
+
import { mock } from 'bun:test'
|
|
4
|
+
|
|
5
|
+
import type { Mock } from 'bun:test'
|
|
6
|
+
|
|
7
|
+
export interface MockResponseOptions {
|
|
8
|
+
status?: number
|
|
9
|
+
statusText?: string
|
|
10
|
+
headers?: HeadersInit
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
export type MockFetch = Mock<typeof globalThis.fetch>
|
|
14
|
+
|
|
15
|
+
export interface InstallMockFetchResult {
|
|
16
|
+
mockFetch: MockFetch
|
|
17
|
+
restore: () => void
|
|
18
|
+
getCalls: () => MockFetchCall[]
|
|
19
|
+
clear: () => void
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
export interface MockFetchCall {
|
|
23
|
+
url: string | URL | Request
|
|
24
|
+
init?: RequestInit
|
|
25
|
+
jsonBody?: unknown
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
export interface CreateMockFetchOptions {
|
|
29
|
+
defaultImpl?: (
|
|
30
|
+
input: RequestInfo | URL,
|
|
31
|
+
init?: RequestInit,
|
|
32
|
+
) => Promise<Response>
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
/** Creates a Response with JSON body. */
|
|
36
|
+
export function mockJsonResponse(
|
|
37
|
+
data: unknown,
|
|
38
|
+
options: MockResponseOptions = {},
|
|
39
|
+
): Response {
|
|
40
|
+
const { status = 200, statusText, headers = {} } = options
|
|
41
|
+
|
|
42
|
+
return new Response(JSON.stringify(data), {
|
|
43
|
+
status,
|
|
44
|
+
statusText,
|
|
45
|
+
headers: {
|
|
46
|
+
'Content-Type': 'application/json',
|
|
47
|
+
...normalizeHeaders(headers),
|
|
48
|
+
},
|
|
49
|
+
})
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
/** Creates a Response with text body. */
|
|
53
|
+
export function mockTextResponse(
|
|
54
|
+
text: string,
|
|
55
|
+
options: MockResponseOptions = {},
|
|
56
|
+
): Response {
|
|
57
|
+
const { status = 200, statusText, headers = {} } = options
|
|
58
|
+
|
|
59
|
+
return new Response(text, {
|
|
60
|
+
status,
|
|
61
|
+
statusText,
|
|
62
|
+
headers: {
|
|
63
|
+
'Content-Type': 'text/plain',
|
|
64
|
+
...normalizeHeaders(headers),
|
|
65
|
+
},
|
|
66
|
+
})
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
/** Creates an error Response with default status text. */
|
|
70
|
+
export function mockErrorResponse(
|
|
71
|
+
status: number,
|
|
72
|
+
body?: string | object,
|
|
73
|
+
options: Omit<MockResponseOptions, 'status'> = {},
|
|
74
|
+
): Response {
|
|
75
|
+
const { statusText, headers = {} } = options
|
|
76
|
+
|
|
77
|
+
let responseBody: string
|
|
78
|
+
let contentType: string
|
|
79
|
+
|
|
80
|
+
if (body === undefined) {
|
|
81
|
+
responseBody = ''
|
|
82
|
+
contentType = 'text/plain'
|
|
83
|
+
} else if (typeof body === 'string') {
|
|
84
|
+
responseBody = body
|
|
85
|
+
contentType = 'text/plain'
|
|
86
|
+
} else {
|
|
87
|
+
responseBody = JSON.stringify(body)
|
|
88
|
+
contentType = 'application/json'
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
return new Response(responseBody, {
|
|
92
|
+
status,
|
|
93
|
+
statusText: statusText ?? getDefaultStatusText(status),
|
|
94
|
+
headers: {
|
|
95
|
+
'Content-Type': contentType,
|
|
96
|
+
...normalizeHeaders(headers),
|
|
97
|
+
},
|
|
98
|
+
})
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
/** Creates a mock fetch function. */
|
|
102
|
+
export function createMockFetch(
|
|
103
|
+
options: CreateMockFetchOptions = {},
|
|
104
|
+
): MockFetch {
|
|
105
|
+
const { defaultImpl } = options
|
|
106
|
+
|
|
107
|
+
const baseFn =
|
|
108
|
+
defaultImpl ??
|
|
109
|
+
(async (): Promise<Response> => {
|
|
110
|
+
throw new Error('Mock fetch not configured for this call')
|
|
111
|
+
})
|
|
112
|
+
|
|
113
|
+
const mockFn = Object.assign(mock(baseFn), {
|
|
114
|
+
preconnect: mock(async () => {}),
|
|
115
|
+
}) as unknown as MockFetch
|
|
116
|
+
|
|
117
|
+
return mockFn
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
/**
|
|
121
|
+
* Installs mock fetch globally. Returns mockFetch for configuration -
|
|
122
|
+
* the wrapper always captures calls before delegating to mockFetch.
|
|
123
|
+
*/
|
|
124
|
+
export function installMockFetch(
|
|
125
|
+
options: CreateMockFetchOptions = {},
|
|
126
|
+
): InstallMockFetchResult {
|
|
127
|
+
const originalFetch = globalThis.fetch
|
|
128
|
+
const capturedCalls: MockFetchCall[] = []
|
|
129
|
+
|
|
130
|
+
const mockFetch = createMockFetch({
|
|
131
|
+
defaultImpl:
|
|
132
|
+
options.defaultImpl ??
|
|
133
|
+
(async (): Promise<Response> => {
|
|
134
|
+
throw new Error('Mock fetch not configured for this call')
|
|
135
|
+
}),
|
|
136
|
+
})
|
|
137
|
+
|
|
138
|
+
// Wrap to capture calls
|
|
139
|
+
const wrappedMockFn = mock(
|
|
140
|
+
async (input: RequestInfo | URL, init?: RequestInit): Promise<Response> => {
|
|
141
|
+
const call: MockFetchCall = {
|
|
142
|
+
url: input,
|
|
143
|
+
init,
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
// Try to parse JSON body if present
|
|
147
|
+
if (init?.body && typeof init.body === 'string') {
|
|
148
|
+
try {
|
|
149
|
+
call.jsonBody = JSON.parse(init.body)
|
|
150
|
+
} catch {
|
|
151
|
+
// Not JSON, that's fine
|
|
152
|
+
}
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
capturedCalls.push(call)
|
|
156
|
+
|
|
157
|
+
// Call the actual mock implementation
|
|
158
|
+
return mockFetch(input, init)
|
|
159
|
+
},
|
|
160
|
+
)
|
|
161
|
+
|
|
162
|
+
const wrappedMock = Object.assign(wrappedMockFn, {
|
|
163
|
+
preconnect: mock(async () => {}),
|
|
164
|
+
}) as unknown as MockFetch
|
|
165
|
+
|
|
166
|
+
;(globalThis as any).fetch = wrappedMock
|
|
167
|
+
|
|
168
|
+
return {
|
|
169
|
+
mockFetch,
|
|
170
|
+
restore: () => {
|
|
171
|
+
globalThis.fetch = originalFetch
|
|
172
|
+
},
|
|
173
|
+
getCalls: () => [...capturedCalls],
|
|
174
|
+
clear: () => {
|
|
175
|
+
capturedCalls.length = 0
|
|
176
|
+
mockFetch.mockClear()
|
|
177
|
+
wrappedMock.mockClear()
|
|
178
|
+
},
|
|
179
|
+
}
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
function normalizeHeaders(headers: HeadersInit): Record<string, string> {
|
|
183
|
+
if (headers instanceof Headers) {
|
|
184
|
+
const result: Record<string, string> = {}
|
|
185
|
+
headers.forEach((value, key) => {
|
|
186
|
+
result[key] = value
|
|
187
|
+
})
|
|
188
|
+
return result
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
if (Array.isArray(headers)) {
|
|
192
|
+
return Object.fromEntries(headers)
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
return headers as Record<string, string>
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
function getDefaultStatusText(status: number): string {
|
|
199
|
+
const statusTexts: Record<number, string> = {
|
|
200
|
+
200: 'OK',
|
|
201
|
+
201: 'Created',
|
|
202
|
+
204: 'No Content',
|
|
203
|
+
400: 'Bad Request',
|
|
204
|
+
401: 'Unauthorized',
|
|
205
|
+
402: 'Payment Required',
|
|
206
|
+
403: 'Forbidden',
|
|
207
|
+
404: 'Not Found',
|
|
208
|
+
405: 'Method Not Allowed',
|
|
209
|
+
409: 'Conflict',
|
|
210
|
+
422: 'Unprocessable Entity',
|
|
211
|
+
429: 'Too Many Requests',
|
|
212
|
+
500: 'Internal Server Error',
|
|
213
|
+
502: 'Bad Gateway',
|
|
214
|
+
503: 'Service Unavailable',
|
|
215
|
+
504: 'Gateway Timeout',
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
return statusTexts[status] ?? ''
|
|
219
|
+
}
|
|
@@ -0,0 +1,166 @@
|
|
|
1
|
+
import { mock } from 'bun:test'
|
|
2
|
+
|
|
3
|
+
import type { AnvilFileSystem } from '../../types/filesystem'
|
|
4
|
+
import type { Mock } from 'bun:test'
|
|
5
|
+
import type { PathLike , Stats } from 'node:fs'
|
|
6
|
+
|
|
7
|
+
export interface CreateMockFsOptions {
|
|
8
|
+
files?: Record<string, string>
|
|
9
|
+
directories?: Record<string, string[]>
|
|
10
|
+
readFileImpl?: (path: string) => Promise<string>
|
|
11
|
+
readdirImpl?: (path: string) => Promise<string[]>
|
|
12
|
+
writeFileImpl?: (path: string, content: string) => Promise<void>
|
|
13
|
+
mkdirImpl?: (
|
|
14
|
+
path: string,
|
|
15
|
+
options?: { recursive?: boolean },
|
|
16
|
+
) => Promise<string | undefined>
|
|
17
|
+
statImpl?: (path: string) => Promise<Stats>
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
export interface MockFs extends AnvilFileSystem {}
|
|
21
|
+
|
|
22
|
+
export interface MockFsWithMocks {
|
|
23
|
+
readFile: Mock<
|
|
24
|
+
(path: PathLike, options?: { encoding?: BufferEncoding }) => Promise<string>
|
|
25
|
+
>
|
|
26
|
+
readdir: Mock<(path: PathLike) => Promise<string[]>>
|
|
27
|
+
writeFile: Mock<(path: PathLike, data: string) => Promise<void>>
|
|
28
|
+
mkdir: Mock<
|
|
29
|
+
(
|
|
30
|
+
path: PathLike,
|
|
31
|
+
options?: { recursive?: boolean },
|
|
32
|
+
) => Promise<string | undefined>
|
|
33
|
+
>
|
|
34
|
+
stat: Mock<(path: PathLike) => Promise<Stats>>
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
/** Creates a mock filesystem compatible with AnvilFileSystem. */
|
|
38
|
+
export function createMockFs(options: CreateMockFsOptions = {}): MockFs {
|
|
39
|
+
const {
|
|
40
|
+
files = {},
|
|
41
|
+
directories = {},
|
|
42
|
+
readFileImpl,
|
|
43
|
+
readdirImpl,
|
|
44
|
+
writeFileImpl,
|
|
45
|
+
mkdirImpl,
|
|
46
|
+
statImpl,
|
|
47
|
+
} = options
|
|
48
|
+
|
|
49
|
+
const writtenFiles: Record<string, string> = { ...files }
|
|
50
|
+
const createdDirs: Set<string> = new Set(Object.keys(directories))
|
|
51
|
+
|
|
52
|
+
const defaultReadFile = async (path: PathLike): Promise<string> => {
|
|
53
|
+
const pathStr = String(path)
|
|
54
|
+
if (pathStr in writtenFiles) {
|
|
55
|
+
return writtenFiles[pathStr]
|
|
56
|
+
}
|
|
57
|
+
throw new Error(`File not found: ${pathStr}`)
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
const defaultReaddir = async (path: PathLike): Promise<string[]> => {
|
|
61
|
+
const pathStr = String(path)
|
|
62
|
+
if (pathStr in directories) {
|
|
63
|
+
return directories[pathStr]
|
|
64
|
+
}
|
|
65
|
+
throw new Error(`Directory not found: ${pathStr}`)
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
const defaultWriteFile = async (
|
|
69
|
+
path: PathLike,
|
|
70
|
+
data: string,
|
|
71
|
+
): Promise<void> => {
|
|
72
|
+
const pathStr = String(path)
|
|
73
|
+
writtenFiles[pathStr] = data
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
const defaultMkdir = async (path: PathLike): Promise<string | undefined> => {
|
|
77
|
+
const pathStr = String(path)
|
|
78
|
+
createdDirs.add(pathStr)
|
|
79
|
+
return undefined
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
const defaultStat = async (path: PathLike): Promise<Stats> => {
|
|
83
|
+
const pathStr = String(path)
|
|
84
|
+
const isFile = pathStr in writtenFiles
|
|
85
|
+
const isDir = pathStr in directories || createdDirs.has(pathStr)
|
|
86
|
+
|
|
87
|
+
if (!isFile && !isDir) {
|
|
88
|
+
throw new Error(`Path not found: ${pathStr}`)
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
return {
|
|
92
|
+
isFile: () => isFile,
|
|
93
|
+
isDirectory: () => isDir,
|
|
94
|
+
isBlockDevice: () => false,
|
|
95
|
+
isCharacterDevice: () => false,
|
|
96
|
+
isSymbolicLink: () => false,
|
|
97
|
+
isFIFO: () => false,
|
|
98
|
+
isSocket: () => false,
|
|
99
|
+
dev: 0,
|
|
100
|
+
ino: 0,
|
|
101
|
+
mode: isDir ? 0o755 : 0o644,
|
|
102
|
+
nlink: 1,
|
|
103
|
+
uid: 0,
|
|
104
|
+
gid: 0,
|
|
105
|
+
rdev: 0,
|
|
106
|
+
size: isFile ? writtenFiles[pathStr].length : 0,
|
|
107
|
+
blksize: 4096,
|
|
108
|
+
blocks: 0,
|
|
109
|
+
atimeMs: Date.now(),
|
|
110
|
+
mtimeMs: Date.now(),
|
|
111
|
+
ctimeMs: Date.now(),
|
|
112
|
+
birthtimeMs: Date.now(),
|
|
113
|
+
atime: new Date(),
|
|
114
|
+
mtime: new Date(),
|
|
115
|
+
ctime: new Date(),
|
|
116
|
+
birthtime: new Date(),
|
|
117
|
+
} as Stats
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
const readFileFn = readFileImpl
|
|
121
|
+
? async (path: PathLike) => readFileImpl(String(path))
|
|
122
|
+
: defaultReadFile
|
|
123
|
+
|
|
124
|
+
const readdirFn = readdirImpl
|
|
125
|
+
? async (path: PathLike) => readdirImpl(String(path))
|
|
126
|
+
: defaultReaddir
|
|
127
|
+
|
|
128
|
+
const writeFileFn = writeFileImpl
|
|
129
|
+
? async (path: PathLike, data: string) => writeFileImpl(String(path), data)
|
|
130
|
+
: defaultWriteFile
|
|
131
|
+
|
|
132
|
+
const mkdirFn = mkdirImpl
|
|
133
|
+
? async (path: PathLike, opts?: { recursive?: boolean }) =>
|
|
134
|
+
mkdirImpl(String(path), opts)
|
|
135
|
+
: defaultMkdir
|
|
136
|
+
|
|
137
|
+
const statFn = statImpl
|
|
138
|
+
? async (path: PathLike) => statImpl(String(path))
|
|
139
|
+
: defaultStat
|
|
140
|
+
|
|
141
|
+
return {
|
|
142
|
+
readFile: mock(readFileFn),
|
|
143
|
+
readdir: mock(readdirFn),
|
|
144
|
+
writeFile: mock(writeFileFn),
|
|
145
|
+
mkdir: mock(mkdirFn),
|
|
146
|
+
stat: mock(statFn),
|
|
147
|
+
} as unknown as MockFs
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
export function restoreMockFs(mockFs: MockFs): void {
|
|
151
|
+
const mocks = mockFs as unknown as MockFsWithMocks
|
|
152
|
+
mocks.readFile.mockRestore()
|
|
153
|
+
mocks.readdir.mockRestore()
|
|
154
|
+
mocks.writeFile.mockRestore()
|
|
155
|
+
mocks.mkdir.mockRestore()
|
|
156
|
+
mocks.stat.mockRestore()
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
export function clearMockFs(mockFs: MockFs): void {
|
|
160
|
+
const mocks = mockFs as unknown as MockFsWithMocks
|
|
161
|
+
mocks.readFile.mockClear()
|
|
162
|
+
mocks.readdir.mockClear()
|
|
163
|
+
mocks.writeFile.mockClear()
|
|
164
|
+
mocks.mkdir.mockClear()
|
|
165
|
+
mocks.stat.mockClear()
|
|
166
|
+
}
|