2025-12-12 15:34:15 +01:00
|
|
|
#!/bin/bash
|
2025-12-13 22:13:31 +01:00
|
|
|
# Copies KiCad WASM build output to test directory
|
|
|
|
|
#
|
|
|
|
|
# Priority: Use local output/ directory (populated by docker/build.sh)
|
|
|
|
|
# Fallback: Copy from Docker volume directly
|
2026-05-29 06:39:23 +02:00
|
|
|
#
|
2026-05-29 12:01:44 +02:00
|
|
|
# Copies whichever apps are present (pcbnew, eeschema, calculator).
|
2025-12-12 15:34:15 +01:00
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
|
|
SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
|
|
|
|
|
PROJECT_ROOT="$(cd "$SCRIPT_DIR/../.." && pwd)"
|
2026-06-11 00:19:53 +02:00
|
|
|
|
|
|
|
|
# WX_PORT=dom serves the DOM-flavor bundles (built by docker/build.sh with
|
|
|
|
|
# WX_PORT=dom into output-dom/) from tests/apps-dom/kicad.
|
|
|
|
|
if [ "${WX_PORT:-}" = "dom" ]; then
|
|
|
|
|
KICAD_TEST="$PROJECT_ROOT/tests/apps-dom/kicad"
|
2026-06-11 09:14:00 +02:00
|
|
|
OUTPUT_DIR="$PROJECT_ROOT/output/dom"
|
2026-06-11 00:19:53 +02:00
|
|
|
KICAD_BUILD_SUFFIX="-dom"
|
|
|
|
|
else
|
|
|
|
|
KICAD_TEST="$PROJECT_ROOT/tests/apps/kicad"
|
|
|
|
|
OUTPUT_DIR="$PROJECT_ROOT/output"
|
|
|
|
|
KICAD_BUILD_SUFFIX=""
|
|
|
|
|
fi
|
2025-12-12 15:34:15 +01:00
|
|
|
|
|
|
|
|
mkdir -p "$KICAD_TEST"
|
|
|
|
|
|
2026-06-01 16:30:29 +02:00
|
|
|
# Smart copy: skip when the destination already exists and is byte-identical to
|
|
|
|
|
# the source (cmp -s is portable across macOS/Linux). Makes this a real sync —
|
|
|
|
|
# re-running does not rewrite unchanged multi-hundred-MB .wasm files.
|
|
|
|
|
smart_cp() {
|
|
|
|
|
local src="$1" destdir="$2"
|
|
|
|
|
[ -f "$src" ] || return 0
|
|
|
|
|
local dst="$destdir/$(basename "$src")"
|
|
|
|
|
if [ -f "$dst" ] && cmp -s "$src" "$dst"; then
|
|
|
|
|
echo " = $(basename "$src") (up-to-date)"
|
|
|
|
|
return 0
|
|
|
|
|
fi
|
|
|
|
|
cp "$src" "$dst"
|
|
|
|
|
echo " + $(basename "$src")"
|
|
|
|
|
}
|
|
|
|
|
|
2026-05-29 12:01:44 +02:00
|
|
|
# Map an app name to its inner CMake build subdirectory. Most apps share their
|
|
|
|
|
# subdir name with the app name; pcb_calculator emits OUTPUT_NAME=calculator
|
feat: pl_editor WASM port + browser file dialog fixes
Brings up KiCad's pagelayout_editor (drawing-sheet editor) in the
browser, to roughly the same "boots, canvas visible, partially usable
in-session" level as the existing pcbnew/eeschema/calculator ports.
Build:
- docker/build.sh: add pl_editor to the unified app dispatch (case,
subdir map, all-loop).
- scripts/kicad/build-kicad-target.sh: add pl_editor to the case;
upstream target name pl_editor under source subdir pagelayout_editor.
- scripts/kicad/build-pl_editor.sh: 7-line thin wrapper matching the
pcbnew/eeschema/calculator pattern.
- tests/scripts/setup-kicad-wasm.sh: copy_app pl_editor.
App glue:
- wasm/stubs/nl_pl_editor_plugin_stub.cpp: no-op SpaceMouse plugin so
pl_editor_frame.cpp's NL_PL_EDITOR_PLUGIN symbols resolve. Mirrors
nl_pcbnew_plugin_stub.cpp.
- tests/apps/kicad/pl_editor.html: browser shell. preRun creates
/home/kicad and FS.chdir there so file dialogs land somewhere
friendly instead of MEMFS root (/dev/, /proc/, etc.).
E2E coverage:
- tests/kicad/pl_editor.spec.ts: 5 tests — smoke (canvas, no abort),
wizard, File menu has Open/Save As, file-dialog folder-navigation
regression, canvas + toolbar metrics.
- tests/e2e/filedialog-folder-nav.spec.ts: wxWidgets-level twin of
the regression test (exercises the underlying widget directly via
the standalone filedialog_test app).
Submodule bumps:
- kicad → feature/pl-editor (WASM gating in pagelayout_editor's
CMakeLists + navlib stub).
- wxwidgets → feature/pl-editor (wxGenericFileDialog::OnOk navigates
into selected directories; wasm/mouse.cpp emits wxEVT_LEFT_DCLICK
via timestamp-based double-click detection — the latter benefits
every wxWidgets-WASM app).
See features/pl-editor/ for the design doc + per-repo diff patches.
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-06-01 10:30:56 +02:00
|
|
|
# but lives under the pcb_calculator/ subtree of the build dir, and pl_editor's
|
|
|
|
|
# source lives under pagelayout_editor/.
|
2026-05-29 12:01:44 +02:00
|
|
|
kicad_subdir_for() {
|
|
|
|
|
case "$1" in
|
2026-06-02 13:35:37 +02:00
|
|
|
calculator) echo "pcb_calculator" ;;
|
|
|
|
|
pl_editor) echo "pagelayout_editor" ;;
|
|
|
|
|
symbol_editor) echo "eeschema" ;;
|
|
|
|
|
*) echo "$1" ;;
|
2026-05-29 12:01:44 +02:00
|
|
|
esac
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# Copy one app's artifacts (js, wasm, optional debug/map/worker). Returns 0
|
|
|
|
|
# if the app was present, 1 if neither output/ nor the docker volume has it.
|
2026-05-29 06:39:23 +02:00
|
|
|
copy_app() {
|
|
|
|
|
local app="$1"
|
2026-05-29 12:01:44 +02:00
|
|
|
local subdir
|
|
|
|
|
subdir=$(kicad_subdir_for "$app")
|
2026-05-29 06:39:23 +02:00
|
|
|
|
|
|
|
|
if [ -f "$OUTPUT_DIR/${app}.js" ] && [ -f "$OUTPUT_DIR/${app}.wasm" ]; then
|
2026-06-01 16:30:29 +02:00
|
|
|
echo "Syncing ${app} WASM files from output directory..."
|
|
|
|
|
smart_cp "$OUTPUT_DIR/${app}.js" "$KICAD_TEST"
|
|
|
|
|
smart_cp "$OUTPUT_DIR/${app}.wasm" "$KICAD_TEST"
|
|
|
|
|
smart_cp "$OUTPUT_DIR/${app}.wasm.map" "$KICAD_TEST"
|
|
|
|
|
smart_cp "$OUTPUT_DIR/${app}.worker.js" "$KICAD_TEST"
|
|
|
|
|
smart_cp "$OUTPUT_DIR/images.tar.gz" "$KICAD_TEST"
|
2026-05-29 06:39:23 +02:00
|
|
|
return 0
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
echo "Output ${app} not found locally, trying Docker volume..."
|
|
|
|
|
if docker compose -f "$PROJECT_ROOT/docker/docker-compose.yml" cp \
|
2026-06-11 00:19:53 +02:00
|
|
|
kicad-wasm-builder:/workspace/build-wasm/kicad-${app}${KICAD_BUILD_SUFFIX}/${subdir}/${app}.js "$KICAD_TEST/" 2>/dev/null \
|
2026-05-29 06:39:23 +02:00
|
|
|
&& docker compose -f "$PROJECT_ROOT/docker/docker-compose.yml" cp \
|
2026-06-11 00:19:53 +02:00
|
|
|
kicad-wasm-builder:/workspace/build-wasm/kicad-${app}${KICAD_BUILD_SUFFIX}/${subdir}/${app}.wasm "$KICAD_TEST/" 2>/dev/null; then
|
2026-05-29 06:39:23 +02:00
|
|
|
docker compose -f "$PROJECT_ROOT/docker/docker-compose.yml" cp \
|
2026-06-11 00:19:53 +02:00
|
|
|
kicad-wasm-builder:/workspace/build-wasm/kicad-${app}${KICAD_BUILD_SUFFIX}/${subdir}/${app}.wasm.map "$KICAD_TEST/" 2>/dev/null || true
|
2026-05-29 06:39:23 +02:00
|
|
|
docker compose -f "$PROJECT_ROOT/docker/docker-compose.yml" cp \
|
2026-06-11 00:19:53 +02:00
|
|
|
kicad-wasm-builder:/workspace/build-wasm/kicad-${app}${KICAD_BUILD_SUFFIX}/${subdir}/${app}.worker.js "$KICAD_TEST/" 2>/dev/null || true
|
2026-05-29 06:39:23 +02:00
|
|
|
docker compose -f "$PROJECT_ROOT/docker/docker-compose.yml" cp \
|
2026-06-11 00:19:53 +02:00
|
|
|
kicad-wasm-builder:/workspace/build-wasm/kicad-${app}${KICAD_BUILD_SUFFIX}/resources/images.tar.gz "$KICAD_TEST/" 2>/dev/null || true
|
2026-05-29 06:39:23 +02:00
|
|
|
return 0
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
echo " (no ${app} artifacts found — skipping)"
|
|
|
|
|
return 1
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
found_any=0
|
2026-06-02 13:35:37 +02:00
|
|
|
copy_app pcbnew && found_any=1
|
|
|
|
|
copy_app eeschema && found_any=1
|
|
|
|
|
copy_app calculator && found_any=1
|
|
|
|
|
copy_app pl_editor && found_any=1
|
|
|
|
|
copy_app symbol_editor && found_any=1
|
2026-06-03 14:23:57 +02:00
|
|
|
copy_app gerbview && found_any=1
|
2026-05-29 06:39:23 +02:00
|
|
|
|
|
|
|
|
if [ "$found_any" -eq 0 ]; then
|
2026-06-03 14:23:57 +02:00
|
|
|
echo "Error: no pcbnew/eeschema/calculator/pl_editor/symbol_editor/gerbview artifacts found in output/ or docker volume" >&2
|
2026-05-29 06:39:23 +02:00
|
|
|
exit 1
|
2025-12-13 22:13:31 +01:00
|
|
|
fi
|
2025-12-12 15:34:15 +01:00
|
|
|
|
|
|
|
|
# wxWidgets WASM JavaScript glue code (defines JS functions called from WASM)
|
2026-06-01 16:30:29 +02:00
|
|
|
echo "Syncing wxWidgets WASM glue code..."
|
2026-03-22 12:48:05 +01:00
|
|
|
if [ -f "$OUTPUT_DIR/wx.js" ]; then
|
2026-06-01 16:30:29 +02:00
|
|
|
smart_cp "$OUTPUT_DIR/wx.js" "$KICAD_TEST"
|
2026-03-22 12:48:05 +01:00
|
|
|
else
|
|
|
|
|
if docker compose -f "$PROJECT_ROOT/docker/docker-compose.yml" cp \
|
|
|
|
|
kicad-wasm-builder:/workspace/build-wasm/wxwidgets/build/wasm/wx.js "$KICAD_TEST/" 2>/dev/null; then
|
|
|
|
|
:
|
|
|
|
|
else
|
2026-06-01 16:30:29 +02:00
|
|
|
smart_cp "$PROJECT_ROOT/wxwidgets/build/wasm/wx.js" "$KICAD_TEST"
|
2026-03-22 12:48:05 +01:00
|
|
|
fi
|
|
|
|
|
fi
|
2025-12-12 15:34:15 +01:00
|
|
|
|
2026-06-11 00:19:53 +02:00
|
|
|
if [ "${WX_PORT:-}" = "dom" ]; then
|
|
|
|
|
# DOM port: the control-layer shim loads after wx.js.
|
|
|
|
|
if [ -f "$OUTPUT_DIR/wx-dom.js" ]; then
|
|
|
|
|
smart_cp "$OUTPUT_DIR/wx-dom.js" "$KICAD_TEST"
|
|
|
|
|
else
|
|
|
|
|
smart_cp "$PROJECT_ROOT/wxwidgets/build/wasm/wx-dom.js" "$KICAD_TEST"
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
# The checked-in kicad pages load wx.js via a <script> tag; the DOM
|
|
|
|
|
# flavor needs wx-dom.js right after it. Sync the pages and inject the
|
|
|
|
|
# tag (idempotent).
|
|
|
|
|
for page in "$PROJECT_ROOT"/tests/apps/kicad/*.html; do
|
|
|
|
|
[ -f "$page" ] || continue
|
|
|
|
|
dest="$KICAD_TEST/$(basename "$page")"
|
|
|
|
|
cp "$page" "$dest"
|
|
|
|
|
if ! grep -q 'wx-dom.js' "$dest"; then
|
|
|
|
|
perl -i -pe 's{(<script src="wx.js"></script>)}{$1\n <script src="wx-dom.js"></script>}' "$dest"
|
|
|
|
|
fi
|
|
|
|
|
done
|
|
|
|
|
echo " + kicad pages with wx-dom.js injected"
|
|
|
|
|
fi
|
|
|
|
|
|
2026-06-01 16:30:29 +02:00
|
|
|
echo "KiCad WASM files synced to $KICAD_TEST"
|
2025-12-12 15:34:15 +01:00
|
|
|
ls -lh "$KICAD_TEST"
|