@pixel-point/toolcraft 0.0.18 → 0.0.19
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 +1 -1
- package/src/generate-demand-only-lifecycle.test.mjs +9 -1
- package/src/generate-performance-iteration-execution.test.mjs +3 -3
- package/src/generate-test-delivery-architecture-assertions.mjs +11 -73
- package/src/generate-test-demand-only-lifecycle.mjs +34 -36
- package/src/generate-test-dependency-sandbox.mjs +4 -1
- package/src/generate-test-doc-assertions.mjs +55 -53
- package/src/generate-test-doc-assertions.test.mjs +1 -1
- package/src/generate-test-doc-policy-assertions.mjs +1 -1
- package/src/generate-test-export-doc-assertions.mjs +53 -0
- package/src/generate-test-file-assertions.mjs +51 -8
- package/src/generate-test-integrity-assertions.mjs +5 -2
- package/src/generate-test-integrity-manifest-assertions.mjs +16 -5
- package/src/generate-test-integrity-ownership-assertions.mjs +36 -4
- package/src/generate-test-package-assertions.mjs +4 -0
- package/src/generate-test-product-fixture.mjs +1 -1
- package/src/generate-test-product-fixture.test.mjs +35 -38
- package/src/generate-test-product-iteration.mjs +0 -1
- package/src/generate-test-product-iteration.test.mjs +0 -1
- package/src/generate-test-runtime-boundary-assertions.mjs +20 -0
- package/src/generate-test-standalone-assertions.mjs +0 -16
- package/src/generate-test-standalone-delivery-stages.mjs +2 -86
- package/src/generate.test.mjs +4 -0
- package/src/generated-integrity-manifest.test.mjs +5 -2
- package/src/generated-source-policy.test.mjs +0 -4
- package/src/package-json.mjs +5 -0
- package/src/package-json.test.mjs +21 -0
- package/src/package-manager.mjs +2 -0
- package/src/package-manager.test.mjs +8 -0
- package/src/packaged-template-fallback-helpers.mjs +254 -0
- package/src/packaged-template-fallback.test.mjs +121 -46
- package/src/packaged-template-runtime-assertions.mjs +150 -0
- package/templates/runtime/contracts/component-contracts.choices.test.ts +18 -3
- package/templates/runtime/contracts/component-contracts.choices.ts +8 -3
- package/templates/runtime/contracts/component-contracts.inputs.ts +2 -1
- package/templates/runtime/contracts/component-contracts.runtime-acceptance.test.ts +18 -4
- package/templates/runtime/contracts/component-contracts.runtime-shell.test.ts +1 -1
- package/templates/runtime/contracts/component-contracts.runtime.ts +7 -4
- package/templates/runtime/contracts/component-contracts.visual.test.ts +20 -0
- package/templates/runtime/contracts/component-contracts.visual.ts +4 -0
- package/templates/runtime/contracts/decision-contracts.test.ts +18 -12
- package/templates/runtime/contracts/decision-contracts.ts +4 -4
- package/templates/runtime/contracts/performance-verification-policy.test.ts +12 -12
- package/templates/runtime/contracts/performance-verification-policy.ts +8 -8
- package/templates/runtime/export/artifact-download.ts +1 -0
- package/templates/runtime/export/artifact-frame-renderer.ts +2 -15
- package/templates/runtime/export/artifact-frame-state.ts +16 -0
- package/templates/runtime/export/artifact-scene-frame.test.ts +3 -3
- package/templates/runtime/export/artifact-scene-frame.ts +3 -3
- package/templates/runtime/export/export-error.ts +5 -0
- package/templates/runtime/export/export-renderer-coverage.ts +54 -0
- package/templates/runtime/export/image-artifact-export.ts +2 -2
- package/templates/runtime/export/index.ts +13 -0
- package/templates/runtime/export/product-export-renderer.test.ts +38 -4
- package/templates/runtime/export/product-export-renderer.ts +0 -41
- package/templates/runtime/export/product-svg-export-renderer.ts +21 -0
- package/templates/runtime/export/svg-artifact-export.test.ts +98 -0
- package/templates/runtime/export/svg-artifact-export.ts +120 -0
- package/templates/runtime/export/svg-document.test.ts +221 -0
- package/templates/runtime/export/svg-document.ts +400 -0
- package/templates/runtime/export/svg-policy.ts +47 -0
- package/templates/runtime/index.ts +1 -0
- package/templates/runtime/react/app-shell/runtime-public-api.test.tsx +10 -0
- package/templates/runtime/react/app-shell/settings-transfer.test.ts +21 -0
- package/templates/runtime/react/app-shell/toolcraft-app.scene-export.test.tsx +46 -1
- package/templates/runtime/react/app-shell/toolcraft-app.tsx +7 -2
- package/templates/runtime/react/canvas/canvas-shell-interactions.test.tsx +30 -0
- package/templates/runtime/react/canvas/canvas-shell-pinch-interactions.test.tsx +155 -0
- package/templates/runtime/react/canvas/canvas-shell-rendering.test.tsx +1 -1
- package/templates/runtime/react/canvas/canvas-shell.tsx +16 -5
- package/templates/runtime/react/canvas/canvas-viewport-geometry.ts +133 -0
- package/templates/runtime/react/canvas/use-canvas-viewport-interactions.ts +285 -36
- package/templates/runtime/react/controls-panel/__tests__/controls-panel.color-applicability-layout.test.tsx +134 -0
- package/templates/runtime/react/controls-panel/__tests__/controls-panel.color-layout.test.tsx +16 -1
- package/templates/runtime/react/controls-panel/__tests__/controls-panel.render-isolation.test.tsx +2 -0
- package/templates/runtime/react/controls-panel/__tests__/controls-panel.scene-export-actions.test.tsx +39 -0
- package/templates/runtime/react/controls-panel/__tests__/controls-panel.setup-controls.test.tsx +3 -3
- package/templates/runtime/react/controls-panel/__tests__/controls-panel.source-collection.test.tsx +1 -4
- package/templates/runtime/react/controls-panel/__tests__/controls-panel.source-color-bank.test.tsx +2 -2
- package/templates/runtime/react/controls-panel/__tests__/controls-panel.vector-interaction.test.tsx +6 -6
- package/templates/runtime/react/controls-panel/actions/controls-panel-actions.ts +2 -2
- package/templates/runtime/react/controls-panel/actions/export-action-runner.ts +40 -11
- package/templates/runtime/react/controls-panel/layout/controls-panel-layout.tsx +31 -2
- package/templates/runtime/react/controls-panel/layout/controls-panel-section.tsx +4 -1
- package/templates/runtime/react/controls-panel/renderers/controls-panel-action-renderer.tsx +2 -1
- package/templates/runtime/react/controls-panel/renderers/controls-panel-basic-renderers.tsx +2 -52
- package/templates/runtime/react/controls-panel/values/controls-panel-color-values.ts +1 -9
- package/templates/runtime/react/controls-panel/values/controls-panel-spatial-values.ts +7 -2
- package/templates/runtime/react/orientation-gizmo/orientation-gizmo-math.ts +9 -69
- package/templates/runtime/schema/artifact-export-actions.test.ts +47 -0
- package/templates/runtime/schema/artifact-export-actions.ts +49 -0
- package/templates/runtime/schema/types.ts +1 -0
- package/templates/runtime/state/canvas-background-state.ts +1 -16
- package/templates/runtime/state/canvas-state.ts +32 -20
- package/templates/runtime/state/control-value-codecs.test.ts +98 -0
- package/templates/runtime/state/control-value-codecs.ts +700 -0
- package/templates/runtime/state/control-value-normalization.test.ts +1 -1
- package/templates/runtime/state/control-value-normalization.ts +127 -135
- package/templates/runtime/state/controls-reducer.ts +26 -3
- package/templates/runtime/state/create-template-state.test.ts +30 -0
- package/templates/runtime/state/create-template-state.ts +52 -31
- package/templates/runtime/state/orientation-pose.ts +80 -0
- package/templates/runtime/state/persistence-control-values.test.ts +59 -0
- package/templates/runtime/state/reducer-controls.test.ts +45 -0
- package/templates/runtime/state/reducer-media-reset.test.ts +1 -1
- package/templates/runtime/state/reducer-timeline.test.ts +70 -0
- package/templates/runtime/state/timeline-reducer.ts +40 -2
- package/templates/runtime/testing/performance-schema-queries.ts +2 -2
- package/templates/starter/AGENTS.md +21 -22
- package/templates/starter/docs/toolcraft/README.md +6 -6
- package/templates/starter/docs/toolcraft/acceptance-testing.md +20 -20
- package/templates/starter/docs/toolcraft/agent-worklog.md +88 -1
- package/templates/starter/docs/toolcraft/assembly-workflow.md +7 -6
- package/templates/starter/docs/toolcraft/component-rules.md +2 -2
- package/templates/starter/docs/toolcraft/core/layout.md +6 -1
- package/templates/starter/docs/toolcraft/core/media-upload.md +1 -1
- package/templates/starter/docs/toolcraft/core/performance.md +8 -10
- package/templates/starter/docs/toolcraft/core/reference-study.md +80 -19
- package/templates/starter/docs/toolcraft/core/runtime-boundary.md +2 -1
- package/templates/starter/docs/toolcraft/core/setup-export.md +43 -13
- package/templates/starter/docs/toolcraft/decision-contract.md +2 -2
- package/templates/starter/docs/toolcraft/performance.md +8 -10
- package/templates/starter/docs/toolcraft/renderer-technique.md +2 -2
- package/templates/starter/docs/toolcraft/schema-reference.md +8 -8
- package/templates/starter/docs/toolcraft/workflow.md +14 -14
- package/templates/starter/e2e/app-browser-infinity-canvas-evidence.spec.ts +38 -0
- package/templates/starter/e2e/app-browser-motion-reference-requirements.spec.ts +411 -0
- package/templates/starter/e2e/app-browser-proof-session.spec.ts +85 -0
- package/templates/starter/e2e/app-browser-runtime-requirements.spec.ts +62 -0
- package/templates/starter/e2e/app-browser-selection-scope-evidence.spec.ts +137 -0
- package/templates/starter/e2e/browser-infinity-canvas-svg-evidence.ts +42 -0
- package/templates/starter/e2e/browser-layer-evidence-helpers.ts +15 -36
- package/templates/starter/e2e/browser-product-raster-snapshot.ts +213 -0
- package/templates/starter/e2e/browser-proof-session.ts +43 -15
- package/templates/starter/e2e/browser-proof-surface-action.ts +79 -0
- package/templates/starter/e2e/browser-proof-types.ts +15 -0
- package/templates/starter/e2e/browser-runtime-evidence-requirements.ts +22 -6
- package/templates/starter/e2e/browser-selection-scope-evidence.ts +269 -0
- package/templates/starter/e2e/browser-semantic-evidence-test-helpers.ts +97 -0
- package/templates/starter/e2e/browser-svg-export-evidence.spec.ts +79 -0
- package/templates/starter/e2e/browser-svg-export-evidence.ts +152 -0
- package/templates/starter/e2e/export-artifact-helpers.ts +70 -0
- package/templates/starter/e2e/product-observable-helpers.ts +8 -129
- package/templates/starter/e2e/svg-artifact-inspection.spec.ts +136 -0
- package/templates/starter/e2e/svg-artifact-inspection.ts +331 -0
- package/templates/starter/e2e/svg-download-test-fixtures.ts +34 -0
- package/templates/starter/e2e/toolcraft-delivery-catalog-reporter.ts +198 -15
- package/templates/starter/e2e/toolcraft-feature-verification-reporter.spec.ts +149 -0
- package/templates/starter/e2e/toolcraft-feature-verification-reporter.ts +223 -0
- package/templates/starter/package.json +2 -0
- package/templates/starter/scripts/check-toolcraft-docs.mjs +1 -0
- package/templates/starter/scripts/create-toolcraft-motion-reference-study.mjs +233 -0
- package/templates/starter/scripts/create-toolcraft-motion-reference-study.test.mjs +459 -0
- package/templates/starter/scripts/playwright-test-title-selection.d.mts +45 -0
- package/templates/starter/scripts/run-browser-performance-test-helpers.mjs +0 -27
- package/templates/starter/scripts/run-browser-performance.mjs +0 -6
- package/templates/starter/scripts/run-browser-performance.test.mjs +5 -13
- package/templates/starter/scripts/run-delivery-verification-test-helpers.mjs +0 -34
- package/templates/starter/scripts/run-delivery-verification.test.mjs +135 -31
- package/templates/starter/scripts/run-feature-verification.mjs +212 -0
- package/templates/starter/scripts/run-feature-verification.test.mjs +226 -0
- package/templates/starter/scripts/toolcraft-checkpoint-delivery-state.mjs +21 -8
- package/templates/starter/scripts/toolcraft-checkpoint-delivery-state.test.mjs +32 -92
- package/templates/starter/scripts/toolcraft-checkpoint-transaction.mjs +28 -6
- package/templates/starter/scripts/toolcraft-checkpoint-transaction.test.mjs +8 -63
- package/templates/starter/scripts/toolcraft-delivery-anchor.mjs +28 -8
- package/templates/starter/scripts/toolcraft-delivery-anchor.test.mjs +50 -61
- package/templates/starter/scripts/toolcraft-delivery-architecture-inventory.mjs +0 -4
- package/templates/starter/scripts/toolcraft-delivery-architecture-policy.mjs +0 -1
- package/templates/starter/scripts/toolcraft-delivery-evidence.test.mjs +2 -3
- package/templates/starter/scripts/toolcraft-delivery-executor.mjs +5 -1
- package/templates/starter/scripts/toolcraft-delivery-executor.test.mjs +5 -12
- package/templates/starter/scripts/toolcraft-delivery-functional-context.d.mts +1 -48
- package/templates/starter/scripts/toolcraft-delivery-functional-context.mjs +2 -30
- package/templates/starter/scripts/toolcraft-delivery-functional-context.test.mjs +4 -166
- package/templates/starter/scripts/toolcraft-delivery-functional-initial.test.mjs +4 -20
- package/templates/starter/scripts/toolcraft-delivery-lifecycle.mjs +43 -192
- package/templates/starter/scripts/toolcraft-delivery-performance-iteration-lifecycle.test.mjs +79 -440
- package/templates/starter/scripts/toolcraft-delivery-plan-authority.test.mjs +102 -297
- package/templates/starter/scripts/toolcraft-delivery-plan-construction.mjs +46 -97
- package/templates/starter/scripts/toolcraft-delivery-plan-test-helpers.mjs +125 -0
- package/templates/starter/scripts/toolcraft-delivery-plan-validation.test.mjs +58 -0
- package/templates/starter/scripts/toolcraft-delivery-plan.d.mts +19 -31
- package/templates/starter/scripts/toolcraft-delivery-plan.mjs +254 -252
- package/templates/starter/scripts/toolcraft-delivery-plan.test.mjs +29 -457
- package/templates/starter/scripts/toolcraft-delivery-receipt-performance.test.mjs +1 -1
- package/templates/starter/scripts/toolcraft-delivery-receipt-strictness.test.mjs +3 -72
- package/templates/starter/scripts/toolcraft-delivery-receipt-test-helpers.mjs +7 -36
- package/templates/starter/scripts/toolcraft-delivery-receipt.d.mts +3 -5
- package/templates/starter/scripts/toolcraft-delivery-receipt.mjs +15 -31
- package/templates/starter/scripts/toolcraft-delivery-receipt.test.mjs +28 -20
- package/templates/starter/scripts/toolcraft-delivery-receipt.types.test.mts +22 -30
- package/templates/starter/scripts/toolcraft-feature-verification-plan.d.mts +20 -0
- package/templates/starter/scripts/toolcraft-feature-verification-plan.mjs +146 -0
- package/templates/starter/scripts/toolcraft-feature-verification-plan.test.mjs +96 -0
- package/templates/starter/scripts/toolcraft-functional-proof-model.d.mts +3 -18
- package/templates/starter/scripts/toolcraft-functional-proof-model.mjs +39 -127
- package/templates/starter/scripts/toolcraft-functional-proof-model.test.mjs +25 -362
- package/templates/starter/scripts/toolcraft-functional-proof-model.types.test.mts +6 -83
- package/templates/starter/scripts/toolcraft-functional-proof-primitives.d.mts +11 -0
- package/templates/starter/scripts/toolcraft-functional-proof-primitives.mjs +61 -0
- package/templates/starter/scripts/toolcraft-functional-proof-primitives.test.mjs +43 -0
- package/templates/starter/scripts/toolcraft-integrity-policy.mjs +13 -0
- package/templates/starter/scripts/toolcraft-integrity-test-utils.mjs +1 -1
- package/templates/starter/scripts/toolcraft-layer-evidence-facade.test.mjs +58 -22
- package/templates/starter/scripts/toolcraft-motion-reference-analysis-protocol.mjs +111 -0
- package/templates/starter/scripts/toolcraft-motion-reference-analysis-protocol.test.mjs +116 -0
- package/templates/starter/scripts/toolcraft-motion-reference-artifacts.d.mts +37 -0
- package/templates/starter/scripts/toolcraft-motion-reference-artifacts.mjs +308 -0
- package/templates/starter/scripts/toolcraft-motion-reference-artifacts.test.mjs +420 -0
- package/templates/starter/scripts/toolcraft-motion-reference-artifacts.types.test.mts +50 -0
- package/templates/starter/scripts/toolcraft-motion-reference-command-options.mjs +195 -0
- package/templates/starter/scripts/toolcraft-motion-reference-command-options.test.mjs +224 -0
- package/templates/starter/scripts/toolcraft-motion-reference-contact-sheet.mjs +122 -0
- package/templates/starter/scripts/toolcraft-motion-reference-contact-sheet.test.mjs +153 -0
- package/templates/starter/scripts/toolcraft-motion-reference-evidence-assembly.mjs +270 -0
- package/templates/starter/scripts/toolcraft-motion-reference-evidence.test.mjs +432 -0
- package/templates/starter/scripts/toolcraft-motion-reference-ffmpeg-output.mjs +275 -0
- package/templates/starter/scripts/toolcraft-motion-reference-ffmpeg-output.test.mjs +294 -0
- package/templates/starter/scripts/toolcraft-motion-reference-group-inventory.mjs +148 -0
- package/templates/starter/scripts/toolcraft-motion-reference-image-filter-graph.mjs +101 -0
- package/templates/starter/scripts/toolcraft-motion-reference-image-filter-graph.test.mjs +124 -0
- package/templates/starter/scripts/toolcraft-motion-reference-image-source.mjs +259 -0
- package/templates/starter/scripts/toolcraft-motion-reference-image-source.test.mjs +338 -0
- package/templates/starter/scripts/toolcraft-motion-reference-image-timing.mjs +96 -0
- package/templates/starter/scripts/toolcraft-motion-reference-image-timing.test.mjs +81 -0
- package/templates/starter/scripts/toolcraft-motion-reference-lock-recovery.test.mjs +144 -0
- package/templates/starter/scripts/toolcraft-motion-reference-media-source.mjs +165 -0
- package/templates/starter/scripts/toolcraft-motion-reference-media-source.test.mjs +299 -0
- package/templates/starter/scripts/toolcraft-motion-reference-publication-discovery.test.mjs +142 -0
- package/templates/starter/scripts/toolcraft-motion-reference-publication-isolation.test.mjs +234 -0
- package/templates/starter/scripts/toolcraft-motion-reference-publication-journal-schema.mjs +122 -0
- package/templates/starter/scripts/toolcraft-motion-reference-publication-journal-store.mjs +89 -0
- package/templates/starter/scripts/toolcraft-motion-reference-publication-journal-store.test.mjs +74 -0
- package/templates/starter/scripts/toolcraft-motion-reference-publication-journal.mjs +264 -0
- package/templates/starter/scripts/toolcraft-motion-reference-publication-journal.test.mjs +377 -0
- package/templates/starter/scripts/toolcraft-motion-reference-publication-lease.mjs +254 -0
- package/templates/starter/scripts/toolcraft-motion-reference-publication-lease.test.mjs +130 -0
- package/templates/starter/scripts/toolcraft-motion-reference-publication-staging.mjs +128 -0
- package/templates/starter/scripts/toolcraft-motion-reference-publication-staging.test.mjs +209 -0
- package/templates/starter/scripts/toolcraft-motion-reference-publication.fixtures.mjs +88 -0
- package/templates/starter/scripts/toolcraft-motion-reference-publication.mjs +249 -0
- package/templates/starter/scripts/toolcraft-motion-reference-publication.test.mjs +433 -0
- package/templates/starter/scripts/toolcraft-motion-reference-review-output.mjs +38 -0
- package/templates/starter/scripts/toolcraft-motion-reference-review-output.test.mjs +29 -0
- package/templates/starter/scripts/toolcraft-motion-reference-root-safety.test.mjs +84 -0
- package/templates/starter/scripts/toolcraft-motion-reference-roots.mjs +83 -0
- package/templates/starter/scripts/toolcraft-motion-reference-sampling.mjs +283 -0
- package/templates/starter/scripts/toolcraft-motion-reference-sampling.test.mjs +480 -0
- package/templates/starter/scripts/toolcraft-motion-reference-stage-registry.mjs +39 -0
- package/templates/starter/scripts/toolcraft-motion-reference-stage-registry.test.mjs +59 -0
- package/templates/starter/scripts/toolcraft-motion-reference-stage.mjs +71 -0
- package/templates/starter/scripts/toolcraft-motion-reference-stage.test.mjs +61 -0
- package/templates/starter/scripts/toolcraft-motion-review-numeric.mjs +74 -0
- package/templates/starter/scripts/toolcraft-motion-review-numeric.test.mjs +65 -0
- package/templates/starter/scripts/toolcraft-motion-review-partitioning.mjs +268 -0
- package/templates/starter/scripts/toolcraft-motion-review-partitioning.test.mjs +329 -0
- package/templates/starter/scripts/toolcraft-motion-review-protected-units.mjs +120 -0
- package/templates/starter/scripts/toolcraft-motion-review-protected-units.test.mjs +111 -0
- package/templates/starter/scripts/toolcraft-performance-escalation-policy.test.mjs +77 -345
- package/templates/starter/scripts/toolcraft-performance-receipt-validation.test.mjs +19 -21
- package/templates/starter/scripts/toolcraft-product-boundary-ast.mjs +1 -1
- package/templates/starter/scripts/toolcraft-product-export-boundary.mjs +10 -1
- package/templates/starter/scripts/toolcraft-product-export-boundary.test.mjs +5 -1
- package/templates/starter/scripts/toolcraft-product-observable-facade.test.mjs +46 -1
- package/templates/starter/scripts/toolcraft-receipt-boundary.test.mjs +0 -1
- package/templates/starter/scripts/toolcraft-source-inventory.d.mts +5 -0
- package/templates/starter/scripts/toolcraft-source-inventory.mjs +25 -14
- package/templates/starter/scripts/toolcraft-source-inventory.test.mjs +48 -0
- package/templates/starter/scripts/toolcraft-source-ownership.mjs +0 -1
- package/templates/starter/scripts/toolcraft-source-ownership.test.mjs +30 -5
- package/templates/starter/scripts/toolcraft-verification-receipt-test-helpers.mjs +5 -26
- package/templates/starter/scripts/toolcraft-verification-receipt.d.mts +0 -7
- package/templates/starter/scripts/toolcraft-verification-receipt.mjs +3 -47
- package/templates/starter/scripts/toolcraft-verification-receipt.test.mjs +6 -87
- package/templates/starter/scripts/toolcraft-vitest-runtime-contract.d.mts +19 -0
- package/templates/starter/scripts/toolcraft-vitest-runtime-contract.mjs +107 -0
- package/templates/starter/scripts/toolcraft-vitest-runtime-contract.test.mjs +114 -0
- package/templates/starter/scripts/toolcraft-vitest-runtime-evidence-reporter.mjs +13 -2
- package/templates/starter/scripts/toolcraft-vitest-runtime-evidence-reporter.test.mjs +110 -0
- package/templates/starter/src/app/acceptance/artifact-export-intent.ts +51 -20
- package/templates/starter/src/app/acceptance/canvas-coverage.ts +1 -0
- package/templates/starter/src/app/acceptance/color-bank-labels.ts +11 -15
- package/templates/starter/src/app/acceptance/color-row-grouping.ts +33 -0
- package/templates/starter/src/app/acceptance/control-acceptance-coverage.ts +0 -11
- package/templates/starter/src/app/acceptance/control-acceptance-policy.ts +2 -3
- package/templates/starter/src/app/acceptance/control-component-rules.ts +0 -10
- package/templates/starter/src/app/acceptance/control-labels.ts +30 -1
- package/templates/starter/src/app/acceptance/control-layout-section-rules.ts +18 -0
- package/templates/starter/src/app/acceptance/export-artifact-coverage.ts +25 -17
- package/templates/starter/src/app/acceptance/feature-verification-selection.test.ts +295 -0
- package/templates/starter/src/app/acceptance/feature-verification-selection.ts +161 -0
- package/templates/starter/src/app/acceptance/infinity-canvas.ts +10 -0
- package/templates/starter/src/app/acceptance/interaction-ownership-intent.ts +19 -1
- package/templates/starter/src/app/acceptance/interaction-ownership.ts +18 -2
- package/templates/starter/src/app/acceptance/motion-reference-evidence-validation.mjs +65 -0
- package/templates/starter/src/app/acceptance/motion-reference-evidence-windows.mjs +301 -0
- package/templates/starter/src/app/acceptance/motion-reference-evidence.d.mts +11 -0
- package/templates/starter/src/app/acceptance/motion-reference-evidence.mjs +145 -0
- package/templates/starter/src/app/acceptance/motion-reference-study-behaviors.ts +162 -0
- package/templates/starter/src/app/acceptance/motion-reference-study-coverage.ts +206 -0
- package/templates/starter/src/app/acceptance/motion-reference-study-identity.ts +129 -0
- package/templates/starter/src/app/acceptance/motion-reference-study-partitions.ts +186 -0
- package/templates/starter/src/app/acceptance/motion-reference-study.ts +90 -0
- package/templates/starter/src/app/acceptance/output-export-actions.test.ts +9 -1
- package/templates/starter/src/app/acceptance/output-export-actions.ts +14 -22
- package/templates/starter/src/app/acceptance/output-export-layout-rules.ts +5 -1
- package/templates/starter/src/app/acceptance/output-export-model.ts +4 -0
- package/templates/starter/src/app/acceptance/output-export.ts +4 -1
- package/templates/starter/src/app/acceptance/reference-study-types.ts +167 -17
- package/templates/starter/src/app/acceptance/runtime-coverage.ts +6 -1
- package/templates/starter/src/app/acceptance/selection-scope.test.ts +200 -0
- package/templates/starter/src/app/acceptance/selection-scope.ts +151 -0
- package/templates/starter/src/app/acceptance/transfer-mode-types.ts +114 -0
- package/templates/starter/src/app/acceptance/types.ts +43 -118
- package/templates/starter/src/app/acceptance/validate-coverage.ts +14 -3
- package/templates/starter/src/app/starter-acceptance-data.ts +1 -0
- package/templates/starter/src/app/starter-acceptance.animation-intent.test.ts +3 -0
- package/templates/starter/src/app/starter-acceptance.artifact-export-intent.test.ts +81 -8
- package/templates/starter/src/app/starter-acceptance.background-export.test.ts +2 -0
- package/templates/starter/src/app/starter-acceptance.canvas-sizing.test.ts +2 -0
- package/templates/starter/src/app/starter-acceptance.color-row-grouping.test.ts +118 -0
- package/templates/starter/src/app/starter-acceptance.compound-part-coverage.test.ts +1 -1
- package/templates/starter/src/app/starter-acceptance.contract-fixtures.ts +1 -0
- package/templates/starter/src/app/starter-acceptance.control-applicability.test.ts +1 -0
- package/templates/starter/src/app/starter-acceptance.control-label-context.test.ts +1 -0
- package/templates/starter/src/app/starter-acceptance.control-labels.test.ts +78 -3
- package/templates/starter/src/app/starter-acceptance.control-naming-rules.test.ts +77 -1
- package/templates/starter/src/app/starter-acceptance.custom-control-fit-check.test.ts +1 -1
- package/templates/starter/src/app/starter-acceptance.export-artifact.test.ts +74 -3
- package/templates/starter/src/app/starter-acceptance.export-test-utils.ts +5 -1
- package/templates/starter/src/app/starter-acceptance.image-export-settings.test.ts +2 -0
- package/templates/starter/src/app/starter-acceptance.interaction-ownership.test.ts +19 -3
- package/templates/starter/src/app/starter-acceptance.layers.test.ts +2 -1
- package/templates/starter/src/app/starter-acceptance.media-upload.test.ts +28 -0
- package/templates/starter/src/app/starter-acceptance.motion-reference-evidence.test.ts +17 -0
- package/templates/starter/src/app/starter-acceptance.motion-reference-identity.test.ts +163 -0
- package/templates/starter/src/app/starter-acceptance.motion-reference-mapping.test.ts +133 -0
- package/templates/starter/src/app/starter-acceptance.motion-reference-ownership.test.ts +121 -0
- package/templates/starter/src/app/starter-acceptance.motion-reference-partitions.test.ts +210 -0
- package/templates/starter/src/app/starter-acceptance.motion-reference-test-utils.ts +313 -0
- package/templates/starter/src/app/starter-acceptance.output-export-intent.test.ts +78 -4
- package/templates/starter/src/app/starter-acceptance.product-output-export.test.ts +6 -1
- package/templates/starter/src/app/starter-acceptance.product-readiness.test.ts +18 -1
- package/templates/starter/src/app/starter-acceptance.product-worklog.test.ts +123 -2
- package/templates/starter/src/app/starter-acceptance.reference-custom-timeline.test.ts +2 -0
- package/templates/starter/src/app/starter-acceptance.reference-foundation.test.ts +8 -0
- package/templates/starter/src/app/starter-acceptance.reference-timeline.test.ts +7 -0
- package/templates/starter/src/app/starter-acceptance.section-cohesion.test.ts +2 -0
- package/templates/starter/src/app/starter-acceptance.timeline-playback.test.ts +5 -0
- package/templates/starter/src/app/starter-acceptance.ts +34 -8
- package/templates/starter/src/app/starter-acceptance.video-export-settings.test.ts +2 -0
- package/templates/starter/src/app/starter-acceptance.video-reference-study.test.ts +34 -236
- package/templates/starter/src/app/starter-acceptance.view-interaction.test.ts +4 -0
- package/templates/starter/src/app/starter-acceptance.worklog-test-utils.ts +122 -6
- package/templates/starter/src/app/starter-acceptance.worklog.test.ts +152 -16
- package/templates/starter/src/app/starter-performance.gates.test.ts +20 -18
- package/templates/starter/src/app/starter-performance.lifecycle.test.ts +22 -6
- package/templates/starter/src/app/test-evidence/browser-runtime-contract.ts +3 -0
- package/templates/starter/tsconfig.json +1 -0
- package/templates/starter/scripts/toolcraft-browser-impact-selection.mjs +0 -26
- package/templates/starter/scripts/toolcraft-delivery-framework-refresh.test.mjs +0 -141
- package/templates/starter/scripts/toolcraft-delivery-functional-changed.test.mjs +0 -468
- package/templates/starter/scripts/toolcraft-delivery-functional-model-lifecycle.test.mjs +0 -254
- package/templates/starter/scripts/toolcraft-delivery-functional-semantic-regression.test.mjs +0 -135
- package/templates/starter/scripts/toolcraft-delivery-performance-iteration-durability.test.mjs +0 -329
- package/templates/starter/scripts/toolcraft-delivery-plan-errors.test.mjs +0 -430
- package/templates/starter/scripts/toolcraft-delivery-plan-functional-model.test.mjs +0 -358
- package/templates/starter/scripts/toolcraft-functional-proof-regression-fixtures.mjs +0 -298
- package/templates/starter/scripts/toolcraft-verification-impact-inventory.d.mts +0 -62
- package/templates/starter/scripts/toolcraft-verification-impact-inventory.mjs +0 -344
- package/templates/starter/scripts/toolcraft-verification-impact-inventory.test.mjs +0 -204
- package/templates/starter/scripts/toolcraft-verification-impact-performance-candidates.test.mjs +0 -210
- package/templates/starter/scripts/toolcraft-verification-impact-resolution.mjs +0 -344
- package/templates/starter/scripts/toolcraft-verification-impact-resolution.test.mjs +0 -270
- package/templates/starter/scripts/toolcraft-verification-impact-semantic-resolution.test.mjs +0 -449
- package/templates/starter/scripts/toolcraft-verification-impact-support-resolution.test.mjs +0 -195
- package/templates/starter/scripts/toolcraft-verification-impact.d.mts +0 -132
- package/templates/starter/scripts/toolcraft-verification-impact.mjs +0 -169
- package/templates/starter/scripts/toolcraft-verification-impact.test.mjs +0 -300
- package/templates/starter/scripts/toolcraft-verification-input-roles.mjs +0 -197
- package/templates/starter/scripts/toolcraft-verification-input-roles.test.mjs +0 -225
- package/templates/starter/src/app/acceptance/video-reference-study.ts +0 -217
- package/templates/starter/src/app/starter-verification-impact.json +0 -15
|
@@ -2,8 +2,10 @@ import {
|
|
|
2
2
|
getToolcraftColorBankDescriptionError,
|
|
3
3
|
getToolcraftColorBankLabelErrors,
|
|
4
4
|
} from "./color-bank-labels";
|
|
5
|
+
import { getToolcraftColorRowGroupingErrors } from "./color-row-grouping";
|
|
5
6
|
import {
|
|
6
7
|
getToolcraftControlDescriptionError,
|
|
8
|
+
getToolcraftDuplicateSectionTitleLabelError,
|
|
7
9
|
getToolcraftGenericControlLabelError,
|
|
8
10
|
} from "./control-labels";
|
|
9
11
|
import type { ToolcraftControlLayoutFacts } from "./control-layout-model";
|
|
@@ -61,6 +63,10 @@ export function getToolcraftControlLayoutSectionInvariantErrors(
|
|
|
61
63
|
);
|
|
62
64
|
}
|
|
63
65
|
errors.push(
|
|
66
|
+
...getToolcraftColorRowGroupingErrors({
|
|
67
|
+
controls,
|
|
68
|
+
sectionLabel,
|
|
69
|
+
}),
|
|
64
70
|
...getToolcraftColorBankLabelErrors({
|
|
65
71
|
controls,
|
|
66
72
|
sectionLabel,
|
|
@@ -69,6 +75,18 @@ export function getToolcraftControlLayoutSectionInvariantErrors(
|
|
|
69
75
|
);
|
|
70
76
|
|
|
71
77
|
for (const [controlId, control] of controls) {
|
|
78
|
+
const duplicateSectionTitleLabelError =
|
|
79
|
+
getToolcraftDuplicateSectionTitleLabelError({
|
|
80
|
+
control,
|
|
81
|
+
controlId,
|
|
82
|
+
sectionLabel,
|
|
83
|
+
sectionTitle,
|
|
84
|
+
});
|
|
85
|
+
|
|
86
|
+
if (duplicateSectionTitleLabelError) {
|
|
87
|
+
errors.push(duplicateSectionTitleLabelError);
|
|
88
|
+
}
|
|
89
|
+
|
|
72
90
|
const genericLabelError = getToolcraftGenericControlLabelError({
|
|
73
91
|
control,
|
|
74
92
|
controlId,
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import type {
|
|
2
2
|
ResolvedToolcraftAppSchema,
|
|
3
|
-
|
|
3
|
+
ToolcraftArtifactExportActionRole,
|
|
4
4
|
} from "@repo/toolcraft-runtime";
|
|
5
|
+
import { isToolcraftArtifactExportAction } from "@repo/toolcraft-runtime";
|
|
5
6
|
|
|
6
7
|
import { getControlActions } from "./actions";
|
|
7
8
|
import type {
|
|
@@ -11,9 +12,10 @@ import type {
|
|
|
11
12
|
|
|
12
13
|
const requiredCoverageByRole = {
|
|
13
14
|
"export-image": "all-required-image-export-behavior",
|
|
15
|
+
"export-svg": "all-required-svg-export-behavior",
|
|
14
16
|
"export-video": "all-required-video-export-behavior",
|
|
15
17
|
} as const satisfies Record<
|
|
16
|
-
|
|
18
|
+
ToolcraftArtifactExportActionRole,
|
|
17
19
|
ToolcraftExportArtifactCoverage
|
|
18
20
|
>;
|
|
19
21
|
|
|
@@ -26,24 +28,13 @@ function getCoverageValues(
|
|
|
26
28
|
: entry.exportArtifactCoverage;
|
|
27
29
|
}
|
|
28
30
|
|
|
29
|
-
function
|
|
30
|
-
action: ToolcraftActionSchema | string,
|
|
31
|
-
): action is ToolcraftActionSchema & {
|
|
32
|
-
role: "export-image" | "export-video";
|
|
33
|
-
} {
|
|
34
|
-
return (
|
|
35
|
-
typeof action !== "string" &&
|
|
36
|
-
(action.role === "export-image" || action.role === "export-video")
|
|
37
|
-
);
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
function collectMediaExportActions(schema: ResolvedToolcraftAppSchema) {
|
|
31
|
+
function collectArtifactExportActions(schema: ResolvedToolcraftAppSchema) {
|
|
41
32
|
return (schema.panels.controls?.sections ?? []).flatMap((section) =>
|
|
42
33
|
Object.values(section.controls).flatMap((control) =>
|
|
43
34
|
control.type !== "panelActions" || !control.target
|
|
44
35
|
? []
|
|
45
36
|
: getControlActions(control)
|
|
46
|
-
.filter(
|
|
37
|
+
.filter(isToolcraftArtifactExportAction)
|
|
47
38
|
.map((action) => ({
|
|
48
39
|
requiredCoverage: requiredCoverageByRole[action.role],
|
|
49
40
|
role: action.role,
|
|
@@ -54,6 +45,23 @@ function collectMediaExportActions(schema: ResolvedToolcraftAppSchema) {
|
|
|
54
45
|
);
|
|
55
46
|
}
|
|
56
47
|
|
|
48
|
+
function getMisplacedArtifactExportActionErrors(
|
|
49
|
+
schema: ResolvedToolcraftAppSchema,
|
|
50
|
+
): string[] {
|
|
51
|
+
return (schema.panels.controls?.sections ?? []).flatMap((section) =>
|
|
52
|
+
Object.values(section.controls).flatMap((control) =>
|
|
53
|
+
control.type === "panelActions"
|
|
54
|
+
? []
|
|
55
|
+
: getControlActions(control)
|
|
56
|
+
.filter(isToolcraftArtifactExportAction)
|
|
57
|
+
.map(
|
|
58
|
+
(action) =>
|
|
59
|
+
`Typed ${action.role} action "${action.value}" must be declared in sticky panelActions.`,
|
|
60
|
+
),
|
|
61
|
+
),
|
|
62
|
+
);
|
|
63
|
+
}
|
|
64
|
+
|
|
57
65
|
export function getToolcraftExportArtifactCoverageErrors({
|
|
58
66
|
acceptance,
|
|
59
67
|
schema,
|
|
@@ -61,8 +69,8 @@ export function getToolcraftExportArtifactCoverageErrors({
|
|
|
61
69
|
acceptance: readonly ToolcraftComponentAcceptance[];
|
|
62
70
|
schema: ResolvedToolcraftAppSchema;
|
|
63
71
|
}>): string[] {
|
|
64
|
-
const errors
|
|
65
|
-
const exportActions =
|
|
72
|
+
const errors = getMisplacedArtifactExportActionErrors(schema);
|
|
73
|
+
const exportActions = collectArtifactExportActions(schema);
|
|
66
74
|
|
|
67
75
|
for (const entry of acceptance) {
|
|
68
76
|
const coverage = getCoverageValues(entry);
|
|
@@ -0,0 +1,295 @@
|
|
|
1
|
+
import { defineToolcraft } from "@repo/toolcraft-runtime";
|
|
2
|
+
import { describe, expect, it } from "vitest";
|
|
3
|
+
|
|
4
|
+
import { createToolcraftFeatureVerificationSelection } from "./feature-verification-selection";
|
|
5
|
+
import type {
|
|
6
|
+
ToolcraftComponentAcceptance,
|
|
7
|
+
ToolcraftControlSectionInventoryEntry,
|
|
8
|
+
} from "./types";
|
|
9
|
+
|
|
10
|
+
function acceptance(
|
|
11
|
+
id: string,
|
|
12
|
+
target: string,
|
|
13
|
+
kind: ToolcraftComponentAcceptance["kind"] = "control",
|
|
14
|
+
): ToolcraftComponentAcceptance {
|
|
15
|
+
return {
|
|
16
|
+
automated: true,
|
|
17
|
+
automatedTestName: `${id} unit`,
|
|
18
|
+
browser: true,
|
|
19
|
+
browserTestName: `browser: ${id}`,
|
|
20
|
+
componentType: kind === "control" ? "control" : "runtime",
|
|
21
|
+
evidence: "product-output",
|
|
22
|
+
expectedObservable: `${id} changes output.`,
|
|
23
|
+
fixture: "feature verification fixture",
|
|
24
|
+
id,
|
|
25
|
+
kind,
|
|
26
|
+
target,
|
|
27
|
+
userAction: `Change ${id}.`,
|
|
28
|
+
};
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
const schema = defineToolcraft({
|
|
32
|
+
canvas: { enabled: true },
|
|
33
|
+
panels: {
|
|
34
|
+
controls: {
|
|
35
|
+
sections: [
|
|
36
|
+
{
|
|
37
|
+
controls: {
|
|
38
|
+
frosting: {
|
|
39
|
+
applicability: {
|
|
40
|
+
all: [{ equals: "frosted", target: "material.layer" }],
|
|
41
|
+
mode: "conditional",
|
|
42
|
+
},
|
|
43
|
+
defaultValue: "#FFFFFF",
|
|
44
|
+
label: "Frosting",
|
|
45
|
+
target: "material.frosting",
|
|
46
|
+
type: "color",
|
|
47
|
+
},
|
|
48
|
+
gloss: {
|
|
49
|
+
applicability: { mode: "always" },
|
|
50
|
+
defaultValue: 0.5,
|
|
51
|
+
label: "Gloss",
|
|
52
|
+
max: 1,
|
|
53
|
+
min: 0,
|
|
54
|
+
target: "material.gloss",
|
|
55
|
+
type: "slider",
|
|
56
|
+
},
|
|
57
|
+
layer: {
|
|
58
|
+
applicability: { mode: "always" },
|
|
59
|
+
defaultValue: "frosted",
|
|
60
|
+
label: "Layer",
|
|
61
|
+
options: [
|
|
62
|
+
{ label: "Frosted", value: "frosted" },
|
|
63
|
+
{ label: "Chocolate", value: "chocolate" },
|
|
64
|
+
],
|
|
65
|
+
target: "material.layer",
|
|
66
|
+
type: "segmented",
|
|
67
|
+
},
|
|
68
|
+
},
|
|
69
|
+
id: "material",
|
|
70
|
+
title: "Material",
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
controls: {
|
|
74
|
+
intensity: {
|
|
75
|
+
applicability: { mode: "always" },
|
|
76
|
+
defaultValue: 0.5,
|
|
77
|
+
label: "Intensity",
|
|
78
|
+
max: 1,
|
|
79
|
+
min: 0,
|
|
80
|
+
target: "lighting.intensity",
|
|
81
|
+
type: "slider",
|
|
82
|
+
},
|
|
83
|
+
},
|
|
84
|
+
id: "lighting",
|
|
85
|
+
title: "Lighting",
|
|
86
|
+
},
|
|
87
|
+
],
|
|
88
|
+
title: "Controls",
|
|
89
|
+
},
|
|
90
|
+
},
|
|
91
|
+
});
|
|
92
|
+
|
|
93
|
+
const sectionInventory = [
|
|
94
|
+
{
|
|
95
|
+
entity: "Material",
|
|
96
|
+
entityId: "material",
|
|
97
|
+
groupingReason: "Layer, frosting, and gloss define one material.",
|
|
98
|
+
id: "material",
|
|
99
|
+
targets: ["material.layer", "material.frosting", "material.gloss"],
|
|
100
|
+
title: "Material",
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
entity: "Lighting",
|
|
104
|
+
entityId: "lighting",
|
|
105
|
+
groupingReason: "Lighting owns its independent intensity.",
|
|
106
|
+
id: "lighting",
|
|
107
|
+
targets: ["lighting.intensity"],
|
|
108
|
+
title: "Lighting",
|
|
109
|
+
},
|
|
110
|
+
] as const satisfies readonly ToolcraftControlSectionInventoryEntry[];
|
|
111
|
+
|
|
112
|
+
const browserAcceptance = [
|
|
113
|
+
acceptance("lighting.intensity", "lighting.intensity"),
|
|
114
|
+
acceptance(
|
|
115
|
+
"material.exportedAppearance",
|
|
116
|
+
"material.frosting",
|
|
117
|
+
"runtime",
|
|
118
|
+
),
|
|
119
|
+
acceptance("material.frosting", "material.frosting"),
|
|
120
|
+
acceptance("material.gloss", "material.gloss"),
|
|
121
|
+
acceptance("material.layer", "material.layer"),
|
|
122
|
+
] as const;
|
|
123
|
+
|
|
124
|
+
function select(
|
|
125
|
+
selection: { acceptanceIds?: readonly string[]; all?: boolean },
|
|
126
|
+
acceptanceRows: readonly ToolcraftComponentAcceptance[] = browserAcceptance,
|
|
127
|
+
) {
|
|
128
|
+
return createToolcraftFeatureVerificationSelection({
|
|
129
|
+
acceptance: acceptanceRows,
|
|
130
|
+
schema,
|
|
131
|
+
sectionInventory,
|
|
132
|
+
...selection,
|
|
133
|
+
});
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
describe("Toolcraft feature verification selection", () => {
|
|
137
|
+
it("keeps a leaf control focused", () => {
|
|
138
|
+
expect(select({ acceptanceIds: ["material.gloss"] }).acceptanceIds).toEqual([
|
|
139
|
+
"material.gloss",
|
|
140
|
+
]);
|
|
141
|
+
});
|
|
142
|
+
|
|
143
|
+
it("expands a finite selector to semantic peers that derive branch cases", () => {
|
|
144
|
+
const selection = select({ acceptanceIds: ["material.layer"] });
|
|
145
|
+
|
|
146
|
+
expect(selection.acceptanceIds).toEqual([
|
|
147
|
+
"material.frosting",
|
|
148
|
+
"material.gloss",
|
|
149
|
+
"material.layer",
|
|
150
|
+
]);
|
|
151
|
+
expect(selection.testNames).toEqual([
|
|
152
|
+
"browser: material.frosting",
|
|
153
|
+
"browser: material.gloss",
|
|
154
|
+
"browser: material.layer",
|
|
155
|
+
]);
|
|
156
|
+
});
|
|
157
|
+
|
|
158
|
+
it("selects every browser acceptance row only for explicit all mode", () => {
|
|
159
|
+
expect(select({ all: true }).acceptanceIds).toEqual([
|
|
160
|
+
"lighting.intensity",
|
|
161
|
+
"material.exportedAppearance",
|
|
162
|
+
"material.frosting",
|
|
163
|
+
"material.gloss",
|
|
164
|
+
"material.layer",
|
|
165
|
+
]);
|
|
166
|
+
});
|
|
167
|
+
|
|
168
|
+
it("reaches a fixed point without selecting unrelated or runtime rows", () => {
|
|
169
|
+
const chainedSchema = defineToolcraft({
|
|
170
|
+
canvas: { enabled: true },
|
|
171
|
+
panels: {
|
|
172
|
+
controls: {
|
|
173
|
+
sections: [
|
|
174
|
+
{
|
|
175
|
+
controls: {
|
|
176
|
+
detail: {
|
|
177
|
+
applicability: { mode: "always" },
|
|
178
|
+
defaultValue: "fine",
|
|
179
|
+
label: "Detail",
|
|
180
|
+
options: [
|
|
181
|
+
{ label: "Fine", value: "fine" },
|
|
182
|
+
{ label: "Coarse", value: "coarse" },
|
|
183
|
+
],
|
|
184
|
+
target: "shape.detail",
|
|
185
|
+
type: "segmented",
|
|
186
|
+
},
|
|
187
|
+
mode: {
|
|
188
|
+
applicability: { mode: "always" },
|
|
189
|
+
defaultValue: "solid",
|
|
190
|
+
label: "Mode",
|
|
191
|
+
options: [
|
|
192
|
+
{ label: "Solid", value: "solid" },
|
|
193
|
+
{ label: "Wire", value: "wire" },
|
|
194
|
+
],
|
|
195
|
+
target: "shape.mode",
|
|
196
|
+
type: "segmented",
|
|
197
|
+
},
|
|
198
|
+
width: {
|
|
199
|
+
applicability: { mode: "always" },
|
|
200
|
+
defaultValue: 10,
|
|
201
|
+
label: "Width",
|
|
202
|
+
max: 20,
|
|
203
|
+
min: 1,
|
|
204
|
+
target: "shape.width",
|
|
205
|
+
type: "slider",
|
|
206
|
+
},
|
|
207
|
+
},
|
|
208
|
+
id: "shape",
|
|
209
|
+
title: "Shape",
|
|
210
|
+
},
|
|
211
|
+
],
|
|
212
|
+
title: "Controls",
|
|
213
|
+
},
|
|
214
|
+
},
|
|
215
|
+
});
|
|
216
|
+
const chainedInventory = [
|
|
217
|
+
{
|
|
218
|
+
entity: "Shape",
|
|
219
|
+
entityId: "shape",
|
|
220
|
+
groupingReason: "Shape mode, detail, and width define one shape.",
|
|
221
|
+
id: "shape",
|
|
222
|
+
targets: ["shape.mode", "shape.detail", "shape.width"],
|
|
223
|
+
title: "Shape",
|
|
224
|
+
},
|
|
225
|
+
] as const;
|
|
226
|
+
const selection = createToolcraftFeatureVerificationSelection({
|
|
227
|
+
acceptance: [
|
|
228
|
+
acceptance("shape.detail", "shape.detail"),
|
|
229
|
+
acceptance("shape.mode", "shape.mode"),
|
|
230
|
+
acceptance("shape.width", "shape.width"),
|
|
231
|
+
acceptance("shape.export", "shape.width", "runtime"),
|
|
232
|
+
],
|
|
233
|
+
acceptanceIds: ["shape.mode"],
|
|
234
|
+
schema: chainedSchema,
|
|
235
|
+
sectionInventory: chainedInventory,
|
|
236
|
+
});
|
|
237
|
+
|
|
238
|
+
expect(selection.acceptanceIds).toEqual([
|
|
239
|
+
"shape.detail",
|
|
240
|
+
"shape.mode",
|
|
241
|
+
"shape.width",
|
|
242
|
+
]);
|
|
243
|
+
});
|
|
244
|
+
|
|
245
|
+
it("fails closed for invalid seed and acceptance boundaries", () => {
|
|
246
|
+
expect(() => select({})).toThrow(/acceptance ids or all mode/iu);
|
|
247
|
+
expect(() =>
|
|
248
|
+
select({ acceptanceIds: ["material.layer"], all: true }),
|
|
249
|
+
).toThrow(/not both/iu);
|
|
250
|
+
expect(() => select({ acceptanceIds: ["missing"] })).toThrow(
|
|
251
|
+
/unknown browser acceptance id.*missing/iu,
|
|
252
|
+
);
|
|
253
|
+
expect(() =>
|
|
254
|
+
select(
|
|
255
|
+
{ acceptanceIds: ["material.layer"] },
|
|
256
|
+
[
|
|
257
|
+
...browserAcceptance,
|
|
258
|
+
acceptance("material.layer", "material.layer"),
|
|
259
|
+
],
|
|
260
|
+
),
|
|
261
|
+
).toThrow(/duplicate browser acceptance id.*material\.layer/iu);
|
|
262
|
+
expect(() =>
|
|
263
|
+
select(
|
|
264
|
+
{ acceptanceIds: ["material.nonBrowser"] },
|
|
265
|
+
[
|
|
266
|
+
...browserAcceptance,
|
|
267
|
+
{
|
|
268
|
+
...acceptance("material.nonBrowser", "material.gloss"),
|
|
269
|
+
browser: false,
|
|
270
|
+
browserTestName: "",
|
|
271
|
+
},
|
|
272
|
+
],
|
|
273
|
+
),
|
|
274
|
+
).toThrow(/unknown browser acceptance id.*material\.nonBrowser/iu);
|
|
275
|
+
});
|
|
276
|
+
|
|
277
|
+
it("rejects duplicate seeds and returns deeply frozen deterministic output", () => {
|
|
278
|
+
expect(() =>
|
|
279
|
+
select({ acceptanceIds: ["material.gloss", "material.gloss"] }),
|
|
280
|
+
).toThrow(/duplicate acceptance id.*material\.gloss/iu);
|
|
281
|
+
|
|
282
|
+
const selection = select({
|
|
283
|
+
acceptanceIds: ["material.layer", "lighting.intensity"],
|
|
284
|
+
});
|
|
285
|
+
expect(selection.acceptanceIds).toEqual([
|
|
286
|
+
"lighting.intensity",
|
|
287
|
+
"material.frosting",
|
|
288
|
+
"material.gloss",
|
|
289
|
+
"material.layer",
|
|
290
|
+
]);
|
|
291
|
+
expect(Object.isFrozen(selection)).toBe(true);
|
|
292
|
+
expect(Object.isFrozen(selection.acceptanceIds)).toBe(true);
|
|
293
|
+
expect(Object.isFrozen(selection.testNames)).toBe(true);
|
|
294
|
+
});
|
|
295
|
+
});
|
|
@@ -0,0 +1,161 @@
|
|
|
1
|
+
import type { ResolvedToolcraftAppSchema } from "@repo/toolcraft-runtime";
|
|
2
|
+
|
|
3
|
+
import { getToolcraftControlApplicabilityCases } from "./control-applicability-cases";
|
|
4
|
+
import type {
|
|
5
|
+
ToolcraftComponentAcceptance,
|
|
6
|
+
ToolcraftControlSectionInventoryEntry,
|
|
7
|
+
} from "./types";
|
|
8
|
+
|
|
9
|
+
export type ToolcraftFeatureVerificationSelection = Readonly<{
|
|
10
|
+
acceptanceIds: readonly string[];
|
|
11
|
+
testNames: readonly string[];
|
|
12
|
+
version: 1;
|
|
13
|
+
}>;
|
|
14
|
+
|
|
15
|
+
type ToolcraftFeatureVerificationSelectionInput = Readonly<{
|
|
16
|
+
acceptance: readonly ToolcraftComponentAcceptance[];
|
|
17
|
+
acceptanceIds?: readonly string[];
|
|
18
|
+
all?: boolean;
|
|
19
|
+
schema: Pick<ResolvedToolcraftAppSchema, "panels">;
|
|
20
|
+
sectionInventory: readonly ToolcraftControlSectionInventoryEntry[];
|
|
21
|
+
}>;
|
|
22
|
+
|
|
23
|
+
const compareCodeUnits = (left: string, right: string): number =>
|
|
24
|
+
left < right ? -1 : left > right ? 1 : 0;
|
|
25
|
+
|
|
26
|
+
function indexBrowserAcceptance(
|
|
27
|
+
acceptance: readonly ToolcraftComponentAcceptance[],
|
|
28
|
+
): Map<string, ToolcraftComponentAcceptance> {
|
|
29
|
+
const byId = new Map<string, ToolcraftComponentAcceptance>();
|
|
30
|
+
|
|
31
|
+
for (const entry of acceptance) {
|
|
32
|
+
if (!entry.browser || !entry.browserTestName.trim()) continue;
|
|
33
|
+
if (byId.has(entry.id)) {
|
|
34
|
+
throw new Error(
|
|
35
|
+
`Toolcraft feature verification found duplicate browser acceptance id "${entry.id}".`,
|
|
36
|
+
);
|
|
37
|
+
}
|
|
38
|
+
byId.set(entry.id, entry);
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
return byId;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
function getSeedIds({
|
|
45
|
+
acceptanceIds,
|
|
46
|
+
all,
|
|
47
|
+
browserAcceptance,
|
|
48
|
+
}: {
|
|
49
|
+
acceptanceIds: readonly string[] | undefined;
|
|
50
|
+
all: boolean | undefined;
|
|
51
|
+
browserAcceptance: ReadonlyMap<string, ToolcraftComponentAcceptance>;
|
|
52
|
+
}): string[] {
|
|
53
|
+
if (all && acceptanceIds !== undefined) {
|
|
54
|
+
throw new Error(
|
|
55
|
+
"Toolcraft feature verification accepts all mode or acceptance ids, not both.",
|
|
56
|
+
);
|
|
57
|
+
}
|
|
58
|
+
if (all) return [...browserAcceptance.keys()];
|
|
59
|
+
if (!acceptanceIds || acceptanceIds.length === 0) {
|
|
60
|
+
throw new Error(
|
|
61
|
+
"Toolcraft feature verification requires acceptance ids or all mode.",
|
|
62
|
+
);
|
|
63
|
+
}
|
|
64
|
+
if (new Set(acceptanceIds).size !== acceptanceIds.length) {
|
|
65
|
+
const duplicate = acceptanceIds.find(
|
|
66
|
+
(id, index) => acceptanceIds.indexOf(id) !== index,
|
|
67
|
+
);
|
|
68
|
+
throw new Error(
|
|
69
|
+
`Toolcraft feature verification received duplicate acceptance id "${duplicate}".`,
|
|
70
|
+
);
|
|
71
|
+
}
|
|
72
|
+
for (const id of acceptanceIds) {
|
|
73
|
+
if (!browserAcceptance.has(id)) {
|
|
74
|
+
throw new Error(
|
|
75
|
+
`Toolcraft feature verification received unknown browser acceptance id "${id}".`,
|
|
76
|
+
);
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
return [...acceptanceIds];
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
function indexDependentsBySelectorTarget({
|
|
83
|
+
browserAcceptance,
|
|
84
|
+
schema,
|
|
85
|
+
sectionInventory,
|
|
86
|
+
}: {
|
|
87
|
+
browserAcceptance: ReadonlyMap<string, ToolcraftComponentAcceptance>;
|
|
88
|
+
schema: Pick<ResolvedToolcraftAppSchema, "panels">;
|
|
89
|
+
sectionInventory: readonly ToolcraftControlSectionInventoryEntry[];
|
|
90
|
+
}): Map<string, Set<string>> {
|
|
91
|
+
const dependents = new Map<string, Set<string>>();
|
|
92
|
+
|
|
93
|
+
for (const entry of browserAcceptance.values()) {
|
|
94
|
+
if (entry.kind !== "control" || !entry.target) continue;
|
|
95
|
+
const selectorTargets = new Set(
|
|
96
|
+
getToolcraftControlApplicabilityCases({
|
|
97
|
+
schema,
|
|
98
|
+
sectionInventory,
|
|
99
|
+
target: entry.target,
|
|
100
|
+
}).map(({ selectorTarget }) => selectorTarget),
|
|
101
|
+
);
|
|
102
|
+
for (const selectorTarget of selectorTargets) {
|
|
103
|
+
const ids = dependents.get(selectorTarget) ?? new Set<string>();
|
|
104
|
+
ids.add(entry.id);
|
|
105
|
+
dependents.set(selectorTarget, ids);
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
return dependents;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
export function createToolcraftFeatureVerificationSelection(
|
|
113
|
+
input: ToolcraftFeatureVerificationSelectionInput,
|
|
114
|
+
): ToolcraftFeatureVerificationSelection {
|
|
115
|
+
const browserAcceptance = indexBrowserAcceptance(input.acceptance);
|
|
116
|
+
if (browserAcceptance.size === 0) {
|
|
117
|
+
throw new Error(
|
|
118
|
+
"Toolcraft feature verification requires at least one browser acceptance row.",
|
|
119
|
+
);
|
|
120
|
+
}
|
|
121
|
+
const selectedIds = new Set(
|
|
122
|
+
getSeedIds({
|
|
123
|
+
acceptanceIds: input.acceptanceIds,
|
|
124
|
+
all: input.all,
|
|
125
|
+
browserAcceptance,
|
|
126
|
+
}),
|
|
127
|
+
);
|
|
128
|
+
const dependentsBySelectorTarget = indexDependentsBySelectorTarget({
|
|
129
|
+
browserAcceptance,
|
|
130
|
+
schema: input.schema,
|
|
131
|
+
sectionInventory: input.sectionInventory,
|
|
132
|
+
});
|
|
133
|
+
const queue = [...selectedIds];
|
|
134
|
+
|
|
135
|
+
for (let index = 0; index < queue.length; index += 1) {
|
|
136
|
+
const selected = browserAcceptance.get(queue[index]!);
|
|
137
|
+
if (selected?.kind !== "control" || !selected.target) continue;
|
|
138
|
+
for (const dependentId of
|
|
139
|
+
dependentsBySelectorTarget.get(selected.target) ?? []) {
|
|
140
|
+
if (selectedIds.has(dependentId)) continue;
|
|
141
|
+
selectedIds.add(dependentId);
|
|
142
|
+
queue.push(dependentId);
|
|
143
|
+
}
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
const acceptanceIds = Object.freeze([...selectedIds].sort(compareCodeUnits));
|
|
147
|
+
const testNames = acceptanceIds.map(
|
|
148
|
+
(id) => browserAcceptance.get(id)!.browserTestName,
|
|
149
|
+
);
|
|
150
|
+
if (new Set(testNames).size !== testNames.length) {
|
|
151
|
+
throw new Error(
|
|
152
|
+
"Toolcraft feature verification requires one unique browser test name per selected acceptance id.",
|
|
153
|
+
);
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
return Object.freeze({
|
|
157
|
+
acceptanceIds,
|
|
158
|
+
testNames: Object.freeze([...testNames].sort(compareCodeUnits)),
|
|
159
|
+
version: 1,
|
|
160
|
+
});
|
|
161
|
+
}
|
|
@@ -2,6 +2,7 @@ import type { ResolvedToolcraftAppSchema } from "@repo/toolcraft-runtime";
|
|
|
2
2
|
|
|
3
3
|
import {
|
|
4
4
|
schemaHasPngExportPanelAction,
|
|
5
|
+
schemaHasSvgExportPanelAction,
|
|
5
6
|
schemaHasVideoExportPanelAction,
|
|
6
7
|
} from "./output-export-actions";
|
|
7
8
|
import type {
|
|
@@ -66,6 +67,15 @@ export function getToolcraftInfinityCanvasCoverageErrors({
|
|
|
66
67
|
});
|
|
67
68
|
}
|
|
68
69
|
|
|
70
|
+
if (schemaHasSvgExportPanelAction(schema)) {
|
|
71
|
+
requiredProofs.push({
|
|
72
|
+
coverage: "scene-bounds-svg-export",
|
|
73
|
+
evidence: "exported-bytes",
|
|
74
|
+
message:
|
|
75
|
+
'Export SVG with editable-output canvas requires a runtime acceptance entry with infinityCanvasCoverage "scene-bounds-svg-export" proving infinite export uses the exact visible scene union through ToolcraftAppComposition.sceneBoundsProvider.',
|
|
76
|
+
});
|
|
77
|
+
}
|
|
78
|
+
|
|
69
79
|
if (schemaHasVideoExportPanelAction(schema)) {
|
|
70
80
|
requiredProofs.push({
|
|
71
81
|
coverage: "scene-bounds-video-export",
|
|
@@ -14,7 +14,7 @@ export type ToolcraftInteractionEvidenceSource =
|
|
|
14
14
|
| "usability-analysis"
|
|
15
15
|
| "user-request";
|
|
16
16
|
|
|
17
|
-
|
|
17
|
+
type ToolcraftInteractionOwnershipBase = {
|
|
18
18
|
alternative: {
|
|
19
19
|
reason: string;
|
|
20
20
|
surface: ToolcraftInteractionSurface;
|
|
@@ -29,3 +29,21 @@ export type ToolcraftInteractionOwnershipEntry = {
|
|
|
29
29
|
surface: ToolcraftInteractionSurface;
|
|
30
30
|
target: string;
|
|
31
31
|
};
|
|
32
|
+
|
|
33
|
+
export type ToolcraftInteractionOwnershipEntry =
|
|
34
|
+
| (ToolcraftInteractionOwnershipBase & {
|
|
35
|
+
capability: "precise-value-entry" | "property-edit";
|
|
36
|
+
selectionScope:
|
|
37
|
+
| Readonly<{ mode: "global" }>
|
|
38
|
+
| Readonly<{
|
|
39
|
+
mode: "selected-entity";
|
|
40
|
+
selectionInteractionId: string;
|
|
41
|
+
}>;
|
|
42
|
+
})
|
|
43
|
+
| (ToolcraftInteractionOwnershipBase & {
|
|
44
|
+
capability: Exclude<
|
|
45
|
+
ToolcraftInteractionCapability,
|
|
46
|
+
"precise-value-entry" | "property-edit"
|
|
47
|
+
>;
|
|
48
|
+
selectionScope?: never;
|
|
49
|
+
});
|
|
@@ -56,6 +56,7 @@ function getAcceptanceTarget(
|
|
|
56
56
|
function getEntryShapeErrors(
|
|
57
57
|
entry: ToolcraftInteractionOwnershipEntry,
|
|
58
58
|
controlTargets: ReadonlySet<string>,
|
|
59
|
+
acceptanceTargets: ReadonlySet<string>,
|
|
59
60
|
): string[] {
|
|
60
61
|
const errors: string[] = [];
|
|
61
62
|
const expectedAlternative = entry.surface === "canvas" ? "panel" : "canvas";
|
|
@@ -66,7 +67,14 @@ function getEntryShapeErrors(
|
|
|
66
67
|
|
|
67
68
|
if (!entry.target.trim()) {
|
|
68
69
|
errors.push(`${entry.id || "interactionOwnership entry"} target must be non-empty.`);
|
|
69
|
-
} else if (
|
|
70
|
+
} else if (
|
|
71
|
+
!(
|
|
72
|
+
(entry.capability === "spatial-selection" ||
|
|
73
|
+
entry.capability === "structured-selection") &&
|
|
74
|
+
acceptanceTargets.has(entry.target)
|
|
75
|
+
) &&
|
|
76
|
+
!isToolcraftSupportedInteractionTarget(entry.target, controlTargets)
|
|
77
|
+
) {
|
|
70
78
|
errors.push(
|
|
71
79
|
`${entry.id} target ${entry.target} does not match a schema target or supported editor command.`,
|
|
72
80
|
);
|
|
@@ -168,6 +176,12 @@ export function getToolcraftInteractionOwnershipErrors({
|
|
|
168
176
|
|
|
169
177
|
const errors: string[] = [];
|
|
170
178
|
const controlTargets = new Set(controls.map(({ control }) => control.target));
|
|
179
|
+
const acceptanceTargets = new Set(
|
|
180
|
+
acceptance.flatMap((entry) => {
|
|
181
|
+
const target = getAcceptanceTarget(entry);
|
|
182
|
+
return target ? [target] : [];
|
|
183
|
+
}),
|
|
184
|
+
);
|
|
171
185
|
const visibleControlByTarget = new Map(
|
|
172
186
|
controls.map((control) => [control.control.target, control] as const),
|
|
173
187
|
);
|
|
@@ -182,7 +196,9 @@ export function getToolcraftInteractionOwnershipErrors({
|
|
|
182
196
|
const duplicateIds = new Set<string>();
|
|
183
197
|
|
|
184
198
|
for (const entry of inventory) {
|
|
185
|
-
errors.push(
|
|
199
|
+
errors.push(
|
|
200
|
+
...getEntryShapeErrors(entry, controlTargets, acceptanceTargets),
|
|
201
|
+
);
|
|
186
202
|
|
|
187
203
|
if (inventoryById.has(entry.id)) {
|
|
188
204
|
duplicateIds.add(entry.id);
|