@1agh/maude 0.42.0 → 0.44.0
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/apps/studio/.ai/cache/_stats.json +7 -0
- package/apps/studio/acp/bootstrap-brief.ts +12 -2
- package/apps/studio/acp/bridge.ts +44 -10
- package/apps/studio/acp/env.ts +23 -0
- package/apps/studio/acp/login-state.ts +263 -0
- package/apps/studio/acp/plugin-bootstrap.ts +31 -25
- package/apps/studio/acp/probe.ts +152 -1
- package/apps/studio/annotations-layer.tsx +1451 -324
- package/apps/studio/annotations-model.ts +58 -0
- package/apps/studio/api.ts +568 -24
- package/apps/studio/bin/_audio-search.mjs +140 -0
- package/apps/studio/bin/_import-asset-pdf-worker.mjs +34 -0
- package/apps/studio/bin/_import-asset.mjs +815 -0
- package/apps/studio/bin/_import-brand.mjs +635 -0
- package/apps/studio/bin/_import-tokens-alias-resolver.mjs +95 -0
- package/apps/studio/bin/_import-tokens.mjs +1201 -0
- package/apps/studio/bin/_ingest-footage.mjs +386 -0
- package/apps/studio/bin/_probe-footage-playwright.mjs +269 -0
- package/apps/studio/bin/_transcribe.mjs +419 -0
- package/apps/studio/bin/_transcribe.test.mjs +80 -0
- package/apps/studio/bin/_video-playwright.mjs +141 -71
- package/apps/studio/bin/audio-search.sh +28 -0
- package/apps/studio/bin/generate.sh +154 -0
- package/apps/studio/bin/import-asset.sh +34 -0
- package/apps/studio/bin/import-brand.sh +29 -0
- package/apps/studio/bin/import-tokens.sh +33 -0
- package/apps/studio/bin/ingest-footage.sh +27 -0
- package/apps/studio/bin/photo-adjust.sh +163 -0
- package/apps/studio/bin/photo-bg-remove.sh +258 -0
- package/apps/studio/bin/probe-footage.sh +28 -0
- package/apps/studio/bin/read-annotations.mjs +125 -2
- package/apps/studio/bin/transcribe.sh +39 -0
- package/apps/studio/canvas-edit.ts +656 -12
- package/apps/studio/canvas-lib.tsx +637 -10
- package/apps/studio/canvas-pipeline.ts +65 -7
- package/apps/studio/canvas-shell.tsx +156 -16
- package/apps/studio/client/app.jsx +2385 -699
- package/apps/studio/client/export-center.jsx +35 -1
- package/apps/studio/client/generate-dialog.jsx +352 -0
- package/apps/studio/client/github.js +18 -0
- package/apps/studio/client/inspector-controls.jsx +781 -0
- package/apps/studio/client/panels/BrandUploadPanel.jsx +233 -0
- package/apps/studio/client/panels/ChatPanel.jsx +15 -33
- package/apps/studio/client/panels/GitPanel.jsx +8 -0
- package/apps/studio/client/panels/IntroVideoDialog.jsx +44 -0
- package/apps/studio/client/panels/OnboardingWizard.jsx +12 -0
- package/apps/studio/client/panels/ReadinessList.jsx +227 -7
- package/apps/studio/client/panels/RepoBranchSwitcher.jsx +133 -21
- package/apps/studio/client/panels/SettingsPanel.jsx +828 -0
- package/apps/studio/client/panels/SetupChecklist.jsx +223 -0
- package/apps/studio/client/panels/StickerPicker.jsx +160 -0
- package/apps/studio/client/panels/TimelinePanel.jsx +15 -2
- package/apps/studio/client/photo-knobs.jsx +432 -0
- package/apps/studio/client/styles/3-shell-maude.css +376 -28
- package/apps/studio/client/styles/4-components.css +223 -0
- package/apps/studio/client/styles/6-acp-chat.css +86 -0
- package/apps/studio/client/tour/quick-setup-tour.js +39 -0
- package/apps/studio/commands/annotation-strokes-command.ts +13 -3
- package/apps/studio/commands/edit-source-command.ts +31 -4
- package/apps/studio/config.schema.json +70 -0
- package/apps/studio/context-menu.tsx +42 -8
- package/apps/studio/context.ts +16 -0
- package/apps/studio/design-setup-readiness.ts +115 -0
- package/apps/studio/dist/client.bundle.js +5572 -21
- package/apps/studio/dist/comment-mount.js +2 -2
- package/apps/studio/dist/runtime/.min-sizes.json +1 -0
- package/apps/studio/dist/runtime/@imgly_background-removal.js +5543 -0
- package/apps/studio/dist/runtime/pixi-js.js +519 -519
- package/apps/studio/dist/styles.css +1 -1
- package/apps/studio/dom-selection.ts +25 -0
- package/apps/studio/draw/palette.ts +34 -0
- package/apps/studio/exporters/jobs.ts +47 -5
- package/apps/studio/exporters/video.ts +24 -4
- package/apps/studio/footage/schema.test.ts +287 -0
- package/apps/studio/footage/schema.ts +662 -0
- package/apps/studio/footage-store.ts +235 -0
- package/apps/studio/fs-watch.ts +10 -0
- package/apps/studio/generation/adapters/elevenlabs.ts +370 -0
- package/apps/studio/generation/adapters/gemini.ts +542 -0
- package/apps/studio/generation/adapters/groq.test.ts +80 -0
- package/apps/studio/generation/adapters/groq.ts +247 -0
- package/apps/studio/generation/audio-library.test.ts +95 -0
- package/apps/studio/generation/audio-library.ts +156 -0
- package/apps/studio/generation/captions.test.ts +78 -0
- package/apps/studio/generation/captions.ts +132 -0
- package/apps/studio/generation/download.ts +76 -0
- package/apps/studio/generation/elevenlabs.test.ts +223 -0
- package/apps/studio/generation/gemini.test.ts +350 -0
- package/apps/studio/generation/jobs.test.ts +128 -0
- package/apps/studio/generation/jobs.ts +243 -0
- package/apps/studio/generation/keys.test.ts +75 -0
- package/apps/studio/generation/keys.ts +162 -0
- package/apps/studio/generation/prefs.test.ts +95 -0
- package/apps/studio/generation/prefs.ts +82 -0
- package/apps/studio/generation/registry.ts +88 -0
- package/apps/studio/generation/types.test.ts +123 -0
- package/apps/studio/generation/types.ts +266 -0
- package/apps/studio/generation/whisper-models.test.ts +152 -0
- package/apps/studio/generation/whisper-models.ts +257 -0
- package/apps/studio/generation/whisper-spike-results.md +61 -0
- package/apps/studio/git/endpoints.ts +68 -7
- package/apps/studio/git/service.ts +199 -21
- package/apps/studio/github/service.ts +67 -0
- package/apps/studio/handoff.ts +3 -2
- package/apps/studio/http.ts +1039 -22
- package/apps/studio/input-router.tsx +10 -0
- package/apps/studio/inspect.ts +53 -1
- package/apps/studio/media/intro.mp4 +0 -0
- package/apps/studio/media-commit-chain.ts +119 -0
- package/apps/studio/paths.ts +20 -0
- package/apps/studio/photo/filters.ts +285 -0
- package/apps/studio/photo/pipeline.ts +607 -0
- package/apps/studio/photo/schema.ts +367 -0
- package/apps/studio/photo-store.ts +154 -0
- package/apps/studio/readiness.ts +108 -20
- package/apps/studio/runtime-bundle.ts +29 -6
- package/apps/studio/scaffold-design.ts +1145 -0
- package/apps/studio/server.ts +18 -2
- package/apps/studio/stickers/figjam-doodle/manifest.json +104 -0
- package/apps/studio/stickers/figjam-doodle/slice1.png +0 -0
- package/apps/studio/stickers/figjam-doodle/slice10.png +0 -0
- package/apps/studio/stickers/figjam-doodle/slice11.png +0 -0
- package/apps/studio/stickers/figjam-doodle/slice12.png +0 -0
- package/apps/studio/stickers/figjam-doodle/slice13.png +0 -0
- package/apps/studio/stickers/figjam-doodle/slice14.png +0 -0
- package/apps/studio/stickers/figjam-doodle/slice15.png +0 -0
- package/apps/studio/stickers/figjam-doodle/slice16.png +0 -0
- package/apps/studio/stickers/figjam-doodle/slice17.png +0 -0
- package/apps/studio/stickers/figjam-doodle/slice18.png +0 -0
- package/apps/studio/stickers/figjam-doodle/slice19.png +0 -0
- package/apps/studio/stickers/figjam-doodle/slice2.png +0 -0
- package/apps/studio/stickers/figjam-doodle/slice20.png +0 -0
- package/apps/studio/stickers/figjam-doodle/slice21.png +0 -0
- package/apps/studio/stickers/figjam-doodle/slice22.png +0 -0
- package/apps/studio/stickers/figjam-doodle/slice23.png +0 -0
- package/apps/studio/stickers/figjam-doodle/slice24.png +0 -0
- package/apps/studio/stickers/figjam-doodle/slice3.png +0 -0
- package/apps/studio/stickers/figjam-doodle/slice4.png +0 -0
- package/apps/studio/stickers/figjam-doodle/slice5.png +0 -0
- package/apps/studio/stickers/figjam-doodle/slice6.png +0 -0
- package/apps/studio/stickers/figjam-doodle/slice7.png +0 -0
- package/apps/studio/stickers/figjam-doodle/slice8.png +0 -0
- package/apps/studio/stickers/figjam-doodle/slice9.png +0 -0
- package/apps/studio/stickers/life-style/best.png +0 -0
- package/apps/studio/stickers/life-style/come-on.png +0 -0
- package/apps/studio/stickers/life-style/cut.png +0 -0
- package/apps/studio/stickers/life-style/detox.png +0 -0
- package/apps/studio/stickers/life-style/just.png +0 -0
- package/apps/studio/stickers/life-style/manifest.json +68 -0
- package/apps/studio/stickers/life-style/mirror.png +0 -0
- package/apps/studio/stickers/life-style/nice.png +0 -0
- package/apps/studio/stickers/life-style/objects.png +0 -0
- package/apps/studio/stickers/life-style/ok.png +0 -0
- package/apps/studio/stickers/life-style/queen.png +0 -0
- package/apps/studio/stickers/life-style/star.png +0 -0
- package/apps/studio/stickers/life-style/sun.png +0 -0
- package/apps/studio/stickers/life-style/water.png +0 -0
- package/apps/studio/stickers/life-style/yeah.png +0 -0
- package/apps/studio/stickers/life-style/you-can.png +0 -0
- package/apps/studio/stickers/opposing-thoughts/check-the-deets.png +0 -0
- package/apps/studio/stickers/opposing-thoughts/cut-it.png +0 -0
- package/apps/studio/stickers/opposing-thoughts/dope.png +0 -0
- package/apps/studio/stickers/opposing-thoughts/fresh.png +0 -0
- package/apps/studio/stickers/opposing-thoughts/hot.png +0 -0
- package/apps/studio/stickers/opposing-thoughts/idea.png +0 -0
- package/apps/studio/stickers/opposing-thoughts/keep-exploring.png +0 -0
- package/apps/studio/stickers/opposing-thoughts/killed-it.png +0 -0
- package/apps/studio/stickers/opposing-thoughts/love-it.png +0 -0
- package/apps/studio/stickers/opposing-thoughts/manifest.json +88 -0
- package/apps/studio/stickers/opposing-thoughts/not-sure.png +0 -0
- package/apps/studio/stickers/opposing-thoughts/ok.png +0 -0
- package/apps/studio/stickers/opposing-thoughts/pure-gold.png +0 -0
- package/apps/studio/stickers/opposing-thoughts/save-for-later.png +0 -0
- package/apps/studio/stickers/opposing-thoughts/steal-this.png +0 -0
- package/apps/studio/stickers/opposing-thoughts/take-a-peek.png +0 -0
- package/apps/studio/stickers/opposing-thoughts/this-or-that.png +0 -0
- package/apps/studio/stickers/opposing-thoughts/thoughts.png +0 -0
- package/apps/studio/stickers/opposing-thoughts/vibes.png +0 -0
- package/apps/studio/stickers/opposing-thoughts/winner.png +0 -0
- package/apps/studio/stickers/opposing-thoughts/wip.png +0 -0
- package/apps/studio/stickers/project-status/group-100.png +0 -0
- package/apps/studio/stickers/project-status/group-101.png +0 -0
- package/apps/studio/stickers/project-status/group-102.png +0 -0
- package/apps/studio/stickers/project-status/group-103.png +0 -0
- package/apps/studio/stickers/project-status/group-104.png +0 -0
- package/apps/studio/stickers/project-status/group-105.png +0 -0
- package/apps/studio/stickers/project-status/group-106.png +0 -0
- package/apps/studio/stickers/project-status/group-107.png +0 -0
- package/apps/studio/stickers/project-status/group-108.png +0 -0
- package/apps/studio/stickers/project-status/group-109.png +0 -0
- package/apps/studio/stickers/project-status/group-110.png +0 -0
- package/apps/studio/stickers/project-status/group-111.png +0 -0
- package/apps/studio/stickers/project-status/group-112.png +0 -0
- package/apps/studio/stickers/project-status/group-113.png +0 -0
- package/apps/studio/stickers/project-status/group-114.png +0 -0
- package/apps/studio/stickers/project-status/group-115.png +0 -0
- package/apps/studio/stickers/project-status/group-117.png +0 -0
- package/apps/studio/stickers/project-status/group-118.png +0 -0
- package/apps/studio/stickers/project-status/group-119.png +0 -0
- package/apps/studio/stickers/project-status/group-120.png +0 -0
- package/apps/studio/stickers/project-status/group-121.png +0 -0
- package/apps/studio/stickers/project-status/group-122.png +0 -0
- package/apps/studio/stickers/project-status/group-41.png +0 -0
- package/apps/studio/stickers/project-status/group-42.png +0 -0
- package/apps/studio/stickers/project-status/group-43.png +0 -0
- package/apps/studio/stickers/project-status/group-44.png +0 -0
- package/apps/studio/stickers/project-status/group-45.png +0 -0
- package/apps/studio/stickers/project-status/group-46.png +0 -0
- package/apps/studio/stickers/project-status/group-47.png +0 -0
- package/apps/studio/stickers/project-status/group-48.png +0 -0
- package/apps/studio/stickers/project-status/group-49.png +0 -0
- package/apps/studio/stickers/project-status/group-50.png +0 -0
- package/apps/studio/stickers/project-status/group-51.png +0 -0
- package/apps/studio/stickers/project-status/group-52.png +0 -0
- package/apps/studio/stickers/project-status/group-53.png +0 -0
- package/apps/studio/stickers/project-status/group-54.png +0 -0
- package/apps/studio/stickers/project-status/group-55.png +0 -0
- package/apps/studio/stickers/project-status/group-56.png +0 -0
- package/apps/studio/stickers/project-status/group-57.png +0 -0
- package/apps/studio/stickers/project-status/group-58.png +0 -0
- package/apps/studio/stickers/project-status/group-59.png +0 -0
- package/apps/studio/stickers/project-status/group-60.png +0 -0
- package/apps/studio/stickers/project-status/group-61.png +0 -0
- package/apps/studio/stickers/project-status/group-62.png +0 -0
- package/apps/studio/stickers/project-status/group-63.png +0 -0
- package/apps/studio/stickers/project-status/group-64.png +0 -0
- package/apps/studio/stickers/project-status/group-65.png +0 -0
- package/apps/studio/stickers/project-status/group-66.png +0 -0
- package/apps/studio/stickers/project-status/group-67.png +0 -0
- package/apps/studio/stickers/project-status/group-68.png +0 -0
- package/apps/studio/stickers/project-status/group-69.png +0 -0
- package/apps/studio/stickers/project-status/group-70.png +0 -0
- package/apps/studio/stickers/project-status/group-71.png +0 -0
- package/apps/studio/stickers/project-status/group-72.png +0 -0
- package/apps/studio/stickers/project-status/group-73.png +0 -0
- package/apps/studio/stickers/project-status/group-74.png +0 -0
- package/apps/studio/stickers/project-status/group-75.png +0 -0
- package/apps/studio/stickers/project-status/group-76.png +0 -0
- package/apps/studio/stickers/project-status/group-77.png +0 -0
- package/apps/studio/stickers/project-status/group-78.png +0 -0
- package/apps/studio/stickers/project-status/group-79.png +0 -0
- package/apps/studio/stickers/project-status/group-80.png +0 -0
- package/apps/studio/stickers/project-status/group-81.png +0 -0
- package/apps/studio/stickers/project-status/group-82.png +0 -0
- package/apps/studio/stickers/project-status/group-83.png +0 -0
- package/apps/studio/stickers/project-status/group-84.png +0 -0
- package/apps/studio/stickers/project-status/group-85.png +0 -0
- package/apps/studio/stickers/project-status/group-86.png +0 -0
- package/apps/studio/stickers/project-status/group-87.png +0 -0
- package/apps/studio/stickers/project-status/group-88.png +0 -0
- package/apps/studio/stickers/project-status/group-89.png +0 -0
- package/apps/studio/stickers/project-status/group-90.png +0 -0
- package/apps/studio/stickers/project-status/group-91.png +0 -0
- package/apps/studio/stickers/project-status/group-92.png +0 -0
- package/apps/studio/stickers/project-status/group-93.png +0 -0
- package/apps/studio/stickers/project-status/group-94.png +0 -0
- package/apps/studio/stickers/project-status/group-96.png +0 -0
- package/apps/studio/stickers/project-status/group-97.png +0 -0
- package/apps/studio/stickers/project-status/group-98.png +0 -0
- package/apps/studio/stickers/project-status/group-99.png +0 -0
- package/apps/studio/stickers/project-status/manifest.json +328 -0
- package/apps/studio/test/_helpers.ts +15 -2
- package/apps/studio/test/acp-bootstrap-brief.test.ts +11 -0
- package/apps/studio/test/acp-bridge.test.ts +34 -1
- package/apps/studio/test/acp-commands.test.ts +2 -1
- package/apps/studio/test/acp-env.test.ts +30 -0
- package/apps/studio/test/acp-plugin-bootstrap.test.ts +23 -57
- package/apps/studio/test/acp-session-plugins.test.ts +72 -1
- package/apps/studio/test/annotation-strokes-command.test.ts +17 -0
- package/apps/studio/test/annotations-layer.test.ts +174 -0
- package/apps/studio/test/asset-api.test.ts +3 -3
- package/apps/studio/test/canvas-edit.test.ts +17 -6
- package/apps/studio/test/canvas-origin-gate.test.ts +50 -0
- package/apps/studio/test/csp-canvas-shell.test.ts +11 -0
- package/apps/studio/test/csrf-write-guard.test.ts +23 -1
- package/apps/studio/test/design-setup-readiness.test.ts +155 -0
- package/apps/studio/test/dynamic-text-edit.test.ts +162 -0
- package/apps/studio/test/edit-source-command.test.ts +23 -0
- package/apps/studio/test/element-structural-edit.test.ts +154 -0
- package/apps/studio/test/fixtures/fake-claude-auth.mjs +13 -0
- package/apps/studio/test/footage-store.test.ts +100 -0
- package/apps/studio/test/generate-route.test.ts +106 -0
- package/apps/studio/test/git-branches.test.ts +97 -0
- package/apps/studio/test/github-api.test.ts +56 -1
- package/apps/studio/test/import-asset-browser.test.ts +64 -0
- package/apps/studio/test/import-asset-route.test.ts +71 -0
- package/apps/studio/test/import-asset.test.ts +399 -0
- package/apps/studio/test/import-brand-browser.test.ts +88 -0
- package/apps/studio/test/import-brand-route.test.ts +120 -0
- package/apps/studio/test/import-brand.test.ts +206 -0
- package/apps/studio/test/import-tokens.test.ts +722 -0
- package/apps/studio/test/input-router.test.ts +33 -0
- package/apps/studio/test/inspect-script-syntax.test.ts +53 -0
- package/apps/studio/test/media-commit-chain.test.ts +210 -0
- package/apps/studio/test/photo-bg-remove-validation.test.ts +71 -0
- package/apps/studio/test/photo-canvas-bundle.test.ts +61 -0
- package/apps/studio/test/photo-edit-api.test.ts +201 -0
- package/apps/studio/test/photo-filters.test.ts +149 -0
- package/apps/studio/test/photo-pipeline.test.ts +106 -0
- package/apps/studio/test/photo-taxonomy.test.ts +96 -0
- package/apps/studio/test/read-annotations.test.ts +164 -0
- package/apps/studio/test/readiness.test.ts +13 -11
- package/apps/studio/test/scaffold-design.test.ts +122 -0
- package/apps/studio/test/shell-importmap.test.ts +49 -0
- package/apps/studio/test/text-editability-stamp.test.ts +131 -0
- package/apps/studio/test/timeline-parse.test.ts +57 -0
- package/apps/studio/test/tool-palette-insert-anchor.test.ts +5 -3
- package/apps/studio/test/tour-overlay.test.tsx +16 -0
- package/apps/studio/test/undo-stack.test.ts +33 -0
- package/apps/studio/test/video-asset.test.ts +5 -5
- package/apps/studio/test/video-render-bridge.test.ts +23 -1
- package/apps/studio/text-caret.ts +239 -0
- package/apps/studio/tool-palette.tsx +49 -21
- package/apps/studio/ui-prefs.ts +130 -0
- package/apps/studio/undo-stack.ts +94 -2
- package/apps/studio/use-annotation-resize.tsx +4 -4
- package/apps/studio/use-canvas-media-drop.tsx +40 -1
- package/apps/studio/use-chrome-visibility.tsx +8 -2
- package/apps/studio/use-selection-set.tsx +21 -0
- package/apps/studio/video-comp.tsx +48 -7
- package/apps/studio/whats-new.json +149 -0
- package/apps/studio/ws.ts +5 -0
- package/cli/bin/maude.mjs +6 -6
- package/cli/commands/design.mjs +67 -3
- package/cli/lib/gitignore-block.mjs +2 -0
- package/cli/lib/pkg-root.mjs +107 -0
- package/cli/lib/pkg-root.test.mjs +79 -0
- package/cli/lib/reconstruct-toolset.test.mjs +194 -0
- package/cli/lib/update-check.mjs +8 -0
- package/package.json +13 -11
- package/plugins/design/dependencies.json +18 -0
- package/plugins/design/templates/_shell.html +1 -0
|
@@ -0,0 +1,149 @@
|
|
|
1
|
+
// photo-filters.test.ts — Stage B, Task 4. Unit-tests the PURE pipeline planner
|
|
2
|
+
// (`planPhotoPipeline`) — filter/step COUNT + ORDER + params, never pixel output
|
|
3
|
+
// (pixel realization is browser-only, in pipeline.ts). No pixi import here: the
|
|
4
|
+
// whole point of the planner split is that this suite runs headlessly.
|
|
5
|
+
|
|
6
|
+
import { describe, expect, test } from 'bun:test';
|
|
7
|
+
|
|
8
|
+
import type { PhotoPipelineStep } from '../photo/filters.ts';
|
|
9
|
+
import { DUOTONE_FRAG_SOURCE, hexToRgb01, planPhotoPipeline } from '../photo/filters.ts';
|
|
10
|
+
import type { PhotoEdit } from '../photo/schema.ts';
|
|
11
|
+
import { PHOTO_PIPELINE_ORDER } from '../photo/schema.ts';
|
|
12
|
+
|
|
13
|
+
const stages = (steps: PhotoPipelineStep[]) => steps.map((s) => s.stage);
|
|
14
|
+
|
|
15
|
+
describe('planPhotoPipeline — neutrality', () => {
|
|
16
|
+
test('null / empty / all-neutral edits produce no steps', () => {
|
|
17
|
+
expect(planPhotoPipeline(null)).toEqual([]);
|
|
18
|
+
expect(planPhotoPipeline(undefined)).toEqual([]);
|
|
19
|
+
expect(planPhotoPipeline({})).toEqual([]);
|
|
20
|
+
expect(planPhotoPipeline({ adjustments: { brightness: 0, contrast: 0 } })).toEqual([]);
|
|
21
|
+
// Disabled sections never emit, regardless of their params.
|
|
22
|
+
expect(
|
|
23
|
+
planPhotoPipeline({
|
|
24
|
+
duotone: { enabled: false, colorA: '#000000', colorB: '#ffffff', intensity: 1 },
|
|
25
|
+
grain: { enabled: false, amount: 1 },
|
|
26
|
+
pattern: { enabled: false, opacity: 1 },
|
|
27
|
+
mask: { preset: 'none', strength: 1 },
|
|
28
|
+
})
|
|
29
|
+
).toEqual([]);
|
|
30
|
+
});
|
|
31
|
+
});
|
|
32
|
+
|
|
33
|
+
describe('planPhotoPipeline — ordering', () => {
|
|
34
|
+
test('a fully-loaded edit emits every stage in PHOTO_PIPELINE_ORDER', () => {
|
|
35
|
+
const edit: PhotoEdit = {
|
|
36
|
+
// Deliberately author the object with keys OUT of pipeline order to prove
|
|
37
|
+
// the planner re-orders rather than echoing insertion order.
|
|
38
|
+
mask: { preset: 'vignette', strength: 0.5 },
|
|
39
|
+
pattern: { enabled: true, type: 'grid', scale: 2, opacity: 0.4, blend: 'multiply' },
|
|
40
|
+
grain: { enabled: true, amount: 0.3, size: 2 },
|
|
41
|
+
duotone: { enabled: true, colorA: '#1a1a2e', colorB: '#e94560', intensity: 0.8 },
|
|
42
|
+
adjustments: { contrast: 0.2, brightness: -0.1 },
|
|
43
|
+
};
|
|
44
|
+
const steps = planPhotoPipeline(edit);
|
|
45
|
+
expect(stages(steps)).toEqual([...PHOTO_PIPELINE_ORDER]);
|
|
46
|
+
// Exactly one step per stage.
|
|
47
|
+
expect(steps.length).toBe(5);
|
|
48
|
+
});
|
|
49
|
+
|
|
50
|
+
test('partial edits keep relative order and skip absent stages', () => {
|
|
51
|
+
const steps = planPhotoPipeline({
|
|
52
|
+
mask: { preset: 'edge-fade', strength: 0.7 },
|
|
53
|
+
adjustments: { hue: 40 },
|
|
54
|
+
});
|
|
55
|
+
expect(stages(steps)).toEqual(['adjustments', 'mask']);
|
|
56
|
+
});
|
|
57
|
+
});
|
|
58
|
+
|
|
59
|
+
describe('planPhotoPipeline — adjustments sub-order + params', () => {
|
|
60
|
+
test('color-matrix ops follow the fixed sub-order and carry normalized values', () => {
|
|
61
|
+
const steps = planPhotoPipeline({
|
|
62
|
+
// authored out of order:
|
|
63
|
+
adjustments: {
|
|
64
|
+
invert: 1,
|
|
65
|
+
brightness: 0.5,
|
|
66
|
+
hue: 90,
|
|
67
|
+
contrast: -0.3,
|
|
68
|
+
grayscale: 0.4,
|
|
69
|
+
saturation: 0.2,
|
|
70
|
+
sepia: 0.1,
|
|
71
|
+
exposure: 0.6,
|
|
72
|
+
},
|
|
73
|
+
});
|
|
74
|
+
expect(steps.length).toBe(1);
|
|
75
|
+
const adj = steps[0];
|
|
76
|
+
expect(adj.stage).toBe('adjustments');
|
|
77
|
+
if (adj.stage !== 'adjustments') throw new Error('unreachable');
|
|
78
|
+
expect(adj.ops.map((o) => o.op)).toEqual([
|
|
79
|
+
'brightness',
|
|
80
|
+
'exposure',
|
|
81
|
+
'contrast',
|
|
82
|
+
'saturation',
|
|
83
|
+
'hue',
|
|
84
|
+
'sepia',
|
|
85
|
+
'grayscale',
|
|
86
|
+
'invert',
|
|
87
|
+
]);
|
|
88
|
+
// Values pass through untouched (normalization/mapping is a realizer concern).
|
|
89
|
+
const byOp = Object.fromEntries(adj.ops.map((o) => [o.op, o.value]));
|
|
90
|
+
expect(byOp.brightness).toBe(0.5);
|
|
91
|
+
expect(byOp.hue).toBe(90);
|
|
92
|
+
expect(byOp.contrast).toBe(-0.3);
|
|
93
|
+
});
|
|
94
|
+
|
|
95
|
+
test('only non-neutral adjustment fields become ops', () => {
|
|
96
|
+
const steps = planPhotoPipeline({
|
|
97
|
+
adjustments: { contrast: 0.5, brightness: 0, saturation: 0 },
|
|
98
|
+
});
|
|
99
|
+
const adj = steps[0];
|
|
100
|
+
if (adj.stage !== 'adjustments') throw new Error('expected adjustments');
|
|
101
|
+
expect(adj.ops.map((o) => o.op)).toEqual(['contrast']);
|
|
102
|
+
});
|
|
103
|
+
});
|
|
104
|
+
|
|
105
|
+
describe('planPhotoPipeline — section defaults when enabled-but-unset', () => {
|
|
106
|
+
test('enabled duotone/grain/pattern fill sensible defaults', () => {
|
|
107
|
+
const steps = planPhotoPipeline({
|
|
108
|
+
duotone: { enabled: true },
|
|
109
|
+
grain: { enabled: true },
|
|
110
|
+
pattern: { enabled: true },
|
|
111
|
+
});
|
|
112
|
+
const duo = steps.find((s) => s.stage === 'duotone');
|
|
113
|
+
const grain = steps.find((s) => s.stage === 'grain');
|
|
114
|
+
const pat = steps.find((s) => s.stage === 'pattern');
|
|
115
|
+
expect(duo).toBeTruthy();
|
|
116
|
+
expect(grain).toBeTruthy();
|
|
117
|
+
expect(pat).toBeTruthy();
|
|
118
|
+
if (duo?.stage === 'duotone') {
|
|
119
|
+
expect(duo.colorA).toMatch(/^#[0-9a-f]{6}$/);
|
|
120
|
+
expect(duo.colorB).toMatch(/^#[0-9a-f]{6}$/);
|
|
121
|
+
expect(duo.intensity).toBeGreaterThan(0);
|
|
122
|
+
}
|
|
123
|
+
if (pat?.stage === 'pattern') expect(pat.type).toBe('dots');
|
|
124
|
+
});
|
|
125
|
+
});
|
|
126
|
+
|
|
127
|
+
describe('hexToRgb01', () => {
|
|
128
|
+
test('parses to normalized rgb', () => {
|
|
129
|
+
expect(hexToRgb01('#000000')).toEqual([0, 0, 0]);
|
|
130
|
+
expect(hexToRgb01('#ffffff')).toEqual([1, 1, 1]);
|
|
131
|
+
const [r, g, b] = hexToRgb01('#804020');
|
|
132
|
+
expect(r).toBeCloseTo(128 / 255, 5);
|
|
133
|
+
expect(g).toBeCloseTo(64 / 255, 5);
|
|
134
|
+
expect(b).toBeCloseTo(32 / 255, 5);
|
|
135
|
+
});
|
|
136
|
+
test('throws on malformed input', () => {
|
|
137
|
+
expect(() => hexToRgb01('nope')).toThrow();
|
|
138
|
+
expect(() => hexToRgb01('#fff')).toThrow();
|
|
139
|
+
});
|
|
140
|
+
});
|
|
141
|
+
|
|
142
|
+
describe('duotone shader source', () => {
|
|
143
|
+
test('is a non-empty GLSL string with the expected uniforms', () => {
|
|
144
|
+
expect(DUOTONE_FRAG_SOURCE).toContain('uColorA');
|
|
145
|
+
expect(DUOTONE_FRAG_SOURCE).toContain('uColorB');
|
|
146
|
+
expect(DUOTONE_FRAG_SOURCE).toContain('uIntensity');
|
|
147
|
+
expect(DUOTONE_FRAG_SOURCE).toContain('uTexture');
|
|
148
|
+
});
|
|
149
|
+
});
|
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
// photo-pipeline.test.ts — Stage B, Task 5. Exercises ONLY the pure decision
|
|
2
|
+
// logic in pipeline.ts (`adjustmentCalls`, `resolveSourceUrl`, `needsCompositor`)
|
|
3
|
+
// — no pixi filter is constructed, so this runs headlessly. The actual WebGL
|
|
4
|
+
// render is verified via `maude design screenshot` (Task 6) + desktop dogfood
|
|
5
|
+
// (Task 25). This suite ALSO proves importing pipeline.ts (which statically
|
|
6
|
+
// imports pixi.js) does no construction at load time.
|
|
7
|
+
|
|
8
|
+
import { describe, expect, test } from 'bun:test';
|
|
9
|
+
|
|
10
|
+
import type { AdjustmentsStep } from '../photo/filters.ts';
|
|
11
|
+
import { adjustmentCalls, needsCompositor, resolveSourceUrl } from '../photo/pipeline.ts';
|
|
12
|
+
|
|
13
|
+
const adj = (ops: AdjustmentsStep['ops']): AdjustmentsStep => ({
|
|
14
|
+
stage: 'adjustments',
|
|
15
|
+
kind: 'colorMatrix',
|
|
16
|
+
ops,
|
|
17
|
+
});
|
|
18
|
+
|
|
19
|
+
describe('adjustmentCalls — normalized → pixi mapping + neutral references', () => {
|
|
20
|
+
test('brightness delta maps to pixi multiplier (neutral 1)', () => {
|
|
21
|
+
expect(adjustmentCalls(adj([{ op: 'brightness', value: 0 }]))[0]).toEqual({
|
|
22
|
+
method: 'brightness',
|
|
23
|
+
args: [1],
|
|
24
|
+
});
|
|
25
|
+
expect(adjustmentCalls(adj([{ op: 'brightness', value: 0.5 }]))[0].args).toEqual([1.5]);
|
|
26
|
+
expect(adjustmentCalls(adj([{ op: 'brightness', value: -1 }]))[0].args).toEqual([0]);
|
|
27
|
+
});
|
|
28
|
+
|
|
29
|
+
test('exposure maps to a 2^stop brightness', () => {
|
|
30
|
+
expect(adjustmentCalls(adj([{ op: 'exposure', value: 0 }]))[0]).toEqual({
|
|
31
|
+
method: 'brightness',
|
|
32
|
+
args: [1],
|
|
33
|
+
});
|
|
34
|
+
expect(adjustmentCalls(adj([{ op: 'exposure', value: 1 }]))[0].args).toEqual([2]);
|
|
35
|
+
});
|
|
36
|
+
|
|
37
|
+
test('contrast maps into pixi 0..1 with 0.5 neutral', () => {
|
|
38
|
+
expect(adjustmentCalls(adj([{ op: 'contrast', value: 0 }]))[0].args).toEqual([0.5]);
|
|
39
|
+
expect(adjustmentCalls(adj([{ op: 'contrast', value: 1 }]))[0].args).toEqual([1]);
|
|
40
|
+
expect(adjustmentCalls(adj([{ op: 'contrast', value: -1 }]))[0].args).toEqual([0]);
|
|
41
|
+
});
|
|
42
|
+
|
|
43
|
+
test('saturation and hue pass through', () => {
|
|
44
|
+
expect(adjustmentCalls(adj([{ op: 'saturation', value: -0.5 }]))[0]).toEqual({
|
|
45
|
+
method: 'saturate',
|
|
46
|
+
args: [-0.5],
|
|
47
|
+
});
|
|
48
|
+
expect(adjustmentCalls(adj([{ op: 'hue', value: 120 }]))[0]).toEqual({
|
|
49
|
+
method: 'hue',
|
|
50
|
+
args: [120],
|
|
51
|
+
});
|
|
52
|
+
});
|
|
53
|
+
|
|
54
|
+
test('sepia and invert become isolate-alpha toggles (amount honored)', () => {
|
|
55
|
+
const sepia = adjustmentCalls(adj([{ op: 'sepia', value: 0.7 }]))[0];
|
|
56
|
+
expect(sepia.method).toBe('sepia');
|
|
57
|
+
expect(sepia.args).toEqual([]);
|
|
58
|
+
expect(sepia.isolateAlpha).toBeCloseTo(0.7, 5);
|
|
59
|
+
const invert = adjustmentCalls(adj([{ op: 'invert', value: 1 }]))[0];
|
|
60
|
+
expect(invert.method).toBe('negative');
|
|
61
|
+
expect(invert.isolateAlpha).toBe(1);
|
|
62
|
+
});
|
|
63
|
+
|
|
64
|
+
test('order is preserved end-to-end', () => {
|
|
65
|
+
const calls = adjustmentCalls(
|
|
66
|
+
adj([
|
|
67
|
+
{ op: 'brightness', value: 0.2 },
|
|
68
|
+
{ op: 'contrast', value: 0.1 },
|
|
69
|
+
{ op: 'sepia', value: 0.5 },
|
|
70
|
+
{ op: 'invert', value: 0.3 },
|
|
71
|
+
])
|
|
72
|
+
);
|
|
73
|
+
expect(calls.map((c) => c.method)).toEqual(['brightness', 'contrast', 'sepia', 'negative']);
|
|
74
|
+
});
|
|
75
|
+
});
|
|
76
|
+
|
|
77
|
+
describe('resolveSourceUrl — background-removal cutout replaces original', () => {
|
|
78
|
+
const SRC = 'assets/aaaa1111.jpg';
|
|
79
|
+
const MATTE = 'assets/bbbb2222.png';
|
|
80
|
+
test('unedited → original source', () => {
|
|
81
|
+
expect(resolveSourceUrl(null, SRC)).toBe(SRC);
|
|
82
|
+
expect(resolveSourceUrl({}, SRC)).toBe(SRC);
|
|
83
|
+
});
|
|
84
|
+
test('bg-removed enabled with a matte → the matte', () => {
|
|
85
|
+
expect(resolveSourceUrl({ backgroundRemoved: { enabled: true, maskAsset: MATTE } }, SRC)).toBe(
|
|
86
|
+
MATTE
|
|
87
|
+
);
|
|
88
|
+
});
|
|
89
|
+
test('bg-removed disabled OR no matte → original (non-destructive toggle)', () => {
|
|
90
|
+
expect(resolveSourceUrl({ backgroundRemoved: { enabled: false, maskAsset: MATTE } }, SRC)).toBe(
|
|
91
|
+
SRC
|
|
92
|
+
);
|
|
93
|
+
expect(resolveSourceUrl({ backgroundRemoved: { enabled: true } }, SRC)).toBe(SRC);
|
|
94
|
+
});
|
|
95
|
+
});
|
|
96
|
+
|
|
97
|
+
describe('needsCompositor — lazy-bundle gate', () => {
|
|
98
|
+
test('mirrors isDefaultEdit inverse', () => {
|
|
99
|
+
expect(needsCompositor(null)).toBe(false);
|
|
100
|
+
expect(needsCompositor({})).toBe(false);
|
|
101
|
+
expect(needsCompositor({ adjustments: { contrast: 0.4 } })).toBe(true);
|
|
102
|
+
expect(
|
|
103
|
+
needsCompositor({ backgroundRemoved: { enabled: true, maskAsset: 'assets/cc33.png' } })
|
|
104
|
+
).toBe(true);
|
|
105
|
+
});
|
|
106
|
+
});
|
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
// photo-taxonomy.test.ts — regression guard for the DDR-115 "three lists must
|
|
2
|
+
// agree" invariant, extended to the new `assets/<sha8>.photo.json` PhotoEdit
|
|
3
|
+
// sidecar (feature-photo-editor, Task 3).
|
|
4
|
+
//
|
|
5
|
+
// The invariant: a VERSIONED path must be classified VERSIONED by ALL THREE
|
|
6
|
+
// lists that encode the taxonomy —
|
|
7
|
+
// (1) apps/studio/git/service.ts → `isMaudeRuntimeState` (panel backstop),
|
|
8
|
+
// (2) cli/lib/gitignore-block.mjs → `buildBlock` (the `maude init` template),
|
|
9
|
+
// (3) the repo root `.gitignore` → tested via `git check-ignore` ground truth.
|
|
10
|
+
// `assets/**` (binaries AND `.photo.json` sidecars) is VERSIONED, so none of the
|
|
11
|
+
// three may hide it. This is the automated form of DDR-115 §3's manual claim.
|
|
12
|
+
|
|
13
|
+
import { describe, expect, test } from 'bun:test';
|
|
14
|
+
import { spawnSync } from 'node:child_process';
|
|
15
|
+
|
|
16
|
+
import { buildBlock } from '../../../cli/lib/gitignore-block.mjs';
|
|
17
|
+
import { __testing } from '../git/service.ts';
|
|
18
|
+
|
|
19
|
+
const { isMaudeRuntimeState } = __testing;
|
|
20
|
+
|
|
21
|
+
// Representative content-addressed paths under `assets/`.
|
|
22
|
+
const PHOTO_SIDECAR_REL = 'assets/ab12cd34.photo.json';
|
|
23
|
+
const PHOTO_SIDECAR_DESIGN = '.design/assets/ab12cd34.photo.json';
|
|
24
|
+
const ASSET_BINARY_DESIGN = '.design/assets/ab12cd34.png';
|
|
25
|
+
const MATTE_ASSET_DESIGN = '.design/assets/ff00aa99.png';
|
|
26
|
+
|
|
27
|
+
describe('DDR-115 taxonomy — assets/<sha8>.photo.json is VERSIONED', () => {
|
|
28
|
+
test('isMaudeRuntimeState does NOT classify photo sidecars/assets as runtime', () => {
|
|
29
|
+
expect(isMaudeRuntimeState(PHOTO_SIDECAR_REL)).toBe(false);
|
|
30
|
+
expect(isMaudeRuntimeState(PHOTO_SIDECAR_DESIGN)).toBe(false);
|
|
31
|
+
expect(isMaudeRuntimeState(ASSET_BINARY_DESIGN)).toBe(false);
|
|
32
|
+
expect(isMaudeRuntimeState(MATTE_ASSET_DESIGN)).toBe(false);
|
|
33
|
+
});
|
|
34
|
+
|
|
35
|
+
// Positive control — proves the classifier's mechanism actually fires, so the
|
|
36
|
+
// negatives above aren't passing for a trivial reason (e.g. a broken regex).
|
|
37
|
+
test('isMaudeRuntimeState still classifies real runtime state as IGNORED', () => {
|
|
38
|
+
expect(isMaudeRuntimeState('.design/_server.json')).toBe(true);
|
|
39
|
+
expect(isMaudeRuntimeState('.design/_history/foo/bar.png')).toBe(true);
|
|
40
|
+
expect(isMaudeRuntimeState('.design/_canvas-state/x.view.json')).toBe(true);
|
|
41
|
+
});
|
|
42
|
+
|
|
43
|
+
// `_photo/` (Task 18/20's headless bg-remove proof canvases, mirroring
|
|
44
|
+
// `_draw/`'s draw-proof canvases) must agree as IGNORED across all three lists.
|
|
45
|
+
test('_photo/ (headless bg-remove proof canvases) is IGNORED across all three lists', () => {
|
|
46
|
+
expect(isMaudeRuntimeState('.design/_photo/smoke-tsx.bgremove.tsx')).toBe(true);
|
|
47
|
+
|
|
48
|
+
const block = buildBlock('.design');
|
|
49
|
+
expect(block).toContain('.design/_photo/');
|
|
50
|
+
|
|
51
|
+
const top = spawnSync('git', ['rev-parse', '--show-toplevel'], { encoding: 'utf8' });
|
|
52
|
+
if (top.status !== 0) {
|
|
53
|
+
console.warn('git rev-parse failed; skipping root .gitignore ground-truth check');
|
|
54
|
+
return;
|
|
55
|
+
}
|
|
56
|
+
const root = top.stdout.trim();
|
|
57
|
+
const r = spawnSync('git', ['check-ignore', '-q', '--', '.design/_photo/x.bgremove.tsx'], {
|
|
58
|
+
cwd: root,
|
|
59
|
+
});
|
|
60
|
+
expect(r.status).toBe(0);
|
|
61
|
+
});
|
|
62
|
+
|
|
63
|
+
test('the gitignore-block template ignores no assets/ path', () => {
|
|
64
|
+
for (const root of ['.design', 'design', 'mock']) {
|
|
65
|
+
const block = buildBlock(root);
|
|
66
|
+
// buildBlock only lists `${root}/_*` runtime prefixes — VERSIONED content
|
|
67
|
+
// (assets, canvases, meta) is deliberately absent. A future editor adding
|
|
68
|
+
// an `assets`/`.photo.json` ignore line trips this.
|
|
69
|
+
expect(block).not.toContain('assets');
|
|
70
|
+
expect(block).not.toContain('.photo.json');
|
|
71
|
+
}
|
|
72
|
+
});
|
|
73
|
+
|
|
74
|
+
test('root .gitignore (git check-ignore ground truth) does not ignore photo assets', () => {
|
|
75
|
+
const top = spawnSync('git', ['rev-parse', '--show-toplevel'], { encoding: 'utf8' });
|
|
76
|
+
if (top.status !== 0) {
|
|
77
|
+
// Not in a git checkout (unexpected in CI/dev) — skip rather than false-fail.
|
|
78
|
+
console.warn('git rev-parse failed; skipping root .gitignore ground-truth check');
|
|
79
|
+
return;
|
|
80
|
+
}
|
|
81
|
+
const root = top.stdout.trim();
|
|
82
|
+
|
|
83
|
+
const isIgnored = (relPath: string): boolean => {
|
|
84
|
+
const r = spawnSync('git', ['check-ignore', '-q', '--', relPath], { cwd: root });
|
|
85
|
+
// exit 0 = ignored, 1 = not ignored, other = error.
|
|
86
|
+
return r.status === 0;
|
|
87
|
+
};
|
|
88
|
+
|
|
89
|
+
// VERSIONED assets must NOT be ignored by the repo's own .gitignore.
|
|
90
|
+
expect(isIgnored(PHOTO_SIDECAR_DESIGN)).toBe(false);
|
|
91
|
+
expect(isIgnored(ASSET_BINARY_DESIGN)).toBe(false);
|
|
92
|
+
|
|
93
|
+
// Positive control — a known runtime path IS ignored, proving check-ignore works here.
|
|
94
|
+
expect(isIgnored('.design/_server.json')).toBe(true);
|
|
95
|
+
});
|
|
96
|
+
});
|
|
@@ -18,9 +18,11 @@ import { fileURLToPath } from 'node:url';
|
|
|
18
18
|
import {
|
|
19
19
|
type ArrowStroke,
|
|
20
20
|
type EllipseStroke,
|
|
21
|
+
type ImageStroke,
|
|
21
22
|
type PenStroke,
|
|
22
23
|
type PolygonStroke,
|
|
23
24
|
type RectStroke,
|
|
25
|
+
type SectionStroke,
|
|
24
26
|
type StickyStroke,
|
|
25
27
|
type Stroke,
|
|
26
28
|
strokesToSvg,
|
|
@@ -50,6 +52,18 @@ interface Annotation {
|
|
|
50
52
|
text: string;
|
|
51
53
|
} | null;
|
|
52
54
|
target?: { source: string; selector: { type: string; value: string }; geometry: unknown };
|
|
55
|
+
href?: string;
|
|
56
|
+
authorName?: string;
|
|
57
|
+
members?: Array<{
|
|
58
|
+
id: string;
|
|
59
|
+
tool: string;
|
|
60
|
+
order: number;
|
|
61
|
+
x: number | null;
|
|
62
|
+
y: number | null;
|
|
63
|
+
w: number | null;
|
|
64
|
+
h: number | null;
|
|
65
|
+
href?: string;
|
|
66
|
+
}>;
|
|
53
67
|
}
|
|
54
68
|
|
|
55
69
|
// Mirror api.ts fileSlug for the common (design-root-relative .tsx) case so the
|
|
@@ -171,6 +185,20 @@ describe('read-annotations / sticky', () => {
|
|
|
171
185
|
const { annotations } = read(REL, strokesToSvg([multi]));
|
|
172
186
|
expect(annotations[0]?.text).toBe('line one\nline two');
|
|
173
187
|
});
|
|
188
|
+
|
|
189
|
+
test('authorName containing `>` round-trips intact and does not corrupt sibling geometry (DDR-155/escAttr regression)', () => {
|
|
190
|
+
const authored: StickyStroke = { ...sticky, authorName: 'Bob> data-x="evil' };
|
|
191
|
+
const { annotations } = read(REL, strokesToSvg([authored]));
|
|
192
|
+
const [a] = annotations;
|
|
193
|
+
expect(a?.authorName).toBe('Bob> data-x="evil');
|
|
194
|
+
// The injected `>`/`"` must not have shifted the element scan and eaten
|
|
195
|
+
// the sibling geometry/text attributes.
|
|
196
|
+
expect(a?.x).toBe(40);
|
|
197
|
+
expect(a?.y).toBe(50);
|
|
198
|
+
expect(a?.w).toBe(200);
|
|
199
|
+
expect(a?.h).toBe(160);
|
|
200
|
+
expect(a?.text).toBe('Step 1: email + password');
|
|
201
|
+
});
|
|
174
202
|
});
|
|
175
203
|
|
|
176
204
|
describe('read-annotations / position-only strokes carry text:null + a bbox', () => {
|
|
@@ -561,3 +589,139 @@ describe('read-annotations / --rects element-level context', () => {
|
|
|
561
589
|
expect(a && 'element' in a).toBe(false);
|
|
562
590
|
});
|
|
563
591
|
});
|
|
592
|
+
|
|
593
|
+
describe('read-annotations / section membership + reading order', () => {
|
|
594
|
+
test('members are ordered spatially (top-to-bottom, left-to-right), not by z/paint order', () => {
|
|
595
|
+
// Drawn out of visual order: B (top-right) first, A (top-left) second,
|
|
596
|
+
// C (bottom-left) third — so z = [B, A, C] but reading order must be
|
|
597
|
+
// [A, B, C].
|
|
598
|
+
const section: SectionStroke = {
|
|
599
|
+
id: 'sec1',
|
|
600
|
+
tool: 'section',
|
|
601
|
+
x: 0,
|
|
602
|
+
y: 0,
|
|
603
|
+
w: 400,
|
|
604
|
+
h: 400,
|
|
605
|
+
label: 'Board',
|
|
606
|
+
color: '#8884',
|
|
607
|
+
};
|
|
608
|
+
const stickyB: StickyStroke = {
|
|
609
|
+
id: 'stickyB',
|
|
610
|
+
tool: 'sticky',
|
|
611
|
+
color: '#fce8a6',
|
|
612
|
+
x: 200,
|
|
613
|
+
y: 20,
|
|
614
|
+
w: 120,
|
|
615
|
+
h: 120,
|
|
616
|
+
text: 'B',
|
|
617
|
+
fontSize: 14,
|
|
618
|
+
};
|
|
619
|
+
const stickyA: StickyStroke = {
|
|
620
|
+
id: 'stickyA',
|
|
621
|
+
tool: 'sticky',
|
|
622
|
+
color: '#fce8a6',
|
|
623
|
+
x: 20,
|
|
624
|
+
y: 20,
|
|
625
|
+
w: 120,
|
|
626
|
+
h: 120,
|
|
627
|
+
text: 'A',
|
|
628
|
+
fontSize: 14,
|
|
629
|
+
};
|
|
630
|
+
const stickyC: StickyStroke = {
|
|
631
|
+
id: 'stickyC',
|
|
632
|
+
tool: 'sticky',
|
|
633
|
+
color: '#fce8a6',
|
|
634
|
+
x: 20,
|
|
635
|
+
y: 220,
|
|
636
|
+
w: 120,
|
|
637
|
+
h: 120,
|
|
638
|
+
text: 'C',
|
|
639
|
+
fontSize: 14,
|
|
640
|
+
};
|
|
641
|
+
const { annotations } = read(REL, strokesToSvg([section, stickyB, stickyA, stickyC]));
|
|
642
|
+
const sec = annotations.find((a) => a.id === 'sec1');
|
|
643
|
+
expect(sec?.members?.map((m) => m.id)).toEqual(['stickyA', 'stickyB', 'stickyC']);
|
|
644
|
+
expect(sec?.members?.map((m) => m.order)).toEqual([0, 1, 2]);
|
|
645
|
+
});
|
|
646
|
+
|
|
647
|
+
test('image members carry their resolvable asset href', () => {
|
|
648
|
+
const section: SectionStroke = {
|
|
649
|
+
id: 'sec1',
|
|
650
|
+
tool: 'section',
|
|
651
|
+
x: 0,
|
|
652
|
+
y: 0,
|
|
653
|
+
w: 400,
|
|
654
|
+
h: 400,
|
|
655
|
+
label: 'Board',
|
|
656
|
+
color: '#8884',
|
|
657
|
+
};
|
|
658
|
+
const img: ImageStroke = {
|
|
659
|
+
id: 'img1',
|
|
660
|
+
tool: 'image',
|
|
661
|
+
x: 20,
|
|
662
|
+
y: 20,
|
|
663
|
+
w: 120,
|
|
664
|
+
h: 120,
|
|
665
|
+
href: 'assets/deadbeef.png',
|
|
666
|
+
};
|
|
667
|
+
const { annotations } = read(REL, strokesToSvg([section, img]));
|
|
668
|
+
const sec = annotations.find((a) => a.id === 'sec1');
|
|
669
|
+
expect(sec?.members).toEqual([
|
|
670
|
+
{
|
|
671
|
+
id: 'img1',
|
|
672
|
+
tool: 'image',
|
|
673
|
+
order: 0,
|
|
674
|
+
x: 20,
|
|
675
|
+
y: 20,
|
|
676
|
+
w: 120,
|
|
677
|
+
h: 120,
|
|
678
|
+
href: 'assets/deadbeef.png',
|
|
679
|
+
},
|
|
680
|
+
]);
|
|
681
|
+
});
|
|
682
|
+
|
|
683
|
+
test('a stroke outside the section rect is not a member; a section with nothing inside gets an empty array', () => {
|
|
684
|
+
const section: SectionStroke = {
|
|
685
|
+
id: 'sec1',
|
|
686
|
+
tool: 'section',
|
|
687
|
+
x: 0,
|
|
688
|
+
y: 0,
|
|
689
|
+
w: 100,
|
|
690
|
+
h: 100,
|
|
691
|
+
label: 'Board',
|
|
692
|
+
color: '#8884',
|
|
693
|
+
};
|
|
694
|
+
const outside: StickyStroke = {
|
|
695
|
+
id: 'outside',
|
|
696
|
+
tool: 'sticky',
|
|
697
|
+
color: '#fce8a6',
|
|
698
|
+
x: 500,
|
|
699
|
+
y: 500,
|
|
700
|
+
w: 60,
|
|
701
|
+
h: 60,
|
|
702
|
+
text: 'far away',
|
|
703
|
+
fontSize: 14,
|
|
704
|
+
};
|
|
705
|
+
const { annotations } = read(REL, strokesToSvg([section, outside]));
|
|
706
|
+
const sec = annotations.find((a) => a.id === 'sec1');
|
|
707
|
+
expect(sec?.members).toEqual([]);
|
|
708
|
+
const other = annotations.find((a) => a.id === 'outside');
|
|
709
|
+
expect(other?.members).toBeUndefined();
|
|
710
|
+
});
|
|
711
|
+
|
|
712
|
+
test('a non-section stroke never gets a members field', () => {
|
|
713
|
+
const sticky: StickyStroke = {
|
|
714
|
+
id: 'lone',
|
|
715
|
+
tool: 'sticky',
|
|
716
|
+
color: '#fce8a6',
|
|
717
|
+
x: 0,
|
|
718
|
+
y: 0,
|
|
719
|
+
w: 60,
|
|
720
|
+
h: 60,
|
|
721
|
+
text: 'no section here',
|
|
722
|
+
fontSize: 14,
|
|
723
|
+
};
|
|
724
|
+
const { annotations } = read(REL, strokesToSvg([sticky]));
|
|
725
|
+
expect(annotations[0] && 'members' in annotations[0]).toBe(false);
|
|
726
|
+
});
|
|
727
|
+
});
|
|
@@ -107,33 +107,35 @@ describe('readiness — plugin registry scan (web / manual path)', () => {
|
|
|
107
107
|
});
|
|
108
108
|
});
|
|
109
109
|
|
|
110
|
-
// DDR-143 — on the native/desktop path the ACP session
|
|
111
|
-
// plugins, so the row is satisfied even against a pristine
|
|
112
|
-
//
|
|
113
|
-
//
|
|
114
|
-
|
|
115
|
-
|
|
110
|
+
// DDR-143 / DDR-168 — on the native/desktop path the ACP session ALWAYS loads
|
|
111
|
+
// the bundled plugins, so the row is satisfied even against a pristine
|
|
112
|
+
// registry, AND even when a marketplace copy is also installed at the user
|
|
113
|
+
// level (DDR-168 removed the old scan-gated no-op — the bundled copy wins
|
|
114
|
+
// regardless of disk state). This suite runs in the dev tree, so the bundled
|
|
115
|
+
// plugin dirs resolve → native context is on by default (no opt-out).
|
|
116
|
+
describe('readiness — plugin auto-bootstrap (native, DDR-143/DDR-168)', () => {
|
|
117
|
+
test('pristine registry → present + "Bundled with this app" detail, no manual remediation', async () => {
|
|
116
118
|
const item = await pluginsItem(fixtureClaudeDir({}));
|
|
117
119
|
expect(item.status).toBe('present');
|
|
118
|
-
expect(item.detail).toContain('
|
|
120
|
+
expect(item.detail).toContain('Bundled with this app');
|
|
119
121
|
expect(item.remediation).toBeUndefined();
|
|
120
122
|
});
|
|
121
123
|
|
|
122
|
-
test('design NOT installed (flow-only registry) → still present (design is
|
|
124
|
+
test('design NOT installed (flow-only registry) → still present (design is bundled, no red wall)', async () => {
|
|
123
125
|
const item = await pluginsItem(
|
|
124
126
|
fixtureClaudeDir({ markets: MARKET_OK, installed: INSTALLED_FLOW_ONLY })
|
|
125
127
|
);
|
|
126
128
|
expect(item.status).toBe('present');
|
|
127
|
-
expect(item.detail).toContain('
|
|
129
|
+
expect(item.detail).toContain('Bundled with this app');
|
|
128
130
|
expect(item.remediation).toBeUndefined();
|
|
129
131
|
});
|
|
130
132
|
|
|
131
|
-
test('design
|
|
133
|
+
test('design ALSO installed on disk → present, STILL reads as bundled (DDR-168 — no more "is installed" framing)', async () => {
|
|
132
134
|
const item = await pluginsItem(
|
|
133
135
|
fixtureClaudeDir({ markets: MARKET_OK, installed: INSTALLED_DESIGN_ONLY })
|
|
134
136
|
);
|
|
135
137
|
expect(item.status).toBe('present');
|
|
136
|
-
expect(item.detail).toContain('
|
|
138
|
+
expect(item.detail).toContain('Bundled with this app');
|
|
137
139
|
});
|
|
138
140
|
});
|
|
139
141
|
|