@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,1008 @@
|
|
|
1
|
+
import { describe, expect, it } from 'bun:test'
|
|
2
|
+
|
|
3
|
+
import { Saxy } from '../saxy'
|
|
4
|
+
|
|
5
|
+
describe('Saxy XML Parser', () => {
|
|
6
|
+
// Helper function to process XML and get events
|
|
7
|
+
const processXML = (
|
|
8
|
+
xml: string,
|
|
9
|
+
schema?: Record<string, string[]>,
|
|
10
|
+
shouldParseEntities = true,
|
|
11
|
+
) => {
|
|
12
|
+
const events: Array<{ type: string; data: any }> = []
|
|
13
|
+
const parser = new Saxy(schema, shouldParseEntities)
|
|
14
|
+
|
|
15
|
+
parser.on('text', (data) => events.push({ type: 'text', data }))
|
|
16
|
+
parser.on('tagopen', (data) => events.push({ type: 'tagopen', data }))
|
|
17
|
+
parser.on('tagclose', (data) => events.push({ type: 'tagclose', data }))
|
|
18
|
+
|
|
19
|
+
parser.write(xml)
|
|
20
|
+
parser.end()
|
|
21
|
+
|
|
22
|
+
return events
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
describe('Schema Validation with Text Conversion', () => {
|
|
26
|
+
it('should convert invalid top-level tags to text nodes', () => {
|
|
27
|
+
const schema = { root: ['child'] }
|
|
28
|
+
const xml = '<invalid>content</invalid>'
|
|
29
|
+
const events = processXML(xml, schema)
|
|
30
|
+
|
|
31
|
+
expect(events).toEqual([
|
|
32
|
+
{
|
|
33
|
+
type: 'text',
|
|
34
|
+
data: { contents: '<invalid>' },
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
type: 'text',
|
|
38
|
+
data: { contents: 'content' },
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
type: 'text',
|
|
42
|
+
data: { contents: '</invalid>' },
|
|
43
|
+
},
|
|
44
|
+
])
|
|
45
|
+
})
|
|
46
|
+
|
|
47
|
+
it('should convert invalid nested tags to text nodes', () => {
|
|
48
|
+
const schema = { root: ['child'] }
|
|
49
|
+
const xml = '<other><invalid>content</invalid></other>'
|
|
50
|
+
const events = processXML(xml, schema)
|
|
51
|
+
|
|
52
|
+
expect(events).toEqual([
|
|
53
|
+
{
|
|
54
|
+
type: 'text',
|
|
55
|
+
data: { contents: '<other>' },
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
type: 'text',
|
|
59
|
+
data: { contents: '<invalid>' },
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
type: 'text',
|
|
63
|
+
data: { contents: 'content' },
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
type: 'text',
|
|
67
|
+
data: { contents: '</invalid>' },
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
type: 'text',
|
|
71
|
+
data: { contents: '</other>' },
|
|
72
|
+
},
|
|
73
|
+
])
|
|
74
|
+
})
|
|
75
|
+
|
|
76
|
+
it('should handle valid nested tags according to schema', () => {
|
|
77
|
+
const schema = { root: ['child'] }
|
|
78
|
+
const xml = '<root><child>content</child></root>'
|
|
79
|
+
const events = processXML(xml, schema)
|
|
80
|
+
|
|
81
|
+
expect(events).toEqual([
|
|
82
|
+
{
|
|
83
|
+
data: {
|
|
84
|
+
attrs: '',
|
|
85
|
+
isSelfClosing: false,
|
|
86
|
+
name: 'root',
|
|
87
|
+
rawTag: '<root>',
|
|
88
|
+
},
|
|
89
|
+
type: 'tagopen',
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
data: {
|
|
93
|
+
attrs: '',
|
|
94
|
+
isSelfClosing: false,
|
|
95
|
+
name: 'child',
|
|
96
|
+
rawTag: '<child>',
|
|
97
|
+
},
|
|
98
|
+
type: 'tagopen',
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
data: {
|
|
102
|
+
contents: 'content',
|
|
103
|
+
},
|
|
104
|
+
type: 'text',
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
data: {
|
|
108
|
+
name: 'child',
|
|
109
|
+
rawTag: '</child>',
|
|
110
|
+
},
|
|
111
|
+
type: 'tagclose',
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
data: {
|
|
115
|
+
name: 'root',
|
|
116
|
+
rawTag: '</root>',
|
|
117
|
+
},
|
|
118
|
+
type: 'tagclose',
|
|
119
|
+
},
|
|
120
|
+
])
|
|
121
|
+
})
|
|
122
|
+
|
|
123
|
+
it('should convert closing tags to text when parent is invalid', () => {
|
|
124
|
+
const schema = { root: ['child'] }
|
|
125
|
+
const xml = '<root><invalid>content</invalid><child/></root>'
|
|
126
|
+
const events = processXML(xml, schema)
|
|
127
|
+
|
|
128
|
+
expect(events[1]).toEqual({
|
|
129
|
+
type: 'text',
|
|
130
|
+
data: { contents: '<invalid>' },
|
|
131
|
+
})
|
|
132
|
+
expect(events[2]).toEqual({
|
|
133
|
+
type: 'text',
|
|
134
|
+
data: { contents: 'content' },
|
|
135
|
+
})
|
|
136
|
+
expect(events[3]).toEqual({
|
|
137
|
+
type: 'text',
|
|
138
|
+
data: { contents: '</invalid>' },
|
|
139
|
+
})
|
|
140
|
+
})
|
|
141
|
+
|
|
142
|
+
it('should handle tags starting with whitespace as text', () => {
|
|
143
|
+
const schema = { root: ['child'] }
|
|
144
|
+
const xml = '<root>< invalid>content</invalid></root>'
|
|
145
|
+
const events = processXML(xml, schema)
|
|
146
|
+
|
|
147
|
+
expect(events[1]).toEqual({
|
|
148
|
+
type: 'text',
|
|
149
|
+
data: { contents: '< invalid>content' },
|
|
150
|
+
})
|
|
151
|
+
expect(events[2]).toEqual({
|
|
152
|
+
type: 'text',
|
|
153
|
+
data: { contents: '</invalid>' },
|
|
154
|
+
})
|
|
155
|
+
})
|
|
156
|
+
})
|
|
157
|
+
|
|
158
|
+
describe('Edge Cases', () => {
|
|
159
|
+
it('should handle self-closing invalid tags', () => {
|
|
160
|
+
const schema = { root: ['child'] }
|
|
161
|
+
const xml = '<root><invalid/></root>'
|
|
162
|
+
const events = processXML(xml, schema)
|
|
163
|
+
|
|
164
|
+
expect(events[1]).toEqual({
|
|
165
|
+
type: 'text',
|
|
166
|
+
data: { contents: '<invalid/>' },
|
|
167
|
+
})
|
|
168
|
+
})
|
|
169
|
+
|
|
170
|
+
it('should handle nested invalid tags', () => {
|
|
171
|
+
const schema = { root: ['child'] }
|
|
172
|
+
const xml = '<root><invalid><alsoinvalid/></invalid></root>'
|
|
173
|
+
const events = processXML(xml, schema)
|
|
174
|
+
|
|
175
|
+
expect(events[1]).toEqual({
|
|
176
|
+
type: 'text',
|
|
177
|
+
data: { contents: '<invalid>' },
|
|
178
|
+
})
|
|
179
|
+
expect(events[2]).toEqual({
|
|
180
|
+
type: 'text',
|
|
181
|
+
data: { contents: '<alsoinvalid/>' },
|
|
182
|
+
})
|
|
183
|
+
expect(events[3]).toEqual({
|
|
184
|
+
type: 'text',
|
|
185
|
+
data: { contents: '</invalid>' },
|
|
186
|
+
})
|
|
187
|
+
})
|
|
188
|
+
|
|
189
|
+
it('should preserve attributes in converted text nodes', () => {
|
|
190
|
+
const schema = { root: ['child'] }
|
|
191
|
+
const xml = '<root><invalid attr="value">content</invalid></root>'
|
|
192
|
+
const events = processXML(xml, schema)
|
|
193
|
+
|
|
194
|
+
expect(events[1]).toEqual({
|
|
195
|
+
type: 'text',
|
|
196
|
+
data: { contents: '<invalid attr="value">' },
|
|
197
|
+
})
|
|
198
|
+
expect(events[2]).toEqual({
|
|
199
|
+
type: 'text',
|
|
200
|
+
data: { contents: 'content' },
|
|
201
|
+
})
|
|
202
|
+
expect(events[3]).toEqual({
|
|
203
|
+
type: 'text',
|
|
204
|
+
data: { contents: '</invalid>' },
|
|
205
|
+
})
|
|
206
|
+
})
|
|
207
|
+
})
|
|
208
|
+
|
|
209
|
+
it('should handle text that looks like invalid XML tags', () => {
|
|
210
|
+
const parser = new Saxy()
|
|
211
|
+
const events: any[] = []
|
|
212
|
+
parser.on('text', (data) => events.push({ type: 'text', data }))
|
|
213
|
+
parser.on('tagopen', (data) => events.push({ type: 'tagopen', data }))
|
|
214
|
+
parser.on('tagclose', (data) => events.push({ type: 'tagclose', data }))
|
|
215
|
+
|
|
216
|
+
parser.write(
|
|
217
|
+
'This is < not a tag> and < another not a tag> but <valid>this is</valid>',
|
|
218
|
+
)
|
|
219
|
+
parser.end()
|
|
220
|
+
|
|
221
|
+
expect(events).toEqual([
|
|
222
|
+
{
|
|
223
|
+
data: {
|
|
224
|
+
contents: 'This is < not a tag> and < another not a tag> but ',
|
|
225
|
+
},
|
|
226
|
+
type: 'text',
|
|
227
|
+
},
|
|
228
|
+
{
|
|
229
|
+
data: {
|
|
230
|
+
attrs: '',
|
|
231
|
+
isSelfClosing: false,
|
|
232
|
+
name: 'valid',
|
|
233
|
+
rawTag: '<valid>',
|
|
234
|
+
},
|
|
235
|
+
type: 'tagopen',
|
|
236
|
+
},
|
|
237
|
+
{
|
|
238
|
+
data: {
|
|
239
|
+
contents: 'this is',
|
|
240
|
+
},
|
|
241
|
+
type: 'text',
|
|
242
|
+
},
|
|
243
|
+
{ data: { name: 'valid', rawTag: '</valid>' }, type: 'tagclose' },
|
|
244
|
+
])
|
|
245
|
+
})
|
|
246
|
+
|
|
247
|
+
it('should handle text with angle brackets but no valid tag names', () => {
|
|
248
|
+
const parser = new Saxy()
|
|
249
|
+
const events: any[] = []
|
|
250
|
+
parser.on('text', (data) => events.push({ type: 'text', data }))
|
|
251
|
+
|
|
252
|
+
parser.write('Math expressions: 2 < 3 and 5 > 4')
|
|
253
|
+
parser.end()
|
|
254
|
+
|
|
255
|
+
expect(events).toEqual([
|
|
256
|
+
{
|
|
257
|
+
type: 'text',
|
|
258
|
+
data: { contents: 'Math expressions: 2 < 3 and 5 > 4' },
|
|
259
|
+
},
|
|
260
|
+
])
|
|
261
|
+
})
|
|
262
|
+
|
|
263
|
+
it('should correctly parse mixed valid and invalid XML-like content', () => {
|
|
264
|
+
const parser = new Saxy()
|
|
265
|
+
const events: any[] = []
|
|
266
|
+
parser.on('text', (data) => events.push({ type: 'text', data }))
|
|
267
|
+
parser.on('tagopen', (data) => events.push({ type: 'tagopen', data }))
|
|
268
|
+
parser.on('tagclose', (data) => events.push({ type: 'tagclose', data }))
|
|
269
|
+
|
|
270
|
+
parser.write(
|
|
271
|
+
'Text with < brackets> and <valid-tag>real XML</valid-tag> mixed together',
|
|
272
|
+
)
|
|
273
|
+
parser.end()
|
|
274
|
+
|
|
275
|
+
expect(events).toEqual([
|
|
276
|
+
{
|
|
277
|
+
data: {
|
|
278
|
+
contents: 'Text with < brackets> and ',
|
|
279
|
+
},
|
|
280
|
+
type: 'text',
|
|
281
|
+
},
|
|
282
|
+
{
|
|
283
|
+
data: {
|
|
284
|
+
attrs: '',
|
|
285
|
+
isSelfClosing: false,
|
|
286
|
+
name: 'valid-tag',
|
|
287
|
+
rawTag: '<valid-tag>',
|
|
288
|
+
},
|
|
289
|
+
type: 'tagopen',
|
|
290
|
+
},
|
|
291
|
+
{
|
|
292
|
+
data: {
|
|
293
|
+
contents: 'real XML',
|
|
294
|
+
},
|
|
295
|
+
type: 'text',
|
|
296
|
+
},
|
|
297
|
+
{
|
|
298
|
+
data: {
|
|
299
|
+
name: 'valid-tag',
|
|
300
|
+
rawTag: '</valid-tag>',
|
|
301
|
+
},
|
|
302
|
+
type: 'tagclose',
|
|
303
|
+
},
|
|
304
|
+
{
|
|
305
|
+
data: {
|
|
306
|
+
contents: ' mixed together',
|
|
307
|
+
},
|
|
308
|
+
type: 'text',
|
|
309
|
+
},
|
|
310
|
+
])
|
|
311
|
+
})
|
|
312
|
+
|
|
313
|
+
it('should handle edge cases with special characters after <', () => {
|
|
314
|
+
const parser = new Saxy()
|
|
315
|
+
const events: any[] = []
|
|
316
|
+
parser.on('text', (data) => events.push({ type: 'text', data }))
|
|
317
|
+
|
|
318
|
+
parser.write('Text with <1>, <@invalid>, and <!not-a-tag>')
|
|
319
|
+
parser.end()
|
|
320
|
+
|
|
321
|
+
expect(events).toEqual([
|
|
322
|
+
{
|
|
323
|
+
type: 'text',
|
|
324
|
+
data: { contents: 'Text with <1>, <@invalid>, and <!not-a-tag>' },
|
|
325
|
+
},
|
|
326
|
+
])
|
|
327
|
+
})
|
|
328
|
+
|
|
329
|
+
describe('Text Node Handling', () => {
|
|
330
|
+
it('should preserve whitespace in text nodes', () => {
|
|
331
|
+
const parser = new Saxy()
|
|
332
|
+
const events: any[] = []
|
|
333
|
+
parser.on('text', (data) => events.push({ type: 'text', data }))
|
|
334
|
+
|
|
335
|
+
parser.write(' Text with leading and trailing spaces ')
|
|
336
|
+
parser.end()
|
|
337
|
+
|
|
338
|
+
expect(events).toEqual([
|
|
339
|
+
{
|
|
340
|
+
type: 'text',
|
|
341
|
+
data: { contents: ' Text with leading and trailing spaces ' },
|
|
342
|
+
},
|
|
343
|
+
])
|
|
344
|
+
})
|
|
345
|
+
|
|
346
|
+
it('should handle HTML entities in text content', () => {
|
|
347
|
+
const parser = new Saxy()
|
|
348
|
+
const events: any[] = []
|
|
349
|
+
parser.on('text', (data) => events.push({ type: 'text', data }))
|
|
350
|
+
|
|
351
|
+
parser.write('Text with & and < entities')
|
|
352
|
+
parser.end()
|
|
353
|
+
|
|
354
|
+
expect(events).toEqual([
|
|
355
|
+
{
|
|
356
|
+
type: 'text',
|
|
357
|
+
data: { contents: 'Text with & and < entities' },
|
|
358
|
+
},
|
|
359
|
+
])
|
|
360
|
+
})
|
|
361
|
+
|
|
362
|
+
it('should handle split XML entities in text content', () => {
|
|
363
|
+
// Re-initialize parser and events array inside the test
|
|
364
|
+
const parser = new Saxy()
|
|
365
|
+
const events: any[] = []
|
|
366
|
+
parser.on('text', (data) => events.push({ type: 'text', data }))
|
|
367
|
+
|
|
368
|
+
parser.write('Text with &am')
|
|
369
|
+
parser.write('p; and')
|
|
370
|
+
parser.write(' &l')
|
|
371
|
+
parser.write('t; entities &g')
|
|
372
|
+
parser.end()
|
|
373
|
+
|
|
374
|
+
expect(events).toEqual([
|
|
375
|
+
{
|
|
376
|
+
data: {
|
|
377
|
+
contents: 'Text with ',
|
|
378
|
+
},
|
|
379
|
+
type: 'text',
|
|
380
|
+
},
|
|
381
|
+
{
|
|
382
|
+
data: {
|
|
383
|
+
contents: '& and',
|
|
384
|
+
},
|
|
385
|
+
type: 'text',
|
|
386
|
+
},
|
|
387
|
+
{
|
|
388
|
+
data: {
|
|
389
|
+
contents: ' ',
|
|
390
|
+
},
|
|
391
|
+
type: 'text',
|
|
392
|
+
},
|
|
393
|
+
{
|
|
394
|
+
data: {
|
|
395
|
+
contents: '< entities ',
|
|
396
|
+
},
|
|
397
|
+
type: 'text',
|
|
398
|
+
},
|
|
399
|
+
{
|
|
400
|
+
data: {
|
|
401
|
+
contents: '&g',
|
|
402
|
+
},
|
|
403
|
+
type: 'text',
|
|
404
|
+
},
|
|
405
|
+
])
|
|
406
|
+
expect(events.map((chunk) => chunk.data.contents).join('')).toEqual(
|
|
407
|
+
'Text with & and < entities &g',
|
|
408
|
+
)
|
|
409
|
+
})
|
|
410
|
+
|
|
411
|
+
it('should preserve whitespace between tags', () => {
|
|
412
|
+
const parser = new Saxy()
|
|
413
|
+
const events: any[] = []
|
|
414
|
+
parser.on('text', (data) => events.push({ type: 'text', data }))
|
|
415
|
+
parser.on('tagopen', (data) => events.push({ type: 'tagopen', data }))
|
|
416
|
+
parser.on('tagclose', (data) => events.push({ type: 'tagclose', data }))
|
|
417
|
+
|
|
418
|
+
parser.write('<root> text <child> text </child> text </root>')
|
|
419
|
+
parser.end()
|
|
420
|
+
|
|
421
|
+
expect(events).toEqual([
|
|
422
|
+
{
|
|
423
|
+
data: {
|
|
424
|
+
attrs: '',
|
|
425
|
+
isSelfClosing: false,
|
|
426
|
+
name: 'root',
|
|
427
|
+
rawTag: '<root>',
|
|
428
|
+
},
|
|
429
|
+
type: 'tagopen',
|
|
430
|
+
},
|
|
431
|
+
{
|
|
432
|
+
data: {
|
|
433
|
+
contents: ' text ',
|
|
434
|
+
},
|
|
435
|
+
type: 'text',
|
|
436
|
+
},
|
|
437
|
+
{
|
|
438
|
+
data: {
|
|
439
|
+
attrs: '',
|
|
440
|
+
isSelfClosing: false,
|
|
441
|
+
name: 'child',
|
|
442
|
+
rawTag: '<child>',
|
|
443
|
+
},
|
|
444
|
+
type: 'tagopen',
|
|
445
|
+
},
|
|
446
|
+
{
|
|
447
|
+
data: {
|
|
448
|
+
contents: ' text ',
|
|
449
|
+
},
|
|
450
|
+
type: 'text',
|
|
451
|
+
},
|
|
452
|
+
{
|
|
453
|
+
data: {
|
|
454
|
+
name: 'child',
|
|
455
|
+
rawTag: '</child>',
|
|
456
|
+
},
|
|
457
|
+
type: 'tagclose',
|
|
458
|
+
},
|
|
459
|
+
{
|
|
460
|
+
data: {
|
|
461
|
+
contents: ' text ',
|
|
462
|
+
},
|
|
463
|
+
type: 'text',
|
|
464
|
+
},
|
|
465
|
+
{
|
|
466
|
+
data: {
|
|
467
|
+
name: 'root',
|
|
468
|
+
rawTag: '</root>',
|
|
469
|
+
},
|
|
470
|
+
type: 'tagclose',
|
|
471
|
+
},
|
|
472
|
+
])
|
|
473
|
+
})
|
|
474
|
+
|
|
475
|
+
it('should handle multiple HTML entities in the same text node', () => {
|
|
476
|
+
const parser = new Saxy()
|
|
477
|
+
const events: any[] = []
|
|
478
|
+
parser.on('text', (data) => events.push({ type: 'text', data }))
|
|
479
|
+
|
|
480
|
+
parser.write('Text with & < > " entities')
|
|
481
|
+
parser.end()
|
|
482
|
+
|
|
483
|
+
expect(events).toEqual([
|
|
484
|
+
{
|
|
485
|
+
type: 'text',
|
|
486
|
+
data: { contents: 'Text with & < > " entities' },
|
|
487
|
+
},
|
|
488
|
+
])
|
|
489
|
+
})
|
|
490
|
+
|
|
491
|
+
it('should preserve newlines in text content', () => {
|
|
492
|
+
const parser = new Saxy()
|
|
493
|
+
const events: any[] = []
|
|
494
|
+
parser.on('text', (data) => events.push({ type: 'text', data }))
|
|
495
|
+
|
|
496
|
+
parser.write('Line 1\nLine 2\r\nLine 3')
|
|
497
|
+
parser.end()
|
|
498
|
+
|
|
499
|
+
expect(events).toEqual([
|
|
500
|
+
{
|
|
501
|
+
type: 'text',
|
|
502
|
+
data: { contents: 'Line 1\nLine 2\r\nLine 3' },
|
|
503
|
+
},
|
|
504
|
+
])
|
|
505
|
+
})
|
|
506
|
+
|
|
507
|
+
it('should handle split XML entities across chunks', async () => {
|
|
508
|
+
const parser = new Saxy()
|
|
509
|
+
const events: any[] = []
|
|
510
|
+
parser.on('text', (data) => events.push({ type: 'text', data }))
|
|
511
|
+
parser.on('tagopen', (data) => events.push({ type: 'tagopen', data }))
|
|
512
|
+
parser.on('tagclose', (data) => events.push({ type: 'tagclose', data }))
|
|
513
|
+
|
|
514
|
+
// Write the XML in chunks that split the & entity
|
|
515
|
+
parser.write('<tag>before &a')
|
|
516
|
+
parser.write('mp; after</tag>')
|
|
517
|
+
parser.end()
|
|
518
|
+
|
|
519
|
+
// The entity should be properly decoded and the text events should
|
|
520
|
+
// reconstruct the original text correctly
|
|
521
|
+
expect(events).toEqual([
|
|
522
|
+
{
|
|
523
|
+
data: {
|
|
524
|
+
attrs: '',
|
|
525
|
+
isSelfClosing: false,
|
|
526
|
+
name: 'tag',
|
|
527
|
+
rawTag: '<tag>',
|
|
528
|
+
},
|
|
529
|
+
type: 'tagopen',
|
|
530
|
+
},
|
|
531
|
+
{
|
|
532
|
+
data: {
|
|
533
|
+
contents: 'before ',
|
|
534
|
+
},
|
|
535
|
+
type: 'text',
|
|
536
|
+
},
|
|
537
|
+
{
|
|
538
|
+
data: {
|
|
539
|
+
contents: '& after',
|
|
540
|
+
},
|
|
541
|
+
type: 'text',
|
|
542
|
+
},
|
|
543
|
+
{
|
|
544
|
+
data: {
|
|
545
|
+
name: 'tag',
|
|
546
|
+
rawTag: '</tag>',
|
|
547
|
+
},
|
|
548
|
+
type: 'tagclose',
|
|
549
|
+
},
|
|
550
|
+
])
|
|
551
|
+
|
|
552
|
+
// The text content should be properly reconstructed
|
|
553
|
+
const textContent = events
|
|
554
|
+
.filter((e) => e.type === 'text')
|
|
555
|
+
.map((e) => e.data.contents)
|
|
556
|
+
.join('')
|
|
557
|
+
expect(textContent).toBe('before & after')
|
|
558
|
+
})
|
|
559
|
+
|
|
560
|
+
it('should handle multiple split entities in sequence', async () => {
|
|
561
|
+
const parser = new Saxy()
|
|
562
|
+
const events: any[] = []
|
|
563
|
+
parser.on('text', (data) => events.push({ type: 'text', data }))
|
|
564
|
+
|
|
565
|
+
// Write chunks that split multiple entities
|
|
566
|
+
parser.write('Text with &am')
|
|
567
|
+
parser.write('p; and &l')
|
|
568
|
+
parser.write('t; symbols')
|
|
569
|
+
parser.end()
|
|
570
|
+
|
|
571
|
+
// The entities should be properly decoded and combined
|
|
572
|
+
expect(events.map((e) => e.data.contents).join('')).toBe(
|
|
573
|
+
'Text with & and < symbols',
|
|
574
|
+
)
|
|
575
|
+
})
|
|
576
|
+
|
|
577
|
+
it('should handle literal ampersand split across chunks', async () => {
|
|
578
|
+
const parser = new Saxy()
|
|
579
|
+
const events: any[] = []
|
|
580
|
+
parser.on('text', (data) => {
|
|
581
|
+
events.push({ type: 'text', data })
|
|
582
|
+
})
|
|
583
|
+
parser.on('tagopen', (data) => events.push({ type: 'tagopen', data }))
|
|
584
|
+
parser.on('tagclose', (data) => events.push({ type: 'tagclose', data }))
|
|
585
|
+
|
|
586
|
+
// Write chunks that split a literal & character
|
|
587
|
+
parser.write('<tag>before &')
|
|
588
|
+
parser.write(' after</tag>')
|
|
589
|
+
parser.end()
|
|
590
|
+
|
|
591
|
+
// The & should be treated as literal text and stay with its surrounding content
|
|
592
|
+
expect(events).toEqual([
|
|
593
|
+
{
|
|
594
|
+
data: {
|
|
595
|
+
attrs: '',
|
|
596
|
+
isSelfClosing: false,
|
|
597
|
+
name: 'tag',
|
|
598
|
+
rawTag: '<tag>',
|
|
599
|
+
},
|
|
600
|
+
type: 'tagopen',
|
|
601
|
+
},
|
|
602
|
+
{
|
|
603
|
+
data: {
|
|
604
|
+
contents: 'before ',
|
|
605
|
+
},
|
|
606
|
+
type: 'text',
|
|
607
|
+
},
|
|
608
|
+
{
|
|
609
|
+
data: {
|
|
610
|
+
contents: '& after',
|
|
611
|
+
},
|
|
612
|
+
type: 'text',
|
|
613
|
+
},
|
|
614
|
+
{
|
|
615
|
+
data: {
|
|
616
|
+
name: 'tag',
|
|
617
|
+
rawTag: '</tag>',
|
|
618
|
+
},
|
|
619
|
+
type: 'tagclose',
|
|
620
|
+
},
|
|
621
|
+
])
|
|
622
|
+
|
|
623
|
+
// The text content should be properly reconstructed
|
|
624
|
+
const textContent = events
|
|
625
|
+
.filter((e) => e.type === 'text')
|
|
626
|
+
.map((e) => e.data.contents)
|
|
627
|
+
.join('')
|
|
628
|
+
expect(textContent).toBe('before & after')
|
|
629
|
+
})
|
|
630
|
+
|
|
631
|
+
it('should not treat standalone ampersand as pending entity', async () => {
|
|
632
|
+
const parser = new Saxy()
|
|
633
|
+
const events: any[] = []
|
|
634
|
+
parser.on('text', (data) => {
|
|
635
|
+
events.push({ type: 'text', data })
|
|
636
|
+
})
|
|
637
|
+
|
|
638
|
+
// Write chunks that split a standalone & character
|
|
639
|
+
parser.write('Text with &')
|
|
640
|
+
parser.write(' more text')
|
|
641
|
+
parser.end()
|
|
642
|
+
|
|
643
|
+
expect(events).toEqual([
|
|
644
|
+
{ type: 'text', data: { contents: 'Text with ' } },
|
|
645
|
+
{ type: 'text', data: { contents: '& more text' } },
|
|
646
|
+
])
|
|
647
|
+
// The text content should be properly reconstructed
|
|
648
|
+
const textContent = events
|
|
649
|
+
.filter((e) => e.type === 'text')
|
|
650
|
+
.map((e) => e.data.contents)
|
|
651
|
+
.join('')
|
|
652
|
+
expect(textContent).toBe('Text with & more text')
|
|
653
|
+
})
|
|
654
|
+
|
|
655
|
+
it('should handle text split across chunks without entities or tags', async () => {
|
|
656
|
+
const parser = new Saxy()
|
|
657
|
+
const events: any[] = []
|
|
658
|
+
parser.on('text', (data) => events.push({ type: 'text', data }))
|
|
659
|
+
parser.on('tagopen', (data) => events.push({ type: 'tagopen', data }))
|
|
660
|
+
parser.on('tagclose', (data) => events.push({ type: 'tagclose', data }))
|
|
661
|
+
|
|
662
|
+
// Write text split across chunks with no entities or tags
|
|
663
|
+
parser.write('<tag>Some text')
|
|
664
|
+
parser.write(' continued</tag>')
|
|
665
|
+
parser.end()
|
|
666
|
+
|
|
667
|
+
// The text content should be emitted in two chunks due to the new immediate emission behavior
|
|
668
|
+
expect(events).toEqual([
|
|
669
|
+
{
|
|
670
|
+
data: {
|
|
671
|
+
attrs: '',
|
|
672
|
+
isSelfClosing: false,
|
|
673
|
+
name: 'tag',
|
|
674
|
+
rawTag: '<tag>',
|
|
675
|
+
},
|
|
676
|
+
type: 'tagopen',
|
|
677
|
+
},
|
|
678
|
+
{
|
|
679
|
+
data: {
|
|
680
|
+
contents: 'Some text',
|
|
681
|
+
},
|
|
682
|
+
type: 'text',
|
|
683
|
+
},
|
|
684
|
+
{
|
|
685
|
+
data: {
|
|
686
|
+
contents: ' continued',
|
|
687
|
+
},
|
|
688
|
+
type: 'text',
|
|
689
|
+
},
|
|
690
|
+
{
|
|
691
|
+
data: {
|
|
692
|
+
name: 'tag',
|
|
693
|
+
rawTag: '</tag>',
|
|
694
|
+
},
|
|
695
|
+
type: 'tagclose',
|
|
696
|
+
},
|
|
697
|
+
])
|
|
698
|
+
|
|
699
|
+
// The text content should still be properly reconstructible
|
|
700
|
+
const textContent = events
|
|
701
|
+
.filter((e) => e.type === 'text')
|
|
702
|
+
.map((e) => e.data.contents)
|
|
703
|
+
.join('')
|
|
704
|
+
expect(textContent).toBe('Some text continued')
|
|
705
|
+
})
|
|
706
|
+
|
|
707
|
+
it('should output closing tag as text if not matching', async () => {
|
|
708
|
+
const parser = new Saxy()
|
|
709
|
+
const events: any[] = []
|
|
710
|
+
parser.on('text', (data) => events.push({ type: 'text', data }))
|
|
711
|
+
parser.on('tagopen', (data) => events.push({ type: 'tagopen', data }))
|
|
712
|
+
parser.on('tagclose', (data) => events.push({ type: 'tagclose', data }))
|
|
713
|
+
|
|
714
|
+
// Write text split across chunks with no entities or tags
|
|
715
|
+
parser.write('<tag></invalid></tag>')
|
|
716
|
+
parser.end()
|
|
717
|
+
|
|
718
|
+
// The text content should be emitted in two chunks due to the new immediate emission behavior
|
|
719
|
+
expect(events).toEqual([
|
|
720
|
+
{
|
|
721
|
+
data: {
|
|
722
|
+
attrs: '',
|
|
723
|
+
isSelfClosing: false,
|
|
724
|
+
name: 'tag',
|
|
725
|
+
rawTag: '<tag>',
|
|
726
|
+
},
|
|
727
|
+
type: 'tagopen',
|
|
728
|
+
},
|
|
729
|
+
{
|
|
730
|
+
data: {
|
|
731
|
+
name: 'invalid',
|
|
732
|
+
rawTag: '</invalid>',
|
|
733
|
+
},
|
|
734
|
+
type: 'tagclose',
|
|
735
|
+
},
|
|
736
|
+
{
|
|
737
|
+
data: {
|
|
738
|
+
name: 'tag',
|
|
739
|
+
rawTag: '</tag>',
|
|
740
|
+
},
|
|
741
|
+
type: 'tagclose',
|
|
742
|
+
},
|
|
743
|
+
])
|
|
744
|
+
|
|
745
|
+
// The text content should still be properly reconstructible
|
|
746
|
+
const textContent = events
|
|
747
|
+
.filter((e) => e.type === 'text')
|
|
748
|
+
.map((e) => e.data.contents)
|
|
749
|
+
.join('')
|
|
750
|
+
expect(textContent).toBe('')
|
|
751
|
+
})
|
|
752
|
+
})
|
|
753
|
+
|
|
754
|
+
describe('shouldParseEntities = false', () => {
|
|
755
|
+
it('should not parse HTML entities in text content when shouldParseEntities is false', () => {
|
|
756
|
+
const xml = '<tag>Text with & < entities</tag>'
|
|
757
|
+
const events = processXML(xml, undefined, false)
|
|
758
|
+
|
|
759
|
+
expect(events).toEqual([
|
|
760
|
+
{
|
|
761
|
+
type: 'tagopen',
|
|
762
|
+
data: {
|
|
763
|
+
name: 'tag',
|
|
764
|
+
attrs: '',
|
|
765
|
+
isSelfClosing: false,
|
|
766
|
+
rawTag: '<tag>',
|
|
767
|
+
},
|
|
768
|
+
},
|
|
769
|
+
{
|
|
770
|
+
type: 'text',
|
|
771
|
+
data: { contents: 'Text with & < entities' },
|
|
772
|
+
},
|
|
773
|
+
{
|
|
774
|
+
type: 'tagclose',
|
|
775
|
+
data: {
|
|
776
|
+
name: 'tag',
|
|
777
|
+
rawTag: '</tag>',
|
|
778
|
+
},
|
|
779
|
+
},
|
|
780
|
+
])
|
|
781
|
+
})
|
|
782
|
+
|
|
783
|
+
it('should not parse HTML entities split across chunks when shouldParseEntities is false', () => {
|
|
784
|
+
const parser = new Saxy(undefined, false)
|
|
785
|
+
const events: any[] = []
|
|
786
|
+
parser.on('text', (data) => events.push({ type: 'text', data }))
|
|
787
|
+
parser.on('tagopen', (data) => events.push({ type: 'tagopen', data }))
|
|
788
|
+
parser.on('tagclose', (data) => events.push({ type: 'tagclose', data }))
|
|
789
|
+
|
|
790
|
+
parser.write('<tag>Text with &am')
|
|
791
|
+
parser.write('p; and &l')
|
|
792
|
+
parser.write('t; entities</tag>')
|
|
793
|
+
parser.end()
|
|
794
|
+
|
|
795
|
+
expect(events).toEqual([
|
|
796
|
+
{
|
|
797
|
+
type: 'tagopen',
|
|
798
|
+
data: {
|
|
799
|
+
name: 'tag',
|
|
800
|
+
attrs: '',
|
|
801
|
+
isSelfClosing: false,
|
|
802
|
+
rawTag: '<tag>',
|
|
803
|
+
},
|
|
804
|
+
},
|
|
805
|
+
{
|
|
806
|
+
type: 'text',
|
|
807
|
+
data: { contents: 'Text with &am' },
|
|
808
|
+
},
|
|
809
|
+
{
|
|
810
|
+
type: 'text',
|
|
811
|
+
data: { contents: 'p; and &l' },
|
|
812
|
+
},
|
|
813
|
+
{
|
|
814
|
+
type: 'text',
|
|
815
|
+
data: { contents: 't; entities' },
|
|
816
|
+
},
|
|
817
|
+
{
|
|
818
|
+
type: 'tagclose',
|
|
819
|
+
data: {
|
|
820
|
+
name: 'tag',
|
|
821
|
+
rawTag: '</tag>',
|
|
822
|
+
},
|
|
823
|
+
},
|
|
824
|
+
])
|
|
825
|
+
expect(
|
|
826
|
+
events
|
|
827
|
+
.filter((e) => e.type === 'text')
|
|
828
|
+
.map((e) => e.data.contents)
|
|
829
|
+
.join(''),
|
|
830
|
+
).toEqual('Text with & and < entities')
|
|
831
|
+
})
|
|
832
|
+
|
|
833
|
+
it('should handle text nodes correctly in _final when shouldParseEntities is false', () => {
|
|
834
|
+
const parser = new Saxy(undefined, false)
|
|
835
|
+
const events: any[] = []
|
|
836
|
+
parser.on('text', (data) => events.push({ type: 'text', data }))
|
|
837
|
+
|
|
838
|
+
// Write text that would normally be parsed if shouldParseEntities was true
|
|
839
|
+
parser.write('Final text with & < entities')
|
|
840
|
+
parser.end() // _final will be called here
|
|
841
|
+
|
|
842
|
+
expect(events).toEqual([
|
|
843
|
+
{
|
|
844
|
+
type: 'text',
|
|
845
|
+
data: { contents: 'Final text with & < entities' },
|
|
846
|
+
},
|
|
847
|
+
])
|
|
848
|
+
})
|
|
849
|
+
})
|
|
850
|
+
|
|
851
|
+
describe('Real World Examples', () => {
|
|
852
|
+
it('should handle && ( <', () => {
|
|
853
|
+
const parser = new Saxy()
|
|
854
|
+
const events: any[] = []
|
|
855
|
+
parser.on('text', (data) => events.push({ type: 'text', data }))
|
|
856
|
+
parser.on('tagopen', (data) => events.push({ type: 'tagopen', data }))
|
|
857
|
+
parser.on('tagclose', (data) => events.push({ type: 'tagclose', data }))
|
|
858
|
+
|
|
859
|
+
// Write text split across chunks with no entities or tags
|
|
860
|
+
parser.write(
|
|
861
|
+
'<write_file>\n<path>path/to/file</path>\n<content>testing && ( <div className="flex flex-col"></content>\n</write_file>',
|
|
862
|
+
)
|
|
863
|
+
parser.end()
|
|
864
|
+
|
|
865
|
+
// The text content should be emitted in two chunks due to the new immediate emission behavior
|
|
866
|
+
expect(events).toEqual([
|
|
867
|
+
{
|
|
868
|
+
data: {
|
|
869
|
+
attrs: '',
|
|
870
|
+
isSelfClosing: false,
|
|
871
|
+
name: 'write_file',
|
|
872
|
+
rawTag: '<write_file>',
|
|
873
|
+
},
|
|
874
|
+
type: 'tagopen',
|
|
875
|
+
},
|
|
876
|
+
{
|
|
877
|
+
data: {
|
|
878
|
+
attrs: '',
|
|
879
|
+
isSelfClosing: false,
|
|
880
|
+
name: 'path',
|
|
881
|
+
rawTag: '<path>',
|
|
882
|
+
},
|
|
883
|
+
type: 'tagopen',
|
|
884
|
+
},
|
|
885
|
+
{
|
|
886
|
+
data: {
|
|
887
|
+
contents: 'path/to/file',
|
|
888
|
+
},
|
|
889
|
+
type: 'text',
|
|
890
|
+
},
|
|
891
|
+
{
|
|
892
|
+
data: {
|
|
893
|
+
name: 'path',
|
|
894
|
+
rawTag: '</path>',
|
|
895
|
+
},
|
|
896
|
+
type: 'tagclose',
|
|
897
|
+
},
|
|
898
|
+
{
|
|
899
|
+
data: {
|
|
900
|
+
attrs: '',
|
|
901
|
+
isSelfClosing: false,
|
|
902
|
+
name: 'content',
|
|
903
|
+
rawTag: '<content>',
|
|
904
|
+
},
|
|
905
|
+
type: 'tagopen',
|
|
906
|
+
},
|
|
907
|
+
{
|
|
908
|
+
data: {
|
|
909
|
+
contents: 'testing && ( <div className="flex flex-col">',
|
|
910
|
+
},
|
|
911
|
+
type: 'text',
|
|
912
|
+
},
|
|
913
|
+
{
|
|
914
|
+
data: {
|
|
915
|
+
name: 'content',
|
|
916
|
+
rawTag: '</content>',
|
|
917
|
+
},
|
|
918
|
+
type: 'tagclose',
|
|
919
|
+
},
|
|
920
|
+
{
|
|
921
|
+
data: {
|
|
922
|
+
name: 'write_file',
|
|
923
|
+
rawTag: '</write_file>',
|
|
924
|
+
},
|
|
925
|
+
type: 'tagclose',
|
|
926
|
+
},
|
|
927
|
+
])
|
|
928
|
+
})
|
|
929
|
+
|
|
930
|
+
it('should handle entity at end of content', () => {
|
|
931
|
+
const parser = new Saxy()
|
|
932
|
+
const events: any[] = []
|
|
933
|
+
parser.on('text', (data) => events.push({ type: 'text', data }))
|
|
934
|
+
parser.on('tagopen', (data) => events.push({ type: 'tagopen', data }))
|
|
935
|
+
parser.on('tagclose', (data) => events.push({ type: 'tagclose', data }))
|
|
936
|
+
|
|
937
|
+
// Write text split across chunks with no entities or tags
|
|
938
|
+
parser.write(
|
|
939
|
+
`<write_file>\n<path>path/to/file</path>\n<content>some value &</content>\n</write_file>`,
|
|
940
|
+
)
|
|
941
|
+
parser.end()
|
|
942
|
+
|
|
943
|
+
// The text content should be emitted in two chunks due to the new immediate emission behavior
|
|
944
|
+
expect(events).toEqual([
|
|
945
|
+
{
|
|
946
|
+
data: {
|
|
947
|
+
attrs: '',
|
|
948
|
+
isSelfClosing: false,
|
|
949
|
+
name: 'write_file',
|
|
950
|
+
rawTag: '<write_file>',
|
|
951
|
+
},
|
|
952
|
+
type: 'tagopen',
|
|
953
|
+
},
|
|
954
|
+
{
|
|
955
|
+
data: {
|
|
956
|
+
attrs: '',
|
|
957
|
+
isSelfClosing: false,
|
|
958
|
+
name: 'path',
|
|
959
|
+
rawTag: '<path>',
|
|
960
|
+
},
|
|
961
|
+
type: 'tagopen',
|
|
962
|
+
},
|
|
963
|
+
{
|
|
964
|
+
data: {
|
|
965
|
+
contents: 'path/to/file',
|
|
966
|
+
},
|
|
967
|
+
type: 'text',
|
|
968
|
+
},
|
|
969
|
+
{
|
|
970
|
+
data: {
|
|
971
|
+
name: 'path',
|
|
972
|
+
rawTag: '</path>',
|
|
973
|
+
},
|
|
974
|
+
type: 'tagclose',
|
|
975
|
+
},
|
|
976
|
+
{
|
|
977
|
+
data: {
|
|
978
|
+
attrs: '',
|
|
979
|
+
isSelfClosing: false,
|
|
980
|
+
name: 'content',
|
|
981
|
+
rawTag: '<content>',
|
|
982
|
+
},
|
|
983
|
+
type: 'tagopen',
|
|
984
|
+
},
|
|
985
|
+
{
|
|
986
|
+
data: {
|
|
987
|
+
contents: 'some value &',
|
|
988
|
+
},
|
|
989
|
+
type: 'text',
|
|
990
|
+
},
|
|
991
|
+
{
|
|
992
|
+
data: {
|
|
993
|
+
name: 'content',
|
|
994
|
+
rawTag: '</content>',
|
|
995
|
+
},
|
|
996
|
+
type: 'tagclose',
|
|
997
|
+
},
|
|
998
|
+
{
|
|
999
|
+
data: {
|
|
1000
|
+
name: 'write_file',
|
|
1001
|
+
rawTag: '</write_file>',
|
|
1002
|
+
},
|
|
1003
|
+
type: 'tagclose',
|
|
1004
|
+
},
|
|
1005
|
+
])
|
|
1006
|
+
})
|
|
1007
|
+
})
|
|
1008
|
+
})
|