@alumbwe/anvil 1.0.20 → 1.0.22
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 +74 -70
- 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,261 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Typed analytics mock factory for testing.
|
|
3
|
+
*
|
|
4
|
+
* Provides type-safe mocks for analytics functions used throughout the codebase.
|
|
5
|
+
* Helps avoid the need for `as any` casts when mocking analytics in tests.
|
|
6
|
+
*
|
|
7
|
+
* @example
|
|
8
|
+
* ```typescript
|
|
9
|
+
* import { createMockAnalytics, setupAnalyticsMocks } from '@anvil/common/testing/mocks/analytics'
|
|
10
|
+
*
|
|
11
|
+
* // Option 1: Create mock object
|
|
12
|
+
* const analytics = createMockAnalytics()
|
|
13
|
+
* someFunction({ trackEvent: analytics.trackEvent })
|
|
14
|
+
*
|
|
15
|
+
* // Option 2: Setup spies on actual module
|
|
16
|
+
* const spies = setupAnalyticsMocks()
|
|
17
|
+
* await runTest()
|
|
18
|
+
* expect(spies.trackEvent).toHaveBeenCalledWith('event_name', { prop: 'value' })
|
|
19
|
+
* spies.restore()
|
|
20
|
+
* ```
|
|
21
|
+
*/
|
|
22
|
+
|
|
23
|
+
import { mock, spyOn } from 'bun:test'
|
|
24
|
+
|
|
25
|
+
import type { Mock } from 'bun:test'
|
|
26
|
+
|
|
27
|
+
/**
|
|
28
|
+
* Properties that can be tracked with an event.
|
|
29
|
+
*/
|
|
30
|
+
export type EventProperties = Record<string, unknown>
|
|
31
|
+
|
|
32
|
+
/**
|
|
33
|
+
* Signature for the trackEvent function.
|
|
34
|
+
*/
|
|
35
|
+
export type TrackEventFn = (
|
|
36
|
+
eventName: string,
|
|
37
|
+
properties?: EventProperties,
|
|
38
|
+
) => void
|
|
39
|
+
|
|
40
|
+
/**
|
|
41
|
+
* Signature for the flushAnalytics function.
|
|
42
|
+
*/
|
|
43
|
+
export type FlushAnalyticsFn = () => Promise<void>
|
|
44
|
+
|
|
45
|
+
/**
|
|
46
|
+
* Signature for the identifyUser function.
|
|
47
|
+
*/
|
|
48
|
+
export type IdentifyUserFn = (
|
|
49
|
+
userId: string,
|
|
50
|
+
traits?: Record<string, unknown>,
|
|
51
|
+
) => void
|
|
52
|
+
|
|
53
|
+
/**
|
|
54
|
+
* Interface for the complete mock analytics object.
|
|
55
|
+
*/
|
|
56
|
+
export interface MockAnalytics {
|
|
57
|
+
/** Track a named event with optional properties */
|
|
58
|
+
trackEvent: Mock<TrackEventFn>
|
|
59
|
+
/** Flush pending analytics events */
|
|
60
|
+
flushAnalytics: Mock<FlushAnalyticsFn>
|
|
61
|
+
/** Identify a user with optional traits */
|
|
62
|
+
identifyUser: Mock<IdentifyUserFn>
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
/**
|
|
66
|
+
* Tracked event entry for inspection.
|
|
67
|
+
*/
|
|
68
|
+
export interface TrackedEvent {
|
|
69
|
+
name: string
|
|
70
|
+
properties?: EventProperties
|
|
71
|
+
timestamp: Date
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
/**
|
|
75
|
+
* Options for creating mock analytics.
|
|
76
|
+
*/
|
|
77
|
+
export interface CreateMockAnalyticsOptions {
|
|
78
|
+
/**
|
|
79
|
+
* Whether to capture tracked events for later inspection.
|
|
80
|
+
* @default false
|
|
81
|
+
*/
|
|
82
|
+
captureEvents?: boolean
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
/**
|
|
86
|
+
* Creates a type-safe mock analytics object for testing.
|
|
87
|
+
*
|
|
88
|
+
* @param options - Configuration options
|
|
89
|
+
* @returns A mock analytics object with all methods as tracked mocks
|
|
90
|
+
*
|
|
91
|
+
* @example
|
|
92
|
+
* ```typescript
|
|
93
|
+
* const analytics = createMockAnalytics()
|
|
94
|
+
*
|
|
95
|
+
* // Pass to function under test
|
|
96
|
+
* await processPayment({ analytics })
|
|
97
|
+
*
|
|
98
|
+
* // Verify events were tracked
|
|
99
|
+
* expect(analytics.trackEvent).toHaveBeenCalledWith('payment_processed', {
|
|
100
|
+
* amount: 100,
|
|
101
|
+
* currency: 'USD',
|
|
102
|
+
* })
|
|
103
|
+
* ```
|
|
104
|
+
*/
|
|
105
|
+
export function createMockAnalytics(
|
|
106
|
+
options: CreateMockAnalyticsOptions = {},
|
|
107
|
+
): MockAnalytics {
|
|
108
|
+
return {
|
|
109
|
+
trackEvent: mock(() => {}),
|
|
110
|
+
flushAnalytics: mock(async () => {}),
|
|
111
|
+
identifyUser: mock(() => {}),
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
/**
|
|
116
|
+
* Result of creating mock analytics with event capture.
|
|
117
|
+
*/
|
|
118
|
+
export interface MockAnalyticsWithCapture {
|
|
119
|
+
/** The mock analytics object */
|
|
120
|
+
analytics: MockAnalytics
|
|
121
|
+
/** Array of all tracked events */
|
|
122
|
+
events: TrackedEvent[]
|
|
123
|
+
/** Clear all captured events */
|
|
124
|
+
clearEvents: () => void
|
|
125
|
+
/** Get events by name */
|
|
126
|
+
getEventsByName: (name: string) => TrackedEvent[]
|
|
127
|
+
/** Check if an event was tracked */
|
|
128
|
+
hasEvent: (name: string) => boolean
|
|
129
|
+
/** Get the last event tracked */
|
|
130
|
+
getLastEvent: () => TrackedEvent | undefined
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
/**
|
|
134
|
+
* Creates mock analytics that captures all tracked events for inspection.
|
|
135
|
+
*
|
|
136
|
+
* @returns An object containing the analytics mock and utilities for inspection
|
|
137
|
+
*
|
|
138
|
+
* @example
|
|
139
|
+
* ```typescript
|
|
140
|
+
* const { analytics, events, getEventsByName } = createMockAnalyticsWithCapture()
|
|
141
|
+
*
|
|
142
|
+
* await runUserFlow({ analytics })
|
|
143
|
+
*
|
|
144
|
+
* // Check events were tracked in order
|
|
145
|
+
* expect(events.map(e => e.name)).toEqual([
|
|
146
|
+
* 'flow_started',
|
|
147
|
+
* 'step_completed',
|
|
148
|
+
* 'flow_finished',
|
|
149
|
+
* ])
|
|
150
|
+
*
|
|
151
|
+
* // Check specific event properties
|
|
152
|
+
* const completionEvents = getEventsByName('step_completed')
|
|
153
|
+
* expect(completionEvents[0].properties).toMatchObject({ stepId: 'step1' })
|
|
154
|
+
* ```
|
|
155
|
+
*/
|
|
156
|
+
export function createMockAnalyticsWithCapture(): MockAnalyticsWithCapture {
|
|
157
|
+
const events: TrackedEvent[] = []
|
|
158
|
+
|
|
159
|
+
const analytics: MockAnalytics = {
|
|
160
|
+
trackEvent: mock((name: string, properties?: EventProperties) => {
|
|
161
|
+
events.push({
|
|
162
|
+
name,
|
|
163
|
+
properties,
|
|
164
|
+
timestamp: new Date(),
|
|
165
|
+
})
|
|
166
|
+
}),
|
|
167
|
+
flushAnalytics: mock(async () => {}),
|
|
168
|
+
identifyUser: mock(() => {}),
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
return {
|
|
172
|
+
analytics,
|
|
173
|
+
events,
|
|
174
|
+
clearEvents: () => {
|
|
175
|
+
events.length = 0
|
|
176
|
+
},
|
|
177
|
+
getEventsByName: (name: string) => events.filter((e) => e.name === name),
|
|
178
|
+
hasEvent: (name: string) => events.some((e) => e.name === name),
|
|
179
|
+
getLastEvent: () => events[events.length - 1],
|
|
180
|
+
}
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
/**
|
|
184
|
+
* Result of setting up analytics spies on the actual module.
|
|
185
|
+
*/
|
|
186
|
+
export interface AnalyticsSpies {
|
|
187
|
+
/** Spy on trackEvent */
|
|
188
|
+
trackEvent: ReturnType<typeof spyOn>
|
|
189
|
+
/** Spy on flushAnalytics */
|
|
190
|
+
flushAnalytics: ReturnType<typeof spyOn>
|
|
191
|
+
/** Restore all spies */
|
|
192
|
+
restore: () => void
|
|
193
|
+
/** Clear all spy call history */
|
|
194
|
+
clear: () => void
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
/**
|
|
198
|
+
* Sets up spies on the analytics module.
|
|
199
|
+
* Use this when you need to spy on the actual module rather than inject a mock.
|
|
200
|
+
*
|
|
201
|
+
* @param analyticsModule - The analytics module to spy on
|
|
202
|
+
* @returns Object containing the spies and cleanup utilities
|
|
203
|
+
*
|
|
204
|
+
* @example
|
|
205
|
+
* ```typescript
|
|
206
|
+
* import * as analytics from '@anvil/common/analytics'
|
|
207
|
+
*
|
|
208
|
+
* describe('my test', () => {
|
|
209
|
+
* let analyticsSpy: AnalyticsSpies
|
|
210
|
+
*
|
|
211
|
+
* beforeEach(() => {
|
|
212
|
+
* analyticsSpy = setupAnalyticsMocks(analytics)
|
|
213
|
+
* })
|
|
214
|
+
*
|
|
215
|
+
* afterEach(() => {
|
|
216
|
+
* analyticsSpy.restore()
|
|
217
|
+
* })
|
|
218
|
+
*
|
|
219
|
+
* it('tracks the event', async () => {
|
|
220
|
+
* await doSomething()
|
|
221
|
+
* expect(analyticsSpy.trackEvent).toHaveBeenCalledWith('something_done')
|
|
222
|
+
* })
|
|
223
|
+
* })
|
|
224
|
+
* ```
|
|
225
|
+
*/
|
|
226
|
+
export function setupAnalyticsMocks(analyticsModule: {
|
|
227
|
+
trackEvent: TrackEventFn
|
|
228
|
+
flushAnalytics: FlushAnalyticsFn
|
|
229
|
+
}): AnalyticsSpies {
|
|
230
|
+
const trackEventSpy = spyOn(analyticsModule, 'trackEvent').mockImplementation(
|
|
231
|
+
() => {},
|
|
232
|
+
)
|
|
233
|
+
const flushAnalyticsSpy = spyOn(
|
|
234
|
+
analyticsModule,
|
|
235
|
+
'flushAnalytics',
|
|
236
|
+
).mockImplementation(async () => {})
|
|
237
|
+
|
|
238
|
+
return {
|
|
239
|
+
trackEvent: trackEventSpy,
|
|
240
|
+
flushAnalytics: flushAnalyticsSpy,
|
|
241
|
+
restore: () => {
|
|
242
|
+
trackEventSpy.mockRestore()
|
|
243
|
+
flushAnalyticsSpy.mockRestore()
|
|
244
|
+
},
|
|
245
|
+
clear: () => {
|
|
246
|
+
trackEventSpy.mockClear()
|
|
247
|
+
flushAnalyticsSpy.mockClear()
|
|
248
|
+
},
|
|
249
|
+
}
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
/**
|
|
253
|
+
* Restores all mock methods on an analytics object.
|
|
254
|
+
*
|
|
255
|
+
* @param analytics - The mock analytics to restore
|
|
256
|
+
*/
|
|
257
|
+
export function restoreMockAnalytics(analytics: MockAnalytics): void {
|
|
258
|
+
analytics.trackEvent.mockRestore()
|
|
259
|
+
analytics.flushAnalytics.mockRestore()
|
|
260
|
+
analytics.identifyUser.mockRestore()
|
|
261
|
+
}
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
/** Typed child process mock for testing code that spawns processes. */
|
|
2
|
+
|
|
3
|
+
import { EventEmitter } from 'events'
|
|
4
|
+
|
|
5
|
+
import { mock } from 'bun:test'
|
|
6
|
+
|
|
7
|
+
import type { Mock } from 'bun:test'
|
|
8
|
+
import type { ChildProcess } from 'child_process'
|
|
9
|
+
|
|
10
|
+
/** Mock child process with typed stdout/stderr EventEmitters. */
|
|
11
|
+
export interface MockChildProcess extends EventEmitter {
|
|
12
|
+
stdout: EventEmitter
|
|
13
|
+
stderr: EventEmitter
|
|
14
|
+
pid: number
|
|
15
|
+
killed: boolean
|
|
16
|
+
kill: Mock<(signal?: string) => boolean>
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
/** Creates a typed mock child process with EventEmitter-based stdout/stderr. */
|
|
20
|
+
export function createMockChildProcess(): MockChildProcess {
|
|
21
|
+
const mockProcess = new EventEmitter() as MockChildProcess
|
|
22
|
+
mockProcess.stdout = new EventEmitter()
|
|
23
|
+
mockProcess.stderr = new EventEmitter()
|
|
24
|
+
mockProcess.pid = Math.floor(Math.random() * 10000)
|
|
25
|
+
mockProcess.killed = false
|
|
26
|
+
mockProcess.kill = mock((signal?: string) => {
|
|
27
|
+
mockProcess.killed = true
|
|
28
|
+
mockProcess.emit('close', signal === 'SIGKILL' ? 137 : 0)
|
|
29
|
+
return true
|
|
30
|
+
})
|
|
31
|
+
return mockProcess
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
/** Result type for code search tool output. */
|
|
35
|
+
export interface CodeSearchResult {
|
|
36
|
+
stdout?: string
|
|
37
|
+
stderr?: string
|
|
38
|
+
message?: string
|
|
39
|
+
errorMessage?: string
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
/** Typed accessor for code search result value. */
|
|
43
|
+
export function asCodeSearchResult(result: unknown): CodeSearchResult {
|
|
44
|
+
if (
|
|
45
|
+
result &&
|
|
46
|
+
typeof result === 'object' &&
|
|
47
|
+
'type' in result &&
|
|
48
|
+
result.type === 'json' &&
|
|
49
|
+
'value' in result
|
|
50
|
+
) {
|
|
51
|
+
return result.value as CodeSearchResult
|
|
52
|
+
}
|
|
53
|
+
return {}
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
/** Creates a mock spawn function that returns the provided mock process. */
|
|
57
|
+
export function createMockSpawn(
|
|
58
|
+
mockProcess: MockChildProcess,
|
|
59
|
+
): Mock<(command: string, args: string[], options?: object) => ChildProcess> {
|
|
60
|
+
return mock(() => mockProcess as unknown as ChildProcess)
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
/** Helper to create ripgrep JSON match output. */
|
|
64
|
+
export function createRgJsonMatch(
|
|
65
|
+
filePath: string,
|
|
66
|
+
lineNumber: number,
|
|
67
|
+
lineText: string,
|
|
68
|
+
): string {
|
|
69
|
+
return JSON.stringify({
|
|
70
|
+
type: 'match',
|
|
71
|
+
data: {
|
|
72
|
+
path: { text: filePath },
|
|
73
|
+
lines: { text: lineText },
|
|
74
|
+
line_number: lineNumber,
|
|
75
|
+
},
|
|
76
|
+
})
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
/** Helper to create ripgrep JSON context output (for -A, -B, -C flags). */
|
|
80
|
+
export function createRgJsonContext(
|
|
81
|
+
filePath: string,
|
|
82
|
+
lineNumber: number,
|
|
83
|
+
lineText: string,
|
|
84
|
+
): string {
|
|
85
|
+
return JSON.stringify({
|
|
86
|
+
type: 'context',
|
|
87
|
+
data: {
|
|
88
|
+
path: { text: filePath },
|
|
89
|
+
lines: { text: lineText },
|
|
90
|
+
line_number: lineNumber,
|
|
91
|
+
},
|
|
92
|
+
})
|
|
93
|
+
}
|
|
@@ -0,0 +1,218 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Typed crypto mock factory for testing.
|
|
3
|
+
*
|
|
4
|
+
* Provides type-safe mocks for crypto functions, particularly randomUUID.
|
|
5
|
+
* Makes tests deterministic by returning predictable UUIDs.
|
|
6
|
+
*
|
|
7
|
+
* @example
|
|
8
|
+
* ```typescript
|
|
9
|
+
* import { setupCryptoMocks, createMockUuid } from '@anvil/common/testing/mocks/crypto'
|
|
10
|
+
*
|
|
11
|
+
* // Setup deterministic UUIDs
|
|
12
|
+
* const spies = setupCryptoMocks()
|
|
13
|
+
* await runTest()
|
|
14
|
+
* spies.restore()
|
|
15
|
+
*
|
|
16
|
+
* // Or create specific UUIDs
|
|
17
|
+
* const uuid = createMockUuid('test-prefix')
|
|
18
|
+
* // Returns: 'test-prefix-0000-0000-0000-000000000000'
|
|
19
|
+
* ```
|
|
20
|
+
*/
|
|
21
|
+
|
|
22
|
+
import { spyOn } from 'bun:test'
|
|
23
|
+
|
|
24
|
+
/**
|
|
25
|
+
* A valid UUID v4 format string.
|
|
26
|
+
*/
|
|
27
|
+
export type UUID = `${string}-${string}-${string}-${string}-${string}`
|
|
28
|
+
|
|
29
|
+
/**
|
|
30
|
+
* Options for setting up crypto mocks.
|
|
31
|
+
*/
|
|
32
|
+
export interface SetupCryptoMocksOptions {
|
|
33
|
+
/**
|
|
34
|
+
* A prefix to use for generated UUIDs.
|
|
35
|
+
* The format will be: `{prefix}-0000-0000-0000-000000000000`
|
|
36
|
+
* @default 'mock-uuid'
|
|
37
|
+
*/
|
|
38
|
+
prefix?: string
|
|
39
|
+
|
|
40
|
+
/**
|
|
41
|
+
* Whether to generate sequential UUIDs.
|
|
42
|
+
* If true, each call returns a different UUID: mock-uuid-1, mock-uuid-2, etc.
|
|
43
|
+
* @default false
|
|
44
|
+
*/
|
|
45
|
+
sequential?: boolean
|
|
46
|
+
|
|
47
|
+
/**
|
|
48
|
+
* A specific list of UUIDs to return in order.
|
|
49
|
+
* If provided, UUIDs are returned from this list in sequence.
|
|
50
|
+
* When exhausted, falls back to default behavior.
|
|
51
|
+
*/
|
|
52
|
+
uuids?: UUID[]
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
/**
|
|
56
|
+
* Result of setting up crypto mocks.
|
|
57
|
+
*/
|
|
58
|
+
export interface CryptoMockSpies {
|
|
59
|
+
/** The spy on randomUUID */
|
|
60
|
+
randomUUID: ReturnType<typeof spyOn>
|
|
61
|
+
/** Restore the original implementation */
|
|
62
|
+
restore: () => void
|
|
63
|
+
/** Clear call history */
|
|
64
|
+
clear: () => void
|
|
65
|
+
/** Get the current call count */
|
|
66
|
+
getCallCount: () => number
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
/**
|
|
70
|
+
* Creates a deterministic mock UUID with a given prefix.
|
|
71
|
+
*
|
|
72
|
+
* @param prefix - The prefix for the UUID
|
|
73
|
+
* @param index - Optional index for sequential UUIDs
|
|
74
|
+
* @returns A valid UUID-format string
|
|
75
|
+
*
|
|
76
|
+
* @example
|
|
77
|
+
* ```typescript
|
|
78
|
+
* createMockUuid('test')
|
|
79
|
+
* // Returns: 'test-uuid-0000-0000-000000000000'
|
|
80
|
+
*
|
|
81
|
+
* createMockUuid('test', 5)
|
|
82
|
+
* // Returns: 'test-uuid-0000-0005-000000000000'
|
|
83
|
+
* ```
|
|
84
|
+
*/
|
|
85
|
+
export function createMockUuid(prefix: string, index?: number): UUID {
|
|
86
|
+
const indexStr =
|
|
87
|
+
index !== undefined ? String(index).padStart(12, '0') : '000000000000'
|
|
88
|
+
return `${prefix}-0000-0000-0000-${indexStr}` as UUID
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
/**
|
|
92
|
+
* Sets up a spy on crypto.randomUUID with deterministic behavior.
|
|
93
|
+
*
|
|
94
|
+
* @param options - Configuration options
|
|
95
|
+
* @returns Object containing the spy and cleanup utilities
|
|
96
|
+
*
|
|
97
|
+
* @example
|
|
98
|
+
* ```typescript
|
|
99
|
+
* describe('my test', () => {
|
|
100
|
+
* let cryptoSpies: CryptoMockSpies
|
|
101
|
+
*
|
|
102
|
+
* beforeEach(() => {
|
|
103
|
+
* cryptoSpies = setupCryptoMocks({ prefix: 'test' })
|
|
104
|
+
* })
|
|
105
|
+
*
|
|
106
|
+
* afterEach(() => {
|
|
107
|
+
* cryptoSpies.restore()
|
|
108
|
+
* })
|
|
109
|
+
*
|
|
110
|
+
* it('creates deterministic IDs', async () => {
|
|
111
|
+
* const result = await createSomething()
|
|
112
|
+
* expect(result.id).toBe('test-0000-0000-0000-000000000000')
|
|
113
|
+
* })
|
|
114
|
+
* })
|
|
115
|
+
* ```
|
|
116
|
+
*/
|
|
117
|
+
export function setupCryptoMocks(
|
|
118
|
+
options: SetupCryptoMocksOptions = {},
|
|
119
|
+
): CryptoMockSpies {
|
|
120
|
+
const { prefix = 'mock-uuid', sequential = false, uuids = [] } = options
|
|
121
|
+
|
|
122
|
+
let callCount = 0
|
|
123
|
+
|
|
124
|
+
const randomUUIDSpy = spyOn(crypto, 'randomUUID').mockImplementation(() => {
|
|
125
|
+
const currentIndex = callCount
|
|
126
|
+
callCount++
|
|
127
|
+
|
|
128
|
+
// First try to return from the provided list
|
|
129
|
+
if (currentIndex < uuids.length) {
|
|
130
|
+
return uuids[currentIndex]
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
// Then fall back to generated UUIDs
|
|
134
|
+
if (sequential) {
|
|
135
|
+
return createMockUuid(prefix, currentIndex)
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
return createMockUuid(prefix)
|
|
139
|
+
})
|
|
140
|
+
|
|
141
|
+
return {
|
|
142
|
+
randomUUID: randomUUIDSpy,
|
|
143
|
+
restore: () => {
|
|
144
|
+
randomUUIDSpy.mockRestore()
|
|
145
|
+
},
|
|
146
|
+
clear: () => {
|
|
147
|
+
callCount = 0
|
|
148
|
+
randomUUIDSpy.mockClear()
|
|
149
|
+
},
|
|
150
|
+
getCallCount: () => callCount,
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
/**
|
|
155
|
+
* Sets up crypto mocks that return specific UUIDs in sequence.
|
|
156
|
+
* Useful when you need specific IDs for assertions.
|
|
157
|
+
*
|
|
158
|
+
* @param uuids - The UUIDs to return in order
|
|
159
|
+
* @returns Object containing the spy and cleanup utilities
|
|
160
|
+
*
|
|
161
|
+
* @example
|
|
162
|
+
* ```typescript
|
|
163
|
+
* const spies = setupSequentialCryptoMocks([
|
|
164
|
+
* 'aaaaaaaa-aaaa-aaaa-aaaa-aaaaaaaaaaaa',
|
|
165
|
+
* 'bbbbbbbb-bbbb-bbbb-bbbb-bbbbbbbbbbbb',
|
|
166
|
+
* ])
|
|
167
|
+
*
|
|
168
|
+
* crypto.randomUUID() // 'aaaaaaaa-aaaa-aaaa-aaaa-aaaaaaaaaaaa'
|
|
169
|
+
* crypto.randomUUID() // 'bbbbbbbb-bbbb-bbbb-bbbb-bbbbbbbbbbbb'
|
|
170
|
+
* crypto.randomUUID() // 'mock-uuid-0000-0000-0000-000000000002' (fallback)
|
|
171
|
+
* ```
|
|
172
|
+
*/
|
|
173
|
+
export function setupSequentialCryptoMocks(uuids: UUID[]): CryptoMockSpies {
|
|
174
|
+
return setupCryptoMocks({ uuids, sequential: true })
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
/**
|
|
178
|
+
* A set of commonly used test UUIDs for consistency across tests.
|
|
179
|
+
*/
|
|
180
|
+
export const TEST_UUIDS = {
|
|
181
|
+
/** Default user ID for tests */
|
|
182
|
+
USER: 'test-user-0000-0000-000000000001' as UUID,
|
|
183
|
+
/** Default session ID for tests */
|
|
184
|
+
SESSION: 'test-sess-0000-0000-000000000001' as UUID,
|
|
185
|
+
/** Default run ID for tests */
|
|
186
|
+
RUN: 'test-run0-0000-0000-000000000001' as UUID,
|
|
187
|
+
/** Default step ID for tests */
|
|
188
|
+
STEP: 'test-step-0000-0000-000000000001' as UUID,
|
|
189
|
+
/** Default message ID for tests */
|
|
190
|
+
MESSAGE: 'test-msg0-0000-0000-000000000001' as UUID,
|
|
191
|
+
/** Default agent ID for tests */
|
|
192
|
+
AGENT: 'test-agnt-0000-0000-000000000001' as UUID,
|
|
193
|
+
} as const
|
|
194
|
+
|
|
195
|
+
/**
|
|
196
|
+
* Creates a UUID generator that returns sequential UUIDs with a prefix.
|
|
197
|
+
* Useful for generating multiple related IDs.
|
|
198
|
+
*
|
|
199
|
+
* @param prefix - The prefix for generated UUIDs
|
|
200
|
+
* @returns A function that generates sequential UUIDs
|
|
201
|
+
*
|
|
202
|
+
* @example
|
|
203
|
+
* ```typescript
|
|
204
|
+
* const generateId = createUuidGenerator('item')
|
|
205
|
+
*
|
|
206
|
+
* generateId() // 'item-uuid-0000-0000-000000000000'
|
|
207
|
+
* generateId() // 'item-uuid-0000-0001-000000000000'
|
|
208
|
+
* generateId() // 'item-uuid-0000-0002-000000000000'
|
|
209
|
+
* ```
|
|
210
|
+
*/
|
|
211
|
+
export function createUuidGenerator(prefix: string): () => UUID {
|
|
212
|
+
let index = 0
|
|
213
|
+
return () => {
|
|
214
|
+
const uuid = createMockUuid(prefix, index)
|
|
215
|
+
index++
|
|
216
|
+
return uuid
|
|
217
|
+
}
|
|
218
|
+
}
|