rnxsim 0.1.313 → 0.1.314
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/LICENSE +11 -10
- package/README.md +5 -0
- package/cli/app-config.ts +65 -0
- package/cli/app-fonts.ts +408 -0
- package/cli/app-project.ts +231 -0
- package/cli/app-splash.ts +185 -0
- package/cli/app-state-reset.ts +24 -0
- package/cli/auth.ts +155 -0
- package/cli/bin.ts +594 -0
- package/cli/bridge-diagnostics.ts +226 -0
- package/cli/bridge-flow-runner.ts +2830 -0
- package/cli/browser-evals.ts +96 -0
- package/cli/commands/agent-wrapper.ts +986 -0
- package/cli/commands/agent.ts +423 -0
- package/cli/commands/app-fonts.ts +98 -0
- package/cli/commands/assert.ts +541 -0
- package/cli/commands/auth.ts +59 -0
- package/cli/commands/camera.ts +266 -0
- package/cli/commands/cleanup.ts +169 -0
- package/cli/commands/compat.ts +87 -0
- package/cli/commands/config.ts +32 -0
- package/cli/commands/control.ts +2142 -0
- package/cli/commands/cpu-profile.ts +269 -0
- package/cli/commands/daemon-mac-app.ts +169 -0
- package/cli/commands/daemon.ts +874 -0
- package/cli/commands/debug.ts +719 -0
- package/cli/commands/desktop.ts +39 -0
- package/cli/commands/detect.ts +197 -0
- package/cli/commands/detox.ts +385 -0
- package/cli/commands/device.ts +133 -0
- package/cli/commands/diagnose.ts +589 -0
- package/cli/commands/electron.ts +95 -0
- package/cli/commands/film.ts +379 -0
- package/cli/commands/flow.ts +1124 -0
- package/cli/commands/inspect/actions.ts +622 -0
- package/cli/commands/inspect/core.ts +2405 -0
- package/cli/commands/inspect/count.ts +17 -0
- package/cli/commands/inspect/describe.ts +192 -0
- package/cli/commands/inspect/env.ts +23 -0
- package/cli/commands/inspect/find.ts +171 -0
- package/cli/commands/inspect/get-layout.ts +39 -0
- package/cli/commands/inspect/keyboard.ts +52 -0
- package/cli/commands/inspect/list.ts +58 -0
- package/cli/commands/inspect/memory.ts +215 -0
- package/cli/commands/inspect/redaction.ts +39 -0
- package/cli/commands/inspect/resolve-target.ts +82 -0
- package/cli/commands/inspect/screens.ts +78 -0
- package/cli/commands/inspect/settle.ts +22 -0
- package/cli/commands/inspect/settling.ts +158 -0
- package/cli/commands/inspect/shared.ts +353 -0
- package/cli/commands/inspect/sleep.ts +14 -0
- package/cli/commands/inspect/tree.ts +32 -0
- package/cli/commands/inspect/url.ts +17 -0
- package/cli/commands/inspect/wait-event.ts +210 -0
- package/cli/commands/inspect/wait-idle.ts +24 -0
- package/cli/commands/inspect/wait-ready.ts +74 -0
- package/cli/commands/inspect/wait-selector.ts +54 -0
- package/cli/commands/inspect/wait.ts +31 -0
- package/cli/commands/inspect.ts +4519 -0
- package/cli/commands/install-desktop.ts +351 -0
- package/cli/commands/login.ts +331 -0
- package/cli/commands/logout.ts +31 -0
- package/cli/commands/maestro-generate.ts +361 -0
- package/cli/commands/maestro.ts +453 -0
- package/cli/commands/mode.ts +57 -0
- package/cli/commands/no-bridge-hint.ts +80 -0
- package/cli/commands/perf.ts +66 -0
- package/cli/commands/permissions.ts +203 -0
- package/cli/commands/profile.ts +108 -0
- package/cli/commands/react.ts +353 -0
- package/cli/commands/record.ts +1434 -0
- package/cli/commands/report-issue.ts +305 -0
- package/cli/commands/reset.ts +85 -0
- package/cli/commands/runtime.ts +351 -0
- package/cli/commands/screenshot-command.ts +106 -0
- package/cli/commands/screenshot-layers.ts +143 -0
- package/cli/commands/screenshot-mode.ts +37 -0
- package/cli/commands/screenshot.ts +488 -0
- package/cli/commands/screenshots-capture.ts +607 -0
- package/cli/commands/screenshots.ts +127 -0
- package/cli/commands/serve.ts +168 -0
- package/cli/commands/setup.ts +545 -0
- package/cli/commands/shell-boolean-mode.ts +81 -0
- package/cli/commands/skills.ts +467 -0
- package/cli/commands/slides.ts +361 -0
- package/cli/commands/state.ts +87 -0
- package/cli/commands/storage.ts +58 -0
- package/cli/commands/telemetry.ts +54 -0
- package/cli/commands/three-mode.ts +763 -0
- package/cli/commands/timeline.ts +122 -0
- package/cli/commands/upgrade.ts +208 -0
- package/cli/commands/upload.ts +1225 -0
- package/cli/commands/version.ts +54 -0
- package/cli/commands/what-happened.ts +327 -0
- package/cli/current-sim.ts +204 -0
- package/cli/desktop-companion.ts +300 -0
- package/cli/drivers/electron.ts +70 -0
- package/cli/drivers/index.ts +20 -0
- package/cli/drivers/playwright-provisioning.ts +180 -0
- package/cli/drivers/playwright.ts +698 -0
- package/cli/drivers/registry.ts +65 -0
- package/cli/drivers/types.ts +102 -0
- package/cli/flow-file.ts +142 -0
- package/cli/flow-live-status.ts +120 -0
- package/cli/flow-session.ts +187 -0
- package/cli/help.ts +80 -0
- package/cli/hidden-runtime-alias.ts +19 -0
- package/cli/hints.ts +216 -0
- package/cli/inspect-notice-state.ts +114 -0
- package/cli/maestro-js.ts +334 -0
- package/cli/open-url.ts +8 -0
- package/cli/parent-pid.ts +204 -0
- package/cli/parse-args.ts +211 -0
- package/cli/prompt.ts +51 -0
- package/cli/recording-access.ts +107 -0
- package/cli/registry.ts +1 -0
- package/cli/resolve-assets.ts +63 -0
- package/cli/run-registry.ts +226 -0
- package/cli/runtime-notes.ts +66 -0
- package/cli/runtime-summary.ts +25 -0
- package/cli/setup-repository.ts +187 -0
- package/cli/telemetry.ts +187 -0
- package/cli/ws-bridge.ts +798 -0
- package/dist-cli/bin.js +5 -5
- package/dist-cli/chunks/{agent-XZ2KTPCU.js → agent-7YBDCYMA.js} +2 -2
- package/dist-cli/chunks/{agent-wrapper-JJYYW2WH.js → agent-wrapper-2GHFBHCR.js} +2 -2
- package/dist-cli/chunks/{app-fonts-IXRNQG6B.js → app-fonts-RSNVPQSU.js} +2 -2
- package/dist-cli/chunks/{assert-54T5SK5F.js → assert-XCMX3XJX.js} +2 -2
- package/dist-cli/chunks/{auth-FI5UDI45.js → auth-B442HRAX.js} +2 -2
- package/dist-cli/chunks/{beta-JV6UKADW.js → beta-XJ55JK3M.js} +2 -2
- package/dist-cli/chunks/camera-UGYSSLIK.js +33 -0
- package/dist-cli/chunks/{chunk-3NV2NCNX.js → chunk-277AEQZX.js} +2 -2
- package/dist-cli/chunks/{chunk-2YR5BGA5.js → chunk-2JNSK774.js} +2 -2
- package/dist-cli/chunks/{chunk-RSZWCKNT.js → chunk-32WOTSTR.js} +3 -3
- package/dist-cli/chunks/{chunk-WEXDAC74.js → chunk-3S753SNQ.js} +2 -2
- package/dist-cli/chunks/{chunk-IJO63TDP.js → chunk-46ZOLOYA.js} +2 -2
- package/dist-cli/chunks/{chunk-WUSWBCWA.js → chunk-5L7ELDQL.js} +8 -9
- package/dist-cli/chunks/{chunk-WF3T4SVI.js → chunk-7OOPFSQS.js} +2 -2
- package/dist-cli/chunks/{chunk-TZFFR3SD.js → chunk-7SV3RPRW.js} +2 -2
- package/dist-cli/chunks/{chunk-WWZIXIRD.js → chunk-7ZC35MOU.js} +1 -1
- package/dist-cli/chunks/chunk-AMG5E6CC.js +9 -0
- package/dist-cli/chunks/{chunk-WINYQ44O.js → chunk-APWNH3A4.js} +1 -1
- package/dist-cli/chunks/chunk-B57XUKY3.js +4 -0
- package/dist-cli/chunks/{chunk-YDGQTMQL.js → chunk-C2NL26TD.js} +1 -1
- package/dist-cli/chunks/{chunk-NMF2ZMZQ.js → chunk-D2FNUWAB.js} +4 -4
- package/dist-cli/chunks/{chunk-YIFT42WN.js → chunk-E5T4XSJ3.js} +2 -2
- package/dist-cli/chunks/{chunk-46EUUFJ5.js → chunk-EAC34EQS.js} +1 -1
- package/dist-cli/chunks/{chunk-OVFJFXUD.js → chunk-EG32ML36.js} +2 -2
- package/dist-cli/chunks/{chunk-5YJCOWCH.js → chunk-FXUAC6D5.js} +1 -1
- package/dist-cli/chunks/chunk-GQSL4USA.js +6 -0
- package/dist-cli/chunks/{chunk-VFCMSYZK.js → chunk-HAXW27SS.js} +2 -2
- package/dist-cli/chunks/{chunk-2D2UPBBR.js → chunk-IZAHPAN6.js} +1 -1
- package/dist-cli/chunks/{chunk-7GN3LVWB.js → chunk-J62KM5TB.js} +2 -2
- package/dist-cli/chunks/{chunk-BTWORNNG.js → chunk-JEMCD5E4.js} +1 -1
- package/dist-cli/chunks/{chunk-DCEMHR2Y.js → chunk-JZS3Q37N.js} +2 -2
- package/dist-cli/chunks/{chunk-D4FFVGI5.js → chunk-KR4JON7D.js} +1 -1
- package/dist-cli/chunks/chunk-KWCYKQIQ.js +4 -0
- package/dist-cli/chunks/{chunk-VNQEB4L7.js → chunk-MCWPL644.js} +2 -2
- package/dist-cli/chunks/chunk-MJYK3N2I.js +4 -0
- package/dist-cli/chunks/{chunk-5TEF3ET3.js → chunk-O6TRIZNS.js} +2 -2
- package/dist-cli/chunks/{chunk-QKDWYITG.js → chunk-P7XL2E73.js} +3 -3
- package/dist-cli/chunks/{chunk-BBULZ7CG.js → chunk-PFQTUKQ4.js} +62 -87
- package/dist-cli/chunks/{chunk-GGRX24GF.js → chunk-PG5RZCTN.js} +2 -2
- package/dist-cli/chunks/{chunk-W6K4EFPH.js → chunk-QGRI2Z4M.js} +2 -2
- package/dist-cli/chunks/{chunk-ZMJD5GEC.js → chunk-QLXXE7GE.js} +1 -1
- package/dist-cli/chunks/{chunk-VZXWHRUZ.js → chunk-QOJJJWJE.js} +89 -133
- package/dist-cli/chunks/{chunk-OZSSI4WN.js → chunk-RWZY5427.js} +2 -2
- package/dist-cli/chunks/{chunk-UC6U3MML.js → chunk-RZKU2K3J.js} +2 -2
- package/dist-cli/chunks/{chunk-IJ5CAZZC.js → chunk-SBV4IK4H.js} +1 -1
- package/dist-cli/chunks/{chunk-DZS6WPUI.js → chunk-SGMVFFMK.js} +1 -1
- package/dist-cli/chunks/{chunk-OHAZNXLK.js → chunk-TAX4UT2N.js} +1 -1
- package/dist-cli/chunks/{chunk-5DHC6KHQ.js → chunk-TUOFAWXT.js} +1 -1
- package/dist-cli/chunks/{chunk-GASE6UBA.js → chunk-UHZLOHGP.js} +1 -1
- package/dist-cli/chunks/{chunk-F5ZRSS3C.js → chunk-VC7V76U3.js} +1 -1
- package/dist-cli/chunks/{chunk-RTN5C5RL.js → chunk-VQVMLW4U.js} +1 -1
- package/dist-cli/chunks/{chunk-WMIIKMGK.js → chunk-VUKKYPZN.js} +2 -2
- package/dist-cli/chunks/{chunk-5TPRP5QT.js → chunk-WGGRJDRE.js} +1 -1
- package/dist-cli/chunks/chunk-X6H76EKP.js +15 -0
- package/dist-cli/chunks/chunk-XLZ5FNRT.js +27 -0
- package/dist-cli/chunks/{chunk-HI5TFJWN.js → chunk-XULEACM4.js} +2 -2
- package/dist-cli/chunks/{chunk-MJRLLB4R.js → chunk-YFSDM7AX.js} +4 -4
- package/dist-cli/chunks/chunk-YWI3UEVX.js +5 -0
- package/dist-cli/chunks/{chunk-XEVZYVIW.js → chunk-ZBSJO4NB.js} +10 -9
- package/dist-cli/chunks/{cleanup-P27PA6JI.js → cleanup-EYLGCA6Z.js} +2 -2
- package/dist-cli/chunks/cli-version-LL2UGIHE.js +4 -0
- package/dist-cli/chunks/{compat-ZD65FED3.js → compat-TLJYHB4E.js} +2 -2
- package/dist-cli/chunks/{config-XMJRNM2A.js → config-4JWUOEXK.js} +2 -2
- package/dist-cli/chunks/{control-KMIQT3QP.js → control-HPAOYF4N.js} +2 -2
- package/dist-cli/chunks/daemon-OYLASXLE.js +4 -0
- package/dist-cli/chunks/{debug-PT4HOP7N.js → debug-4BKXF6KI.js} +5 -5
- package/dist-cli/chunks/{desktop-S3FG72AK.js → desktop-ZQ6ZD2S6.js} +3 -3
- package/dist-cli/chunks/{detox-B3D4IFCN.js → detox-WNPASSS3.js} +2 -2
- package/dist-cli/chunks/{device-XBNDSB2R.js → device-BXLXVG3V.js} +2 -2
- package/dist-cli/chunks/{diagnose-HMQXJE5N.js → diagnose-3QX7W5RW.js} +2 -2
- package/dist-cli/chunks/{disk-cleanup-BLCZ5BSZ.js → disk-cleanup-KSWKI7WB.js} +2 -2
- package/dist-cli/chunks/drivers-EPIEFF7P.js +4 -0
- package/dist-cli/chunks/{film-BJGTBYZB.js → film-GDMR33VO.js} +3 -3
- package/dist-cli/chunks/flow-NKMPBYCJ.js +4 -0
- package/dist-cli/chunks/help-OGCBHOKA.js +4 -0
- package/dist-cli/chunks/{hidden-runtime-alias-ANOYADHM.js → hidden-runtime-alias-S2GTDX3T.js} +2 -2
- package/dist-cli/chunks/home-paths-QRCDLTTV.js +4 -0
- package/dist-cli/chunks/inspect-FUYMOZPY.js +4 -0
- package/dist-cli/chunks/install-desktop-FR6YKW7Y.js +4 -0
- package/dist-cli/chunks/{login-FJ737MWG.js → login-IJAPUZHI.js} +4 -4
- package/dist-cli/chunks/{logout-ZCNMMHMY.js → logout-QMXDFU2X.js} +2 -2
- package/dist-cli/chunks/{maestro-SZTNKLDF.js → maestro-ZXU3YCVX.js} +3 -3
- package/dist-cli/chunks/{maestro-generate-DCFAIZ4H.js → maestro-generate-PYB5QY7K.js} +3 -3
- package/dist-cli/chunks/{mode-GRMQCRXR.js → mode-WGUCL5FZ.js} +2 -2
- package/dist-cli/chunks/{optional-demo-registry-W36EWFFB.js → optional-demo-registry-WH2O6H36.js} +2 -2
- package/dist-cli/chunks/{perf-QYBAAUZG.js → perf-TOD3UFAH.js} +2 -2
- package/dist-cli/chunks/{permissions-3QCQ6VF4.js → permissions-I5BRJGTB.js} +2 -2
- package/dist-cli/chunks/{record-QPPC2S4E.js → record-ZYL2FYSK.js} +3 -3
- package/dist-cli/chunks/{report-issue-7NMFP4HK.js → report-issue-TAI6DYZO.js} +2 -2
- package/dist-cli/chunks/reset-7YGYKQPQ.js +4 -0
- package/dist-cli/chunks/runtime-B4JO6QRI.js +4 -0
- package/dist-cli/chunks/{screenshot-command-67AECJFB.js → screenshot-command-7ANLODZY.js} +7 -7
- package/dist-cli/chunks/{screenshot-layers-ASWBYPJL.js → screenshot-layers-A7FYXSVU.js} +3 -3
- package/dist-cli/chunks/{screenshots-capture-PXA3HFQK.js → screenshots-capture-WT2ZY6CB.js} +2 -2
- package/dist-cli/chunks/serve-TG5WKA4V.js +44 -0
- package/dist-cli/chunks/{setup-7DWPMRSB.js → setup-PCWLD22V.js} +2 -2
- package/dist-cli/chunks/{skills-S3Y22TUA.js → skills-27ZHWCQS.js} +2 -2
- package/dist-cli/chunks/state-ZQVY46ZO.js +14 -0
- package/dist-cli/chunks/{storage-XUIMJWAJ.js → storage-OYC57C4X.js} +6 -6
- package/dist-cli/chunks/store-32HSPZHI.js +4 -0
- package/dist-cli/chunks/telemetry-PBJR7XHR.js +4 -0
- package/dist-cli/chunks/{timeline-TMPLQPSP.js → timeline-RAJJFQT6.js} +2 -2
- package/dist-cli/chunks/{upgrade-7HDSIM7K.js → upgrade-OEFNZRIP.js} +2 -2
- package/dist-cli/chunks/upload-LQJITLKK.js +4 -0
- package/dist-cli/chunks/version-NIXTY6PL.js +6 -0
- package/dist-cli/chunks/{web-DG3WBYD3.js → web-XBUTBVGR.js} +2 -2
- package/dist-cli/chunks/{what-happened-XFVUTZR7.js → what-happened-YNHRFUDX.js} +3 -3
- package/dist-lib/agent-daemon-client.cjs +1 -1
- package/dist-lib/agent-events.cjs +1 -1
- package/dist-lib/agent-identity.cjs +1 -1
- package/dist-lib/agent-sessions.cjs +1 -1
- package/dist-lib/attached-projects.cjs +1 -1
- package/dist-lib/auth/shared-session.cjs +1 -1
- package/dist-lib/backend-origin.cjs +1 -1
- package/dist-lib/beta.cjs +1 -1
- package/dist-lib/beta.mjs +1 -1
- package/dist-lib/bridge-constants.cjs +1 -1
- package/dist-lib/bridge-contract.cjs +20 -0
- package/dist-lib/cli-constants.cjs +1 -1
- package/dist-lib/config.cjs +1 -1
- package/dist-lib/detox/index.cjs +1 -1
- package/dist-lib/dev-bundle-resolution.cjs +1 -1
- package/dist-lib/home-paths.cjs +67 -28
- package/dist-lib/host/bridge-host.cjs +140 -12
- package/dist-lib/host/fetch-proxy-handler.cjs +1 -1
- package/dist-lib/host/fetch-proxy-overrides.cjs +1 -1
- package/dist-lib/host/fetch-proxy-overrides.mjs +1 -1
- package/dist-lib/host/websocket-proxy.cjs +1 -1
- package/dist-lib/index.cjs +2815 -40
- package/dist-lib/jump-to-source-babel.cjs +1 -1
- package/dist-lib/menu.cjs +1 -1
- package/dist-lib/menu.mjs +1 -1
- package/dist-lib/metro.cjs +1 -1
- package/dist-lib/profiles.cjs +1 -1
- package/dist-lib/public-brand.cjs +1 -1
- package/dist-lib/render-mode.cjs +1 -1
- package/dist-lib/scripts/dev-server-scanner.cjs +1 -1
- package/dist-lib/sdk.cjs +2549 -2061
- package/dist-lib/sdk.mjs +2543 -2061
- package/dist-lib/skills.cjs +480 -280
- package/dist-lib/vite.cjs +1 -1
- package/package.json +8 -2
- package/src/bridge-constants.ts +3 -4
- package/src/bridge-contract.ts +251 -0
- package/src/connect.ts +83 -0
- package/src/disk-cleanup.ts +30 -0
- package/src/home-paths.ts +81 -38
- package/src/host/bridge-host.ts +134 -6
- package/src/index.ts +27 -1
- package/src/sdk.ts +8 -0
- package/src/sim-client.ts +660 -0
- package/dist-cli/chunks/camera-VL73YIKP.js +0 -22
- package/dist-cli/chunks/chunk-4NPPOV2N.js +0 -5
- package/dist-cli/chunks/chunk-FSUYIVJ6.js +0 -9
- package/dist-cli/chunks/chunk-G2WW6L2C.js +0 -23
- package/dist-cli/chunks/chunk-KTHV3RUS.js +0 -26
- package/dist-cli/chunks/chunk-LF2ZVT7O.js +0 -6
- package/dist-cli/chunks/chunk-NFK7T35W.js +0 -4
- package/dist-cli/chunks/chunk-TIVZIMMW.js +0 -4
- package/dist-cli/chunks/cli-version-WWLPBDQ7.js +0 -4
- package/dist-cli/chunks/daemon-G2ME7NLB.js +0 -4
- package/dist-cli/chunks/drivers-LDECZGP2.js +0 -4
- package/dist-cli/chunks/flow-UEQNVTU7.js +0 -4
- package/dist-cli/chunks/help-T5FYSVGB.js +0 -4
- package/dist-cli/chunks/home-paths-GT3LFNOR.js +0 -4
- package/dist-cli/chunks/inspect-ZA6XF5LD.js +0 -4
- package/dist-cli/chunks/install-desktop-TIMUDHPL.js +0 -4
- package/dist-cli/chunks/runtime-XOAXMSTU.js +0 -4
- package/dist-cli/chunks/serve-BI2NBAXG.js +0 -44
- package/dist-cli/chunks/store-JTHEJLAZ.js +0 -4
- package/dist-cli/chunks/telemetry-ZYJGD2DB.js +0 -4
- package/dist-cli/chunks/upload-GMSZPWM6.js +0 -4
- package/dist-cli/chunks/version-HOCHZ37L.js +0 -6
|
@@ -1,18 +1,18 @@
|
|
|
1
|
-
/*! rnx v0.1.
|
|
1
|
+
/*! rnx v0.1.314 | (c) 2026 Tamagui LLC | Proprietary — see LICENSE */
|
|
2
2
|
import { createRequire as __sootsimCreateRequire } from 'node:module'
|
|
3
3
|
var require = __sootsimCreateRequire(import.meta.url)
|
|
4
|
-
import{b as
|
|
4
|
+
import{b as Ct,c as jt}from"./chunk-TAX4UT2N.js";import{a as At,b as Dt}from"./chunk-JEMCD5E4.js";import{a as de}from"./chunk-PG5RZCTN.js";import{k as Bt}from"./chunk-D2FNUWAB.js";import{a as oe,b as D,c as A,d as Me,e as ae,f as X,g as pe,h as ye,i as Pt,j as Et,k as Ne,l as _t}from"./chunk-YFSDM7AX.js";import{A as Tt,B as Mt,C as Nt,F as Ft,H as Ot,J as ue,K as Rt,Q as Je,a as Ie,b as pt,c as mt,d as ft,e as gt,f as yt,g as ht,h as bt,i as wt,j as xt,k as je,l as qe,r as Le,s as $t,t as St,u as ge,v as vt,w as Te,x as We,y as kt,z as It}from"./chunk-ZBSJO4NB.js";import{a as nt}from"./chunk-KWCYKQIQ.js";import{a as Q}from"./chunk-MCWPL644.js";import{e as rt,j as it,o as at,q as lt,s as ct,t as dt,u as ut,v as ce}from"./chunk-XLZ5FNRT.js";import{c as Be,e as Ce}from"./chunk-QLXXE7GE.js";function He(e){return`(async () => {
|
|
5
5
|
const bridge = globalThis.SootSim && globalThis.SootSim.bridges && globalThis.SootSim.bridges.hotRemount
|
|
6
6
|
if (!bridge || typeof bridge.reloadExternalApp !== 'function') return false
|
|
7
7
|
await bridge.reloadExternalApp({ resetStorage: ${e?"true":"false"} })
|
|
8
8
|
return true
|
|
9
|
-
})()`}import{existsSync as
|
|
10
|
-
`)}function
|
|
11
|
-
`}function
|
|
12
|
-
`)}function
|
|
9
|
+
})()`}import{existsSync as Do,mkdirSync as Lt,readFileSync as Bo,rmSync as Ue,writeFileSync as Wt}from"fs";import{tmpdir as Co}from"os";import{dirname as Jt,join as jo,resolve as Ht}from"path";import*as Fe from"fs";function Ao(e){let t={},s=e,r=m=>Array.isArray(m)?m:[],c=e.match(/^---\n([\s\S]*?)\n---\n?/);if(c){try{t=de.parse(c[1])??{}}catch(p){console.warn(` warn: could not parse frontmatter: ${p.message}`)}s=e.slice(c[0].length);let m=de.parse(s);return{frontmatter:t,steps:r(m)}}if(/\n---\s*\n/.test(e))try{let m=de.parseAllDocuments(e);if(m.length>=2){let p=m[0].toJS(),h=m[m.length-1].toJS();return{frontmatter:p&&typeof p=="object"?p:{},steps:r(h)}}}catch(m){console.warn(` warn: could not parse multi-doc flow: ${m.message}`)}let l=de.parse(s);return{frontmatter:t,steps:r(l)}}var qt=new Set(["tapOn","inputText","pressKey","dispatchKey","hideKeyboard","swipe","pinch","scroll","scrollUntilVisible"]);function Ke(e){let t=[];if(!Array.isArray(e)||e.length===0)return t.push("flow body must be a non-empty YAML array of steps"),t;let s=0;for(let r of e)r&&typeof r=="object"?Object.keys(r).some(l=>qt.has(l))&&(s+=1):typeof r=="string"&&qt.has(r)&&(s+=1);return s===0&&t.push("no interaction steps found (expected at least one tapOn / inputText / pressKey / swipe / scroll)"),t}function Os(e){if(!Fe.existsSync(e))return[`file not found: ${e}`];let t;try{t=Fe.readFileSync(e,"utf8")}catch(s){return[`cannot read file: ${s.message}`]}if(t.trim().length===0)return["file is empty"];try{let s=Ao(t);return Ke(s.steps)}catch(s){return[`yaml parse error: ${s.message}`]}}var Ge=1;function Oe(){return Ht(process.env.SOOTSIM_FLOW_SESSION_PATH||jo(Co(),"sootsim-flow-session.json"))}function Ye(e){let t=Oe();Lt(Jt(t),{recursive:!0}),Wt(t,JSON.stringify(e,null,2)+`
|
|
10
|
+
`)}function ze(){let e=Oe();if(!Do(e))return null;try{let t=JSON.parse(Bo(e,"utf8"));return t.version!==Ge||!Array.isArray(t.steps)||typeof t.startedAt!="string"||typeof t.updatedAt!="string"?(Ue(e,{force:!0}),null):{version:Ge,startedAt:t.startedAt,updatedAt:t.updatedAt,steps:t.steps,candidate:t.candidate??null}}catch{return Ue(e,{force:!0}),null}}function Bs(){let e=new Date().toISOString(),t={version:Ge,startedAt:e,updatedAt:e,steps:[],candidate:null};return Ye(t),{path:Oe(),state:t}}function qo(){Ue(Oe(),{force:!0})}function Cs(){qo()}function Re(e){let t=ze();if(!t)return{active:!1};let s=t.candidate,r={...t,updatedAt:new Date().toISOString(),candidate:{step:e.step,summary:e.summary,source:e.source,recordedAt:new Date().toISOString()}};return Ye(r),{active:!0,candidate:r.candidate,replaced:s}}function js(){let e=ze();if(!e)return{active:!1,kept:!1,reason:"no-session"};if(!e.candidate)return{active:!0,kept:!1,reason:"no-candidate"};let t=e.candidate,s={...e,updatedAt:new Date().toISOString(),steps:[...e.steps,t.step],candidate:null};return Ye(s),{active:!0,kept:!0,candidate:t,stepCount:s.steps.length}}function Lo(e){return de.stringify(e).trimEnd()+`
|
|
11
|
+
`}function qs(e){let t=ze();if(!t)return{active:!1};let s=Lo(t.steps),r=Ke(t.steps);if(r.length>0)return{active:!0,valid:!1,issues:r,yaml:s,stepCount:t.steps.length,outputPath:null};let c=null;return e&&(c=Ht(e),Lt(Jt(c),{recursive:!0}),Wt(c,s)),{active:!0,valid:!0,issues:[],yaml:s,stepCount:t.steps.length,outputPath:c}}import{existsSync as Wo,mkdirSync as Jo,readFileSync as Ho,rmSync as Kt,writeFileSync as Ko}from"fs";import{tmpdir as Uo}from"os";import{dirname as Go,join as Yo,resolve as zo}from"path";var he=1,Xo="SOOTSIM_INSPECT_NOTICE_PATH",Vo=300*1e3,Qo=15e3;function Ut(){return zo(process.env[Xo]||Yo(Uo(),"sootsim-inspect-notice-state.json"))}function Zo(e,t){return Object.fromEntries(Object.entries(e).filter(([,s])=>typeof s?.signature=="string"&&Number.isFinite(s?.updatedAt)&&t-s.updatedAt<=Vo))}function es(e){let t=Ut();if(!Wo(t))return{version:he,entries:{}};try{let s=JSON.parse(Ho(t,"utf8"));return s.version!==he||!s.entries||typeof s.entries!="object"?(Kt(t,{force:!0}),{version:he,entries:{}}):{version:he,entries:Zo(s.entries,e)}}catch{return Kt(t,{force:!0}),{version:he,entries:{}}}}function ts(e){let t=Ut();Jo(Go(t),{recursive:!0}),Ko(t,JSON.stringify(e,null,2)+`
|
|
12
|
+
`)}function os(e,t){let s=t.trim()||"default";return`${e}:${s}`}function Xe(e,t,s,r={}){let c=r.nowMs??Date.now(),l=r.cooldownMs??Qo,m=es(c),p=os(e,t),h=m.entries[p];return h&&h.signature===s&&c-h.updatedAt<l?!1:(m.entries[p]={signature:s,updatedAt:c},ts(m),!0)}async function se({bridge:e,simId:t,maxMs:s,pollMs:r=50,stablePolls:c=3,strict:l=!1}){let m=await e.send({type:"evaluate",simId:t,code:`(async () => {
|
|
13
13
|
const start = Date.now()
|
|
14
14
|
const deadline = start + ${Math.max(0,Math.round(s))}
|
|
15
|
-
const pollMs = ${Math.max(1,Math.round(
|
|
15
|
+
const pollMs = ${Math.max(1,Math.round(r))}
|
|
16
16
|
const requiredStablePolls = ${Math.max(1,Math.round(c))}
|
|
17
17
|
const strict = ${l?"true":"false"}
|
|
18
18
|
const sleep = (ms) => new Promise((resolve) => setTimeout(resolve, ms))
|
|
@@ -126,12 +126,12 @@ import{b as Bt,c as Ct}from"./chunk-OHAZNXLK.js";import{a as de}from"./chunk-GGR
|
|
|
126
126
|
await sleep(pollMs)
|
|
127
127
|
}
|
|
128
128
|
return { settled: false, elapsed: Date.now() - start }
|
|
129
|
-
})()`},{timeoutMs:s+1e3}),{elapsed:p,settled:h}=
|
|
129
|
+
})()`},{timeoutMs:s+1e3}),{elapsed:p,settled:h}=m??{};return{elapsed:typeof p=="number"?p:s,settled:h===!0}}var Pe=`(() => {
|
|
130
130
|
const spec = window.SootSim?.state?.engineSnapshot?.windowState?.deviceSpec
|
|
131
131
|
return spec && spec.width > 0 && spec.height > 0
|
|
132
132
|
? { width: spec.width, height: spec.height }
|
|
133
133
|
: null
|
|
134
|
-
})()`,
|
|
134
|
+
})()`,ss={initialWaitMs:3e3,deadlineMs:5e3,retryWaitMs:700},ns={initialWaitMs:1200,deadlineMs:2500,retryWaitMs:700};function rs(e,t={}){return{...e?ss:ns,...t}}function me(e){return!(!e||e.hit===!1||e.ok===!1||e.requestedTargetMatched===!1||e.pointerTapHandled===!1&&!e.keyboardOpened&&!e.isTextInput)}function is(e,t){return{nodeId:e.target?.nodeId??e.match?.nodeId??e.node?.nodeId??null,id:e.target?.id??e.match?.id??e.node?.id??null,testID:e.target?.testID??e.match?.testID??e.node?.testID??null,text:e.target?.text??e.target?.accessibilityLabel??e.match?.text??e.match?.accessibilityLabel??e.node?.text??t??null,type:e.target?.type??e.match?.type??e.node?.type??null}}async function be(e,t){let s=rs(!!t.agent,t.timing),r=0,c=null,l=null;try{await se({bridge:e,maxMs:s.initialWaitMs,pollMs:32,stablePolls:2})}catch{}let m=Date.now()+s.deadlineMs,p=null;for(;Date.now()<=m||r===0;){r++;let h=await t.resolve();if(c=h,h?.error==="bridge-not-ready"||h?.ambiguous||h?.nthOutOfRange)return{payload:h,result:null,attempts:r,failure:"special"};if(h&&typeof h.cx=="number"&&typeof h.cy=="number")if(h.offscreen){l={hit:!1,reason:"offscreen",x:h.cx,y:h.cy,screen:h.screen};let b=`${Math.round(h.cx)},${Math.round(h.cy)}`;if(p===b)return{payload:h,result:l,attempts:r,failure:"missed"};p=b}else{p=null;let b=is(h,t.textFallback),v=await e.send({type:"evaluate",code:`(async () => {
|
|
135
135
|
const t = window.__sootsimTest
|
|
136
136
|
if (
|
|
137
137
|
!t ||
|
|
@@ -214,10 +214,10 @@ import{b as Bt,c as Ct}from"./chunk-OHAZNXLK.js";import{a as de}from"./chunk-GGR
|
|
|
214
214
|
requestedTarget,
|
|
215
215
|
coordinateTarget,
|
|
216
216
|
}
|
|
217
|
-
})()`});if(v?.error)return{payload:h,result:{hit:!1,reason:v.error,requestedTarget:b},attempts:
|
|
217
|
+
})()`});if(v?.error)return{payload:h,result:{hit:!1,reason:v.error,requestedTarget:b},attempts:r,failure:"special"};if(v?.requestedTargetMatched===!1)return{payload:h,result:{hit:!1,reason:"target-covered",...v},attempts:r,failure:"missed"};let F=v?.activation?.tap??v?.activation,N=F&&typeof F=="object"?{...F,...v?.activation,...v}:{hit:!!F,...v};if(l=N,me(N))return{payload:h,result:N,attempts:r}}let x=m-Date.now();if(x<=0)break;try{await se({bridge:e,maxMs:Math.min(x,s.retryWaitMs),pollMs:32,stablePolls:2})}catch{await new Promise(b=>setTimeout(b,Math.min(120,x)))}}return{payload:c,result:l,attempts:r,failure:c&&typeof c.cx=="number"?"missed":"not-found"}}async function Gt(e,t,s,r){return e.send({type:"tap",x:t,y:s,...r?{target:r}:{}})}async function Yt(e,t,s={}){let r=JSON.stringify(t);return be(e,{agent:s.agent,timing:s.timing,resolve:()=>e.send({type:"evaluate",code:`(async () => {
|
|
218
218
|
const t = window.__sootsimTest
|
|
219
219
|
if (!t) return null
|
|
220
|
-
const n = (await t.findByTestId(${
|
|
220
|
+
const n = (await t.findByTestId(${r})) || (await t.findById(${r}))
|
|
221
221
|
if (!n || !n.absolutePosition || !n.layout) return { cx: null }
|
|
222
222
|
const resolved =
|
|
223
223
|
typeof n.nodeId === 'number' && typeof t.resolveTapTarget === 'function'
|
|
@@ -232,7 +232,7 @@ import{b as Bt,c as Ct}from"./chunk-OHAZNXLK.js";import{a as de}from"./chunk-GGR
|
|
|
232
232
|
resolved && typeof resolved.cy === 'number'
|
|
233
233
|
? resolved.cy
|
|
234
234
|
: n.absolutePosition.y + (n.layout.height || 0) / 2
|
|
235
|
-
const scr = ${
|
|
235
|
+
const scr = ${Pe}
|
|
236
236
|
const offscreen =
|
|
237
237
|
!!scr && (cx < 0 || cy < 0 || cx > scr.width || cy > scr.height)
|
|
238
238
|
return {
|
|
@@ -260,7 +260,7 @@ import{b as Bt,c as Ct}from"./chunk-OHAZNXLK.js";import{a as de}from"./chunk-GGR
|
|
|
260
260
|
},
|
|
261
261
|
strategy: (resolved && resolved.strategy) || 'matched-node',
|
|
262
262
|
}
|
|
263
|
-
})()`})})}async function
|
|
263
|
+
})()`})})}async function zt(e,t,s={},r={}){let c=JSON.stringify({query:t,exact:!!s.exact,role:s.role??null,within:s.within??null,minX:s.minX??null,maxX:s.maxX??null,minY:s.minY??null,maxY:s.maxY??null,near:s.near??null,nth:s.nth??null,first:!!s.first});return be(e,{agent:r.agent,timing:r.timing,textFallback:t,resolve:()=>e.send({type:"evaluate",code:`(async () => {
|
|
264
264
|
const t = window.__sootsimTest
|
|
265
265
|
if (!t) return { error: 'bridge-not-ready' }
|
|
266
266
|
const F = ${c}
|
|
@@ -355,7 +355,7 @@ import{b as Bt,c as Ct}from"./chunk-OHAZNXLK.js";import{a as de}from"./chunk-GGR
|
|
|
355
355
|
resolved && typeof resolved.cy === 'number'
|
|
356
356
|
? resolved.cy
|
|
357
357
|
: n.absolutePosition.y + (n.layout.height || 0) / 2
|
|
358
|
-
const scr = ${
|
|
358
|
+
const scr = ${Pe}
|
|
359
359
|
const offscreen =
|
|
360
360
|
!!scr && (cx < 0 || cy < 0 || cx > scr.width || cy > scr.height)
|
|
361
361
|
return {
|
|
@@ -384,11 +384,11 @@ import{b as Bt,c as Ct}from"./chunk-OHAZNXLK.js";import{a as de}from"./chunk-GGR
|
|
|
384
384
|
total,
|
|
385
385
|
idx,
|
|
386
386
|
}
|
|
387
|
-
})()`})})}async function
|
|
387
|
+
})()`})})}async function Xt(e,t,s={}){let r=JSON.stringify(t);return be(e,{agent:s.agent,timing:s.timing,textFallback:t,resolve:async()=>{let c=await e.send({type:"evaluate",code:`(async () => {
|
|
388
388
|
const t = window.__sootsimTest
|
|
389
389
|
if (!t) return { error: 'bridge-not-ready' }
|
|
390
390
|
const byTestId =
|
|
391
|
-
(await t.findByTestId(${
|
|
391
|
+
(await t.findByTestId(${r})) || (await t.findById(${r}))
|
|
392
392
|
if (byTestId && byTestId.absolutePosition && byTestId.layout) {
|
|
393
393
|
return {
|
|
394
394
|
strategy: 'testid',
|
|
@@ -401,10 +401,10 @@ import{b as Bt,c as Ct}from"./chunk-OHAZNXLK.js";import{a as de}from"./chunk-GGR
|
|
|
401
401
|
absolutePosition: byTestId.absolutePosition,
|
|
402
402
|
layout: byTestId.layout,
|
|
403
403
|
},
|
|
404
|
-
screen: ${
|
|
404
|
+
screen: ${Pe},
|
|
405
405
|
}
|
|
406
406
|
}
|
|
407
|
-
const byText = await t.findByText(${
|
|
407
|
+
const byText = await t.findByText(${r})
|
|
408
408
|
if (byText && byText.absolutePosition && byText.layout) {
|
|
409
409
|
return {
|
|
410
410
|
strategy: 'text',
|
|
@@ -417,24 +417,24 @@ import{b as Bt,c as Ct}from"./chunk-OHAZNXLK.js";import{a as de}from"./chunk-GGR
|
|
|
417
417
|
absolutePosition: byText.absolutePosition,
|
|
418
418
|
layout: byText.layout,
|
|
419
419
|
},
|
|
420
|
-
screen: ${
|
|
420
|
+
screen: ${Pe},
|
|
421
421
|
}
|
|
422
422
|
}
|
|
423
423
|
return { strategy: 'none' }
|
|
424
|
-
})()`});if(!c||!("node"in c))return c;let l=c.node,
|
|
425
|
-
`),le=[];for(let
|
|
426
|
-
`)}console.log(ee),te>0&&console.log(` ${te} clipped row(s) hidden (omit --no-clipped to see)`);let ie=P||N||
|
|
424
|
+
})()`});if(!c||!("node"in c))return c;let l=c.node,m=l.absolutePosition.x+l.layout.width/2,p=l.absolutePosition.y+l.layout.height/2,h=c.screen??null,x=!!h&&(m<0||p<0||m>h.width||p>h.height);return{...c,cx:m,cy:p,...x?{offscreen:!0,screen:h}:{},target:{id:l.id,testID:l.testID,text:c.strategy==="text"?t:l.text,type:l.type}}}})}async function Vt(e,t={args:[]}){let s=await mt(e);if(D(t.args)){A(s);return}console.log(` nodes: ${s.nodes}`)}function Ve(e,t){let s=e.indexOf(t);return s>=0&&s+1<e.length?e[s+1]:null}async function Qt(e){let{bridge:t,args:s,positional:r}=e,c=s.includes("--verbose")||s.includes("-v"),l=D(s),m=c&&!l,p=s.includes("--watch")||s.includes("-w"),h=1e3,x=s.includes("--compact"),b=s.includes("--no-xy"),v=s.includes("--no-clipped"),F=s.includes("--include-occluded"),N=Ve(s,"--testid-like"),j=Ve(s,"--only"),R=Ve(s,"--subtree"),d=r[1]&&!r[1].startsWith("-")?r[1]:void 0,q=d?/[*?]/.test(d):!1,P=!q&&!j?d:void 0,_=j??(q?d:void 0),J=async()=>{await pe(t,{verbose:m});let I=await yt(t,{describe:!0,verbose:c,filter:P||"",testIdLike:N||void 0,onlyGlob:_||void 0,subtreeRoot:R||void 0,compact:x,hideXy:b,includeOccluded:F,fullText:l}),O=I?.tree,H=I?.shell,K=I?.keyboard;if(l){A({shell:H,tree:O??"",keyboard:K});return}if(H&&typeof H=="object"){let C=[H.state?`state=${H.state}`:null,H.activeApp?`app=${H.activeApp}`:null,H.showSwitcher?"switcher":null,H.switcherPhase&&H.switcherPhase!=="idle"?`phase=${H.switcherPhase}`:null].filter(Boolean);C.length>0&&console.log(` shell: ${C.join(" ")}`)}if(typeof O=="string"&&O.startsWith("__SUBTREE_NOT_FOUND__:")){let C=O.slice(22);console.log(` subtree root not found: ${C}`),Q("subtree-root-not-found",C);return}if(!O){let C=I?.nodeCount??0;console.log(" no matching nodes found"),!(P||N||_||R)&&C<10&&Q("app-still-loading",C);return}let ee=O,te=0;if(v&&typeof ee=="string"){let C=ee.split(`
|
|
425
|
+
`),le=[];for(let ve of C){if(ve.includes("(clipped:")){te+=1;continue}le.push(ve)}ee=le.join(`
|
|
426
|
+
`)}console.log(ee),te>0&&console.log(` ${te} clipped row(s) hidden (omit --no-clipped to see)`);let ie=P||N||_||R;if((P||N||_)&&!p&&Q("describe-filter-context"),!ie&&!p&&O.split(`
|
|
427
427
|
`).length>=80&&Q("describe-use-filters"),K&&K.visible){let C=K.spec,le=[C?.keyboardType?`type=${C.keyboardType}`:null,C?.returnKeyType&&C.returnKeyType!=="default"?`return=${C.returnKeyType}`:null,K.mode!=="letters"?`mode=${K.mode}`:null,K.shifted?"shift":null,K.capsLock?"caps":null,C?.autoCapitalize&&C.autoCapitalize!=="sentences"?`autoCap=${C.autoCapitalize}`:null,K.accessoryBarId?`accessory=${K.accessoryBarId}`:null].filter(Boolean);console.log(`
|
|
428
428
|
keyboard: ${le.join(" ")||"visible"}`)}};if(p)for(console.log(` watching... (Ctrl+C to stop)
|
|
429
|
-
`);;)console.clear(),await J(),await oe(h);else await J()}var
|
|
429
|
+
`);;)console.clear(),await J(),await oe(h);else await J()}var as=["SOOTSIM_AGENT","TM_SESSION","CLAUDECODE","CLAUDE_CODE_ENTRYPOINT","CLAUDE_CODE_SESSION_ID","CODEX_THREAD_ID","CURSOR_TRACE_ID","AIDER_MODEL"];function fe(){if(process.env.SOOTSIM_AGENT==="0")return!1;for(let e of as){let t=process.env[e];if(t&&t.trim()&&t!=="0")return!0}return!1}async function Zt(e){let{bridge:t,args:s,effectiveArgs:r,positional:c,inspectUsage:l}=e,m=I=>{let O=r.indexOf(I);return O>=0&&O+1<r.length?r[O+1]:null},p=I=>r.includes(I),h=m("--testid")||m("--test-id"),x=m("--role"),b=m("--type"),v=m("--text"),F=p("--pressable"),N=p("--visible"),j=p("--interactive-targets")||p("--actions"),R=!h&&!x&&!b&&!v&&!F&&!N&&!j?c[1]:null,d=v??R,q=await xt(t,{testId:h,role:x,type:b,text:d,pressable:F,visible:N,interactive:j});q||(console.error(l("find","<text> | --text <t> | --testid <id> | --role <r> | --type <t> | --pressable | --visible | --interactive-targets")),process.exit(1));let{mode:P,result:_}=q,J=D(s),U=s.includes("--verbose")||s.includes("--dump");if(J)P==="interactive-targets"&&Array.isArray(_)?A(je(_).map(I=>({...I,tap:qe(I)}))):A(_??null);else if(Array.isArray(_))if(_.length===0){console.log(` no ${P} nodes found`);let I=await t.send({type:"evaluate",code:"(async () => (await window.__sootsimTest?.getNodeCount?.()) || 0)()"});typeof I=="number"&&I<10&&Q("app-still-loading",I)}else if(P==="interactive-targets"){let I=je(_);console.log(` found ${I.length} interactive target${I.length===1?"":"s"} (sorted by score):`);for(let O of I.slice(0,20)){let H=O.absolutePosition?`@(${Math.round(O.absolutePosition.x)},${Math.round(O.absolutePosition.y)})`:"",K=O.layout?`${Math.round(O.layout.width)}x${Math.round(O.layout.height)}`:"?x?",ee=O.text?` "${O.text.slice(0,30)}"`:"",te=O.testID?` #${O.testID}`:"",ie=O.accessibilityLabel?` \u24D8"${String(O.accessibilityLabel).slice(0,24)}"`:"",Se=O.accessibilityRole?`[${O.accessibilityRole}]`:O.type,C=qe(O);console.log(` ${Se}${ee}${ie}${te} ${K} ${H}`),console.log(` \u2192 ${C}`),U&&console.log(Qe(JSON.stringify(O,null,2)," "))}I.length>20&&console.log(` ... and ${I.length-20} more`)}else{console.log(` found ${_.length} node${_.length===1?"":"s"} (${P}):`);for(let I of _.slice(0,20)){let O=I.absolutePosition?`@(${Math.round(I.absolutePosition.x)},${Math.round(I.absolutePosition.y)})`:"",H=I.layout?`${Math.round(I.layout.width)}x${Math.round(I.layout.height)}`:"?x?",K=I.text?` "${I.text.slice(0,30)}"`:"",ee=I.testID?` #${I.testID}`:"",te=I.pressable?" (tap)":"",ie=I.accessibilityRole?`[${I.accessibilityRole}]`:I.type;console.log(` ${ie}${K}${ee} ${H} ${O}${te}`),U&&console.log(Qe(JSON.stringify(I,null,2)," "))}_.length>20&&console.log(` ... and ${_.length-20} more`)}else if(_==null)console.log(` not found: ${d||h||x||b||""||P}`),h&&Q("wait-selector-for-missing-testid",h);else{let I=_;if(I.type&&I.absolutePosition){let O=`@(${Math.round(I.absolutePosition.x)},${Math.round(I.absolutePosition.y)})`,H=I.layout?`${Math.round(I.layout.width)}x${Math.round(I.layout.height)}`:"?x?",K=I.text?` "${I.text.slice(0,40)}"`:"",ee=I.testID?` #${I.testID}`:"",te=I.pressable?" (tap)":"",ie=I.accessibilityRole?`[${I.accessibilityRole}]`:I.type;console.log(` ${ie}${K}${ee} ${H} ${O}${te}`),U&&console.log(Qe(JSON.stringify(I,null,2)," "))}else console.log(JSON.stringify(_,null,2))}}function Qe(e,t){return e.split(`
|
|
430
430
|
`).map(s=>t+s).join(`
|
|
431
|
-
`)}async function
|
|
432
|
-
`),console.log(
|
|
433
|
-
`))}async function
|
|
434
|
-
slope over ${F.toFixed(0)}s:`);let j=Object.entries(N).filter(([,R])=>R!==0).sort((R,d)=>Math.abs(d[1])-Math.abs(R[1]));if(j.length===0){console.log(" all counters flat");return}for(let[R,d]of j){let q=R.endsWith("Bytes")?`${re(Math.abs(d))}/s${d<0?" (shrinking)":""}`:`${d>0?"+":""}${d.toFixed(2)}/s`;console.log(` ${R.padEnd(28)}${q}`)}}var Z="<redacted secure text>";function we(e){let t=e?.layout?.spec??e?.spec??null;return!!t?.secureTextEntry&&t.keyboardType!=="visible-password"}function
|
|
431
|
+
`)}async function eo(e){let{bridge:t,args:s}=e,r=D(s);await pe(t,{verbose:!r});let c=s.includes("--styling"),l=s.indexOf("--filter"),m=l>=0?s[l+1]:void 0,p=await ht(t,{styling:c,filter:m});if(r){A({count:p.length,elements:p});return}console.log(` layout (${p.length} element${p.length===1?"":"s"}):
|
|
432
|
+
`),console.log(bt(p,{styling:c}))}async function to(e,t={}){let s=await Ot(e);if("error"in s&&(console.error(s.error),process.exit(1)),t.json){console.log(JSON.stringify(s,null,2));return}let{visible:r,spec:c,mode:l,shifted:m,capsLock:p,accessoryBarId:h}=s,x=[];x.push(`keyboard: ${r?"visible":"hidden"}`),c?(x.push(` type: ${c.keyboardType}`),x.push(` returnKey: ${c.returnKeyType}`),x.push(` autoCap: ${c.autoCapitalize}`),x.push(` autoCorrect: ${c.autoCorrect?"on":"off"}`),x.push(` appearance: ${c.keyboardAppearance}`),c.secureTextEntry&&x.push(" secureTextEntry: true"),c.enablesReturnKeyAutomatically&&x.push(` return: ${c.currentTextIsEmpty?"disabled (empty)":"enabled"}`)):x.push(" spec: <none> (shown via dev-tools with no TextInput)"),x.push(` mode: ${l}${m?" (shifted)":""}${p?" (caps)":""}`),h&&x.push(` accessoryBar: ${h}`),console.log(x.join(`
|
|
433
|
+
`))}async function oo(e){let t=await e.bridge.listSims(),s=e.args.includes("--all"),r=e.args.find((p,h)=>e.args[h-1]==="--bundle"),c=e.args.find((p,h)=>e.args[h-1]==="--app-port"),l=e.args.includes("--primary"),m=t.filter(p=>!(l&&!p.isPrimary||r&&!(p.url??"").includes(r)||c&&!(p.url??"").includes(`/rn/${c}`)||!s&&!r&&!c&&!l&&!(p.url&&(p.url.includes("bundle=")||p.url.includes("/index.bundle")))&&p.id!==e.simId));if(D(e.args)){A(m.map(p=>({...p,active:p.id===e.simId})));return}Bt(m,e.simId),m.length<t.length&&!D(e.args)&&console.log(` (${t.length-m.length} more hidden \u2014 pass --all to show)`)}function re(e){return e<1024?`${e}B`:e<1024*1024?`${(e/1024).toFixed(1)}KB`:`${(e/1024/1024).toFixed(1)}MB`}function ls(e,t){return t<=0?"?":`${(e/t*100).toFixed(0)}%`}function cs(e){let t={},s=(r,c)=>{c&&(c.nodesRegistered!=null&&(t[`${r}.nodes`]=c.nodesRegistered),c.nodesDetached!=null&&(t[`${r}.detached`]=c.nodesDetached),c.objects&&(t[`${r}.paragraphs`]=c.objects.paragraphs,t[`${r}.yogaNodes`]=c.objects.yogaNodes,t[`${r}.pictures`]=c.objects.pictures,t[`${r}.rasterImages`]=c.objects.rasterImages),c.imageLoader&&(t[`${r}.imageCacheEntries`]=c.imageLoader.cacheEntries,t[`${r}.imagePixelBytes`]=c.imageLoader.cachePixelBytes),c.workerHeap&&(t[`${r}.heapBytes`]=c.workerHeap.usedJSHeapSize),c.wasmHeapBytes!=null&&(t[`${r}.wasmHeapBytes`]=c.wasmHeapBytes))};return s("tenant",e.tenant),s("shell",e.shell),s("compositor",e.compositor),e.hostHeap&&(t["host.heapBytes"]=e.hostHeap.usedJSHeapSize),t}function so(e,t){return e.endsWith("Bytes")?re(t):String(t)}function Ze(e,t){if(!t){console.log(` ${e}: not available`);return}let s=t.objects;if(console.log(` ${e}`),t.nodesRegistered!=null&&console.log(` nodes registered: ${t.nodesRegistered}`),t.nodesDetached!=null){let r=Object.entries(t.detachedTypes??{}).map(([c,l])=>`${c}:${l}`).join(" ");console.log(` nodes detached: ${t.nodesDetached}${r?` (${r})`:""}`)}if(s&&(console.log(` paragraphs: ${s.paragraphs}`),console.log(` yoga nodes: ${s.yogaNodes}`),console.log(` pictures: ${s.pictures}`),console.log(` raster images: ${s.rasterImages}`)),t.activeNativeAnimations!=null&&console.log(` native anims: ${t.activeNativeAnimations}`),t.imageLoader){let r=t.imageLoader;console.log(` image cache: ${r.cacheEntries}/${r.cacheMaxEntries} entries, ${re(r.cachePixelBytes)}/${re(r.cachePixelBudget)} (${ls(r.cachePixelBytes,r.cachePixelBudget)})`)}t.workerHeap&&console.log(` js heap: ${re(t.workerHeap.usedJSHeapSize)} used / ${re(t.workerHeap.totalJSHeapSize)} total`),t.wasmHeapBytes!=null&&console.log(` canvaskit wasm: ${re(t.wasmHeapBytes)}`)}function ds(e){console.log(" memory:"),Ze("tenant worker",e.tenant),Ze("shell worker",e.shell),Ze("compositor worker",e.compositor),e.hostHeap?(console.log(" host"),console.log(` js heap: ${re(e.hostHeap.usedJSHeapSize)} used / ${re(e.hostHeap.totalJSHeapSize)} total`)):console.log(" host js heap: not available (chrome only)")}function us(e,t,s){let r=e.indexOf(t);if(r===-1)return s;let c=Number(e[r+1]);return Number.isFinite(c)&&c>0?c:s}async function no(e,t={args:[]}){let s=D(t.args),r=t.args.indexOf("--watch");if(r===-1){let R=await Je(e);if(s){A(R);return}ds(R);return}let c=Number(t.args[r+1]),l=Number.isFinite(c)&&c>0?c:60,m=us(t.args,"--interval",5),p=[],h=Date.now(),x=null;for(s||console.log(` sampling every ${m}s for ${l}s \u2014 deltas per tick:`);;){let R=await Je(e),d=(Date.now()-h)/1e3,q=cs(R);if(p.push({tSec:d,counters:q}),!s){let P=[];for(let[_,J]of Object.entries(q)){let U=x&&_ in x?J-x[_]:null;if(U===null||U===0)continue;let I=U>0?"+":"-",O=_.endsWith("Bytes")?`${I}${re(Math.abs(U))}`:`${I}${Math.abs(U)}`;P.push(`${_} ${so(_,J)} (${O})`)}console.log(` t+${d.toFixed(0)}s ${P.length?P.join(" "):x?"no change":Object.entries(q).map(([_,J])=>`${_} ${so(_,J)}`).join(" ")}`)}if(x=q,d>=l)break;await new Promise(P=>setTimeout(P,m*1e3))}let b=p[0],v=p[p.length-1],F=Math.max(v.tSec-b.tSec,.001),N={};for(let R of Object.keys(v.counters))R in b.counters&&(N[R]=(v.counters[R]-b.counters[R])/F);if(s){A({samples:p,perSecond:N,elapsedSec:F});return}console.log(`
|
|
434
|
+
slope over ${F.toFixed(0)}s:`);let j=Object.entries(N).filter(([,R])=>R!==0).sort((R,d)=>Math.abs(d[1])-Math.abs(R[1]));if(j.length===0){console.log(" all counters flat");return}for(let[R,d]of j){let q=R.endsWith("Bytes")?`${re(Math.abs(d))}/s${d<0?" (shrinking)":""}`:`${d>0?"+":""}${d.toFixed(2)}/s`;console.log(` ${R.padEnd(28)}${q}`)}}var Z="<redacted secure text>";function we(e){let t=e?.layout?.spec??e?.spec??null;return!!t?.secureTextEntry&&t.keyboardType!=="visible-password"}function et(e,t){return we(t)?Z:e}function tt(e){if(!e||!we(e))return e;let t=e.focusedInput;return!t||typeof t!="object"?e:{...e,focusedInput:{...t,secureTextEntry:!0,text:typeof t.text=="string"?Z:t.text}}}function xe(e,t){let s=e.indexOf("--testid");if(s>=0&&e[s+1])return{mode:"testid",value:e[s+1]};let r=e.indexOf("--test-id");if(r>=0&&e[r+1])return{mode:"testid",value:e[r+1]};let c=e.indexOf("--text");if(c>=0&&e[c+1])return{mode:"text",value:e[c+1]};let l=t?.[1];return l&&!l.startsWith("-")&&!Number.isFinite(Number(l))?{mode:"testid",value:l}:null}async function Ee(e,t){let s=JSON.stringify(t.value),r=t.mode==="testid"?`(await t.findByTestId(${s})) || (await t.findById(${s}))`:`await t.findByText(${s})`;return await e.send({type:"evaluate",code:`(async () => {
|
|
435
435
|
const t = window.__sootsimTest
|
|
436
436
|
if (!t) return null
|
|
437
|
-
const n = ${
|
|
437
|
+
const n = ${r}
|
|
438
438
|
if (!n || !n.absolutePosition || !n.layout) return null
|
|
439
439
|
const resolved =
|
|
440
440
|
typeof n.nodeId === 'number' && typeof t.resolveTapTarget === 'function'
|
|
@@ -456,15 +456,15 @@ import{b as Bt,c as Ct}from"./chunk-OHAZNXLK.js";import{a as de}from"./chunk-GGR
|
|
|
456
456
|
text: ${JSON.stringify(t.mode==="text")} ? ${s} : (n.text ?? n.accessibilityLabel ?? null),
|
|
457
457
|
type: n.type ?? null,
|
|
458
458
|
}
|
|
459
|
-
})()`})??null}async function
|
|
460
|
-
`))}async function
|
|
459
|
+
})()`})??null}async function ro(e,t={}){let{nav:s,route:r,keyboard:c,shell:l}=await Rt(e);if(t.json){console.log(JSON.stringify({shell:l??null,nav:s,route:r,keyboard:c},null,2));return}let m=[];if(l){let p=l.activeApp??l.state??"<none>",h=l.showSwitcher?" (app switcher open)":"",x=typeof l.launchProgress=="number"&&l.launchProgress<.98?` launching (${Math.round(l.launchProgress*100)}%)`:"";m.push(`shell: ${p}${h}${x}`)}else m.push("shell: <unavailable>");if(s){let p=s.transitionPhase!=="idle"?` (${s.transitionPhase}, ${s.activeTransitionCount} active)`:"";if(m.push(`nav: phase=${s.transitionPhase}${p}`),s.screens.length===0)m.push(" <no registered screens \u2014 app may not use react-native-screens>");else for(let h of s.screens){let x=h.isActive?"\u25B6":" ",b=h.routeName?` ${h.routeName}`:"",v=h.headerHeight>0?` header=${h.headerHeight}`:"",F=h.largeTitleState&&h.largeTitleState!=="expanded"?` large-title=${h.largeTitleState}`:"";m.push(` ${x} #${h.id}${b}${v}${F}`)}}else m.push("nav: <runtime not available>");if(m.push(`route: ${r?.currentPath??"<unavailable>"}`),r?.coveringPath&&m.push(`covered: a presented screen (${r.coveringPath}) is above this route`),c&&c.visible){let p=c.spec?.keyboardType??"default",h=c.spec?.returnKeyType??"default";m.push(`keyboard: visible (${p}, return=${h}, mode=${c.mode??"?"})`)}else m.push("keyboard: hidden");console.log(m.join(`
|
|
460
|
+
`))}async function io(e){let{bridge:t,args:s,positional:r}=e,c=r[1]?Number(r[1])*1e3:3e3,l=s.includes("--strict"),{elapsed:m,settled:p}=await se({bridge:t,maxMs:c,strict:l});console.log(p?` settled in ${m}ms`:` timed out after ${m}ms (may still be animating)`)}async function ao(e){let t=e.positional[1]?Number(e.positional[1]):.5;(!Number.isFinite(t)||t<0)&&(console.error(e.inspectUsage("sleep","[seconds]")),process.exit(1)),await oe(t*1e3),console.log(` slept ${t}s`)}async function lo(e){let{bridge:t,args:s,positional:r}=e,c=s.includes("--boxes"),l=r[1]?Number(r[1]):c?50:5,{tree:m}=await ft(t,l,c?{format:"boxes"}:void 0);if(D(s)){A({depth:l,tree:m??null});return}console.log(typeof m=="string"?m:JSON.stringify(m,null,2))}async function co(e,t={args:[]}){let s=await gt(e);if(D(t.args)){A(s);return}console.log(s.url)}async function uo(e){let{wsPort:t,commandTimeoutMs:s,simId:r,simIdSource:c,positional:l}=e,m=l[1]?Number(l[1]):30,p=Math.max(1e3,(Number.isFinite(m)?m:30)*1e3),h=Math.max(1,Math.ceil(p/500));console.log(" waiting for sim reconnect...");let x=await Pt(t,s,r,{attempts:h,simIdSource:c});x||(console.error(" timed out waiting for sim reconnect"),process.exit(1)),x.bridge.close(),Re({source:"inspect wait",step:{wait:p},summary:`wait ${Math.round(p/1e3)}s`}),console.log(` ready: ${x.count} nodes`)}var po=new Set(["app-launch","toast","keyboard","screen","flow-step","route","alert","actionsheet","picker","notification","fetch","console","shell","scroll","gesture","text-input","react-commit","animation","reanimated"]);function _e(e,t){let s=e.indexOf(t);if(s>=0&&s+1<e.length)return e[s+1]}function ps(e,t){if(!t.filter&&!t.equals)return!0;let s=e.data,r=[];if(s&&typeof s=="object")for(let l of["url","displayUrl","message","name","activeName","path","pathname","title","phase","event","type","kind"]){let m=s[l];typeof m=="string"&&m.length>0&&r.push(m)}let c=r.join(" ");return t.equals?r.some(l=>l===t.equals):t.filter?c.toLowerCase().includes(t.filter.toLowerCase()):!0}async function mo(e){let{bridge:t,args:s,positional:r,inspectUsage:c}=e,l=r[1];l||(console.error(c("wait event","<kind> [--max-ms 5000] [--filter <substring>] [--equals <exact>] [--since now|cursor]")),process.exit(1)),po.has(l)||console.error(` warning: '${l}' is not a known timeline kind \u2014 waiting anyway. known: ${[...po].sort().join(", ")}`);let m=_e(s,"--max-ms"),p=m&&Number.isFinite(Number(m))?Math.max(100,Number(m)):5e3,h=_e(s,"--filter"),x=_e(s,"--equals"),b=_e(s,"--since")??"now",v=s.includes("--json"),F=Date.now(),N=F+p,j=200,R=F;for(;Date.now()<N;){let q={kinds:[l],since:b==="cursor"?void 0:R,limit:50},P=await t.send({type:"evaluate",code:`(async () => {
|
|
461
461
|
const t = window.SootSim?.bridges?.timeline
|
|
462
462
|
if (!t) return { ok: false, error: 'timeline bridge missing' }
|
|
463
463
|
return { ok: true, result: await t.recent(${JSON.stringify(q)}) }
|
|
464
|
-
})()`});(!P||!P.ok)&&(console.error(` could not query timeline: ${P&&"error"in P?P.error:"unknown"}`),process.exit(1));let
|
|
464
|
+
})()`});(!P||!P.ok)&&(console.error(` could not query timeline: ${P&&"error"in P?P.error:"unknown"}`),process.exit(1));let _=P.result.events??[];for(let J of _)if(ps(J,{filter:h,equals:x})){let U=Date.now()-F;console.log(v?JSON.stringify({found:!0,elapsedMs:U,event:J}):` ${l} event after ${U}ms${h?` (filter: ${h})`:""}${x?` (equals: ${x})`:""}`);return}P.result.watermark&&P.result.watermark>R&&(R=P.result.watermark),await new Promise(J=>setTimeout(J,j))}let d=Date.now()-F;v?console.log(JSON.stringify({found:!1,elapsedMs:d,kind:l,filter:h,equals:x})):console.error(` \u26A0 wait event ${l} timed out after ${d}ms${h?` (filter: ${h})`:""}${x?` (equals: ${x})`:""}`),process.exit(1)}async function fo(e){let{bridge:t,args:s}=e,r=s.includes("--strict"),c=Ie(s,3e3),{elapsed:l,settled:m}=await se({bridge:t,maxMs:c,strict:r});m?console.log(` idle in ${l}ms`):(console.error(` \u26A0 wait idle timed out after ${l}ms (may still be animating)`),process.exit(1))}async function go(e){let{bridge:t,args:s}=e,r=Ie(s,2e4),{ready:c,elapsedMs:l,nodes:m,targets:p,liveFrameActive:h,liveFrameChannels:x,flag:b,loadingText:v,externalReady:F,externalError:N,suppressedEntryError:j,errors:R,bridgeError:d}=await $t(t,r,{onProgress(P){console.error(` still waiting after ${P.elapsedMs}ms \u2014 ${Le(P)} (nodes: ${P.nodes}, targets: ${P.targets}, live surfaces: ${P.liveFrameActive?P.liveFrameChannels:0}, errors: ${P.errors})`)}});if(c){let P=r-l,_=Math.max(100,Math.min(1e4,P)),J=await se({bridge:t,maxMs:_,pollMs:32,stablePolls:2});J.settled||(console.error(` \u26A0 wait ready timed out after ${l+J.elapsed}ms \u2014 app mounted but did not settle (nodes: ${m}, targets: ${p})`),process.exit(1)),console.log(` ready in ${l+J.elapsed}ms: ${m} nodes, ${p} targets${h?`, ${x} live surfaces`:""}`);return}let q=Le({externalError:N,loadingText:v,externalReady:F,flag:b,targets:p,suppressedEntryError:j,bridgeError:d});console.error(` \u26A0 wait ready timed out after ${l}ms \u2014 ${q} (nodes: ${m}, targets: ${p}, live surfaces: ${h?x:0}, errors: ${R})`),process.exit(1)}async function yo(e){let{bridge:t,args:s,positional:r,inspectUsage:c}=e,l=r[1];l||(console.error(c("wait selector","<testid> [--max-ms 5000] [--gone]")),process.exit(1));let m=s.indexOf("--max-ms"),p=m>=0&&s[m+1]?Math.max(100,Number(s[m+1])):5e3,h=s.includes("--gone"),{found:x,node:b,elapsed:v}=await St(t,l,p,{gone:h});if(h){x?console.log(` #${l} gone after ${v}ms`):(console.error(` \u26A0 wait selector #${l} --gone timed out after ${v??p}ms (still present)`),process.exit(1));return}if(x&&b){let F=b.absolutePosition?`@(${Math.round(b.absolutePosition.x)},${Math.round(b.absolutePosition.y)})`:"",N=b.layout?`${Math.round(b.layout.width)}x${Math.round(b.layout.height)}`:"?x?";console.log(` found #${l} in ${v}ms ${N} ${F}`)}else console.error(` \u26A0 wait selector #${l} timed out after ${v??p}ms`),process.exit(1)}function Mo(e){return e==null?"\u2014":e<1024?`${e}B`:e<1024*1024?`${(e/1024).toFixed(1)}K`:`${(e/1024/1024).toFixed(1)}M`}function No(e){return e==null?" \u2026":e<1e3?`${e}ms`.padStart(5):`${(e/1e3).toFixed(2)}s`.padStart(5)}function ho(){process.stderr.write(` the sim is not responding. recover it with:
|
|
465
465
|
rnxsim close --sim <id> # force-close the wedged sim
|
|
466
466
|
rnxsim list # confirm it's gone
|
|
467
|
-
`)}async function
|
|
467
|
+
`)}async function $e(e,t){let s=await e.send({type:"perform",steps:[t]}),r=s?.steps?.[0],c=r?.error??s?.error;return{ok:s?.ok===!0,value:r?.value,...c?{error:c}:{}}}async function fs(e){try{return await e.send({type:"evaluate",code:"1"},{timeoutMs:3e3}),!0}catch{return!1}}async function gs(e,t){try{let s=await e.send({type:"evaluate",code:`(async () => {
|
|
468
468
|
const t = window.__sootsimTest
|
|
469
469
|
if (!t || typeof t.queryAll !== 'function') return []
|
|
470
470
|
try {
|
|
@@ -483,9 +483,9 @@ import{b as Bt,c as Ct}from"./chunk-OHAZNXLK.js";import{a as de}from"./chunk-GGR
|
|
|
483
483
|
} catch {
|
|
484
484
|
return []
|
|
485
485
|
}
|
|
486
|
-
})()`});if(!Array.isArray(s)||s.length===0)return;let
|
|
487
|
-
`).slice(0,5);for(let
|
|
488
|
-
`),s){let h=(Array.isArray(s.compositor)?s.compositor:[]).reduce((
|
|
486
|
+
})()`});if(!Array.isArray(s)||s.length===0)return;let r=t.toLowerCase(),c=s.map(l=>({id:l,score:ys(r,l.toLowerCase())})).filter(l=>l.score<r.length+4).sort((l,m)=>l.score-m.score).slice(0,5);if(c.length===0)return;console.error(" similar testIDs:");for(let l of c)console.error(` ${l.id}`)}catch{}}function ys(e,t){if(t===e)return 0;if(t.includes(e))return 1;if(e.includes(t))return 2;let s=0;for(;s<e.length&&s<t.length&&e[s]===t[s];)s+=1;return hs(e,t)-s}function hs(e,t){if(e===t)return 0;if(!e.length)return t.length;if(!t.length)return e.length;let s=new Array(t.length+1),r=new Array(t.length+1);for(let c=0;c<=t.length;c++)s[c]=c;for(let c=1;c<=e.length;c++){r[0]=c;for(let m=1;m<=t.length;m++)r[m]=Math.min(s[m]+1,r[m-1]+1,s[m-1]+(e[c-1]===t[m-1]?0:1));let l=s;s=r,r=l}return s[t.length]}function bs(e){return e.error?"err":e.status==null?" \u2026 ":String(e.status)}function bo(e){return e.externalError?`guest app errored: ${e.externalError}`:e.loadingText?`still showing "${e.loadingText}"`:e.externalReady===!1?"guest app is still loading":e.flag!==!0?"guest app has not emitted sootsim:externalAppReady":e.targets<=0?"ready flag emitted but no visible app content is inspectable yet":"node tree is still changing"}function wo(e){let t=ae(e.startTs),s=bs(e).padEnd(3),r=e.method.padEnd(5),c=Mo(e.size).padStart(6),l=No(e.durationMs);console.log(` [${t}] ${s} ${r} ${c} ${l} ${e.displayUrl}`),e.error&&console.log(` error: ${e.error}`)}function ws(e){let t=[["id",e.id],["source",e.source],["kind",e.kind],["method",e.method],["status",e.error?`error: ${e.error}`:`${e.status??"\u2014"} ${e.statusText??""}`.trim()],["url",e.url],["started",ae(e.startTs)],["duration",No(e.durationMs).trim()],["size",Mo(e.size)],["content-type",e.type??"\u2014"]];for(let[s,r]of t)console.log(` ${s.padEnd(13)} ${r}`)}var xs={error:"\x1B[31m",warn:"\x1B[33m",info:"\x1B[36m",debug:"\x1B[35m",log:"\x1B[37m"},xo="\x1B[0m",$s="\x1B[2m";function $o(e,t){let s=ae(e.ts),r=e.level.toUpperCase().padEnd(5),c=e.args.join(" ");if(t){let l=xs[e.level];console.log(` ${$s}[${s}]${xo} ${l}${r}${xo} ${c}`)}else console.log(` [${s}] ${r} ${c}`);if(e.stack&&e.level==="error"){let l=e.stack.split(`
|
|
487
|
+
`).slice(0,5);for(let m of l)console.log(` ${m.trim()}`)}}var Ss=120;async function So(e,t){let s=e.find((F,N)=>e[N-1]==="--id"),r=e.find((F,N)=>e[N-1]==="--text");if(s||r){let F=await t.send({type:"evaluate",code:At({id:s,text:r})});if(!F)throw new Error(s?`no node with id "${s}"`:`no node matching text "${r}"`);let{x:N,y:j,w:R,h:d}=F;return{x:N,y:j,w:R,h:d}}let c=e.find((F,N)=>e[N-1]==="--area");if(c){let F=c.split(",").map(q=>Number(q.trim()));if(F.length!==4||F.some(q=>!Number.isFinite(q)))throw new Error(`--area expects x,y,w,h (got "${c}")`);let[N,j,R,d]=F;return{x:N,y:j,w:R,h:d}}let l=F=>{let N=e.find((R,d)=>e[d-1]===F);if(N==null)return null;let j=Number(N);return Number.isFinite(j)?j:null},m=l("--x"),p=l("--y"),h=l("--w"),x=l("--h");if(m!=null||p!=null||h!=null||x!=null)return{x:m??0,y:p??0,w:h??1,h:x??1};let v=e.filter((F,N)=>N>0&&!F.startsWith("-")&&e[N-1]!=="--output"&&e[N-1]!=="--area"&&e[N-1]!=="--id"&&e[N-1]!=="--text"&&e[N-1]!=="--x"&&e[N-1]!=="--y"&&e[N-1]!=="--w"&&e[N-1]!=="--h").map(Number).filter(F=>Number.isFinite(F));if(v.length>=2){let[F,N,j=1,R=1]=v;return{x:F,y:N,w:j,h:R}}return null}function vo(e,t){if(!t||typeof t!="object")return;console.log(""),console.log(` render profile \u2014 ${e} (per painted frame):`),console.log(` node visits: ${t.nodeVisitsPerFrame}`),console.log(` boundaries: ${t.recordsPerFrame} records (${t.avgBoundaryRecordMs}ms) / ${t.replaysPerFrame} replays`);let s=[t.boundaryRecordsInvalidated?`invalidated ${t.boundaryRecordsInvalidated}`:"",t.boundaryRecordsOrigin?`moved ${t.boundaryRecordsOrigin}`:"",t.boundaryRecordsScheme?`first-record ${t.boundaryRecordsScheme}`:""].filter(Boolean).join(" \xB7 ");s&&console.log(` why recorded: ${s}`),t.prewarmRecords&&console.log(` pre-recorded: ${t.prewarmRecords} boundaries at idle (${Number(t.prewarmRecordMs).toFixed(1)}ms total)`),console.log(` raster tier: ${t.rasterPromotionsPerFrame} promotions / ${t.rasterBlitsPerFrame} blits`);let r=[t.rasterRejectRebuild?`rebuild ${t.rasterRejectRebuild}`:"",t.rasterRejectLinear?`linear ${t.rasterRejectLinear}`:"",t.rasterRejectAnimated?`animated ${t.rasterRejectAnimated}`:"",t.rasterRejectTransform?`transform ${t.rasterRejectTransform}`:"",t.rasterRejectOpacity?`opacity ${t.rasterRejectOpacity}`:"",t.rasterRejectCacheable?`cacheable ${t.rasterRejectCacheable}`:"",t.rasterRejectBounds?`bounds ${t.rasterRejectBounds}`:"",t.rasterRejectPixels?`pixels ${t.rasterRejectPixels}`:"",t.rasterRejectBudget?`budget ${t.rasterRejectBudget}`:"",t.rasterWarming?`warming ${t.rasterWarming}`:""].filter(Boolean).join(" \xB7 ");r&&(console.log(` raster skips: ${r} (total across run)`),t.rasterRejectAlsoBlocked&&console.log(` ${"".padEnd(12)} ${t.rasterRejectAlsoBlocked} of those also fail a later gate \u2014 widening the named gate cannot promote them`)),console.log(` blur: ${t.avgBlurMs}ms`),(t.glassDownsampleActive||t.glassBackdropCacheMisses)&&console.log(` glass: ${t.glassDownsampleFactor}x downsample (${t.glassDownsampledDraws} draws) \xB7 cache ${t.glassBackdropCacheHits} hits / ${t.glassBackdropCacheMisses} misses / ${t.glassBackdropCacheInvalidations} invalidations`),console.log(` draw calls: text ${t.textDrawsPerFrame} \xB7 image ${t.imageDrawsPerFrame} \xB7 path ${t.pathDrawsPerFrame} \xB7 saveLayer ${t.saveLayersPerFrame}`)}function ko(e){let t=e.avgMs>0?(1e3/e.avgMs).toFixed(1):"?",s=e.jank&&typeof e.jank=="object"?e.jank:null;if(console.log(` shell frame profile:
|
|
488
|
+
`),s){let h=(Array.isArray(s.compositor)?s.compositor:[]).reduce((x,b)=>x+(b.jankPaints??0),0);console.log(` health: ${s.detected?"jank or cadence gaps observed":"no jank or cadence gaps observed"} \xB7 shell ${s.shell?.jankFrames??0} \xB7 compositor ${h} \xB7 host clock gaps ${s.hostGaps??0}`),console.log(" series: independent worker clocks, no per-frame pairing")}if(console.log(` painted frames: ${e.frames}${e.skippedFrames?` (+${e.skippedFrames} skipped idle ticks)`:""}`),console.log(` shell work avg: ${e.avgMs}ms (${t} fps) \xB7 worst observed ${e.maxMs}ms`),console.log(` shell p50/95/99:${e.p50} / ${e.p95} / ${e.p99} ms`),s){console.log(` shell jank: ${s.shell?.jankFrames??0}/${s.shell?.sampledFrames??0} (${s.shell?.jankPct??0}%) >16.67ms \xB7 max ${s.shell?.maxMs??0}ms`);for(let p of Array.isArray(s.compositor)?s.compositor:[])console.log(` ${String(p.surfaceId).padEnd(12)} ${p.jankPaints}/${p.sampledPaints} compositor paints (${p.jankPct}%) >16.67ms \xB7 max ${p.maxMs}ms`)}else console.log(` jank: ${e.jankFrames} frames (${e.jankPct}%) >16.67ms`);console.log(` avg per frame: overlay ${e.avgOverlayMs}ms \xB7 aux ${e.avgAuxMs}ms \xB7 layout ${e.avgLayoutMs}ms`);let r=e.cadence;r&&typeof r=="object"&&(console.log(""),console.log(` cadence (frame delivery, ${r.vsyncTicks} vsync ticks):`),console.log(` display clock: ${r.displayHz}hz \xB7 host rAF interval p50 ${r.hostIntervalP50} / p95 ${r.hostIntervalP95} / max ${r.hostIntervalMax} ms${r.hostGaps?` \xB7 ${r.hostGaps} gaps >1.5x (host rAF starved)`:""}`),console.log(` delivery lag: p50 ${r.deliveryLagP50} / p95 ${r.deliveryLagP95} / max ${r.deliveryLagMax} ms (vsync postMessage \u2192 shell receipt)`),console.log(` paint interval: p50 ${r.paintIntervalP50} / p95 ${r.paintIntervalP95} / max ${r.paintIntervalMax} ms${r.idleBreaks?` \xB7 ${r.idleBreaks} idle breaks excluded`:""}`));let c=e.compositorCadence;if(c&&typeof c=="object"){console.log(` compositor rAF: p50 ${c.p50} / p95 ${c.p95} / max ${c.max} ms \xB7 ${c.gaps} gaps >1.5x`);let p=(h,x)=>{x?.count&&console.log(` ${h}: ${x.count} samples \xB7 p50 ${x.p50.toFixed(2)} / p95 ${x.p95.toFixed(2)} / max ${x.max.toFixed(2)} ms`)};p("engine-empty rAF",c.phases?.uninterruptedEngineEmpty),p("rAF with CanvasKit flush",c.phases?.withCanvaskitFlush),p("rAF after CanvasKit flush",c.phases?.afterCanvaskitFlush),p("CanvasKit submission",c.canvaskitSubmission)}let l=Array.isArray(e.auxSurfaces)?e.auxSurfaces:[];if(l.length>0){console.log(""),console.log(" surfaces (last 100 frames):");for(let p of l)console.log(` ${String(p.surfaceId).padEnd(10)} ${String(p.frames).padStart(4)} paints avg ${p.avgMs}ms (layout ${p.avgLayoutMs}, render ${p.avgRenderMs}, flush ${p.avgFlushMs}) max ${p.maxMs}ms`),typeof p.gpuCacheBytes=="number"&&typeof p.gpuCacheLimitBytes=="number"&&console.log(` ${"".padEnd(10)} gpu cache ${(p.gpuCacheBytes/1024/1024).toFixed(1)}MB/${(p.gpuCacheLimitBytes/1024/1024).toFixed(1)}MB`)}vo("shell worker",e.renderProfile),vo("compositor worker",e.compositorRenderProfile);let m=Array.isArray(e.worstFrames)?e.worstFrames:[];if(m.length>0){console.log(""),console.log(" worst observations (shell and compositor series are unpaired):");for(let p of m){if(p.source==="compositor"){console.log(` ${String(p.totalMs).padStart(7)}ms compositor ${p.surfaceId} paint ${p.paint} \xB7 layout ${p.layoutMs} \xB7 render ${p.renderMs} \xB7 flush ${p.flushMs}`);continue}let h=(p.auxSurfaces??[]).map(x=>`${x.surfaceId} ${x.totalMs}ms (layout ${x.layoutMs}, render ${x.renderMs})`).join(" \xB7 ");console.log(` ${String(p.totalMs).padStart(7)}ms overlay ${p.overlayMs} \xB7 aux ${p.auxMs} \xB7 layout ${p.layoutMs}${h?` [${h}]`:""}`)}}}async function Ae(e,t,s){let r=Date.now()+t,c=await ue(e,t);for(;;){if(s(c))return{settled:!0,state:c};if(Date.now()>=r)return{settled:!1,state:c};await oe(16),c=await ue(e)}}async function st(e){return e.send({type:"evaluate",code:`(async () => {
|
|
489
489
|
const kb = window.__sootsimKeyboard
|
|
490
490
|
const test = window.__sootsimTest
|
|
491
491
|
if (!kb) return { error: 'keyboard bridge not available' }
|
|
@@ -524,7 +524,7 @@ import{b as Bt,c as Ct}from"./chunk-OHAZNXLK.js";import{a as de}from"./chunk-GGR
|
|
|
524
524
|
frame: runtimeSnapshot?.keyboard?.frame ?? null,
|
|
525
525
|
focusedRect: runtimeSnapshot?.focused?.rect ?? null,
|
|
526
526
|
}
|
|
527
|
-
})()`}).then(t=>
|
|
527
|
+
})()`}).then(t=>tt(t))}function vs(e,t,s){if(!e.visible)return!1;let r=e.focusedInput;return!(t&&r&&!(r.testID===t||r.id===t)||s!==null&&we(e)!==s)}async function ks(e,t=600,s={}){let r=Date.now()+t;for(;Date.now()<=r;){let c=await st(e);if(vs(c,s.targetId??null,s.secureTextEntry??null))return c;await oe(30)}return st(e)}async function De(e,t){let s=await st(e);if(s.visible&&(s.focusedInput||s.hostedEditorFocused))return s;s.visible&&(console.error(` ${t} requires a focused editable control. the iOS keyboard is visible, but no input owns focus.`),process.exit(1)),console.error(` ${t} requires the iOS keyboard to be visible. focus an input first with rnxsim do tap-id/tap-text or rnxsim do type-into.`),process.exit(1)}async function Io(e,t,s){return t==="appearance"?e.send({type:"evaluate",code:`(async () => {
|
|
528
528
|
const requested = ${JSON.stringify(s??"toggle")}
|
|
529
529
|
// the engine owns toggle + auto resolution (settingsStore is the single
|
|
530
530
|
// source of truth). never infer the current scheme client-side \u2014 the old
|
|
@@ -547,26 +547,26 @@ import{b as Bt,c as Ct}from"./chunk-OHAZNXLK.js";import{a as de}from"./chunk-GGR
|
|
|
547
547
|
})()`}):e.send({type:"evaluate",code:`(async () => {
|
|
548
548
|
window.dispatchEvent(new CustomEvent('sootsim:shake'))
|
|
549
549
|
return { ok: true, action: 'shake' }
|
|
550
|
-
})()`})}function
|
|
551
|
-
`),process.exit(0))}if(
|
|
552
|
-
`),process.exit(0))}let o=
|
|
550
|
+
})()`})}function Is(e){let t={Enter:"return",NumpadEnter:"return",Backspace:"delete",Delete:"delete",Space:"space",ShiftLeft:"shift",ShiftRight:"shift"};if(t[e])return t[e];let s=e.match(/^Digit([0-9])$/);if(s)return s[1];let r=e.match(/^Key([A-Z])$/);return r?r[1].toLowerCase():null}function Ts(e){if(typeof e!="string")return null;let t=e.replace(/\s+/g," ").trim();return t?t.slice(0,80):null}function Fo(...e){for(let t of e){if(typeof t!="string")continue;let s=t.trim();if(s)return s}return null}function Ms(e){let t=e.indexOf("--node-id");if(t<0)return null;let s=e[t+1];if(!s)return null;let r=Number(s);return Number.isInteger(r)&&r>0?r:null}async function W(e,t,s){let r=Re({source:e,step:t,summary:s});r.active&&(r.replaced?console.error(` draft: replaced unkept action "${r.replaced.summary}" \u2014 \`maestro keep\` commits one action at a time`):console.error(" draft: action pending \u2014 `rnxsim maestro keep` to commit"))}function To(e,t,s){if(!s||s.hit===!1)return null;let r=Fo(s.responderTestID,s.testID);if(r)return{step:{tapOn:{id:r}},summary:`tap #${r}`};let c=Ts(s.text);return c?{step:{tapOn:c},summary:`tap "${c}"`}:{step:{tapAtCoords:{x:e,y:t}},summary:`tap @${Math.round(e)},${Math.round(t)}`}}function ot(e,t,s){let r=Fo(t?.testID,t?.id);return r?{step:{tapOn:{id:r}},summary:`tap #${r}`}:s==="id"?{step:{tapOn:{id:e}},summary:`tap #${e}`}:{step:{tapOn:e},summary:`tap "${e}"`}}async function Er(e,t){let s=e[0]==="get"||e[0]==="do"||e[0]==="debug"||e[0]==="wait"?e[0]:null,r=s?e.slice(1):e,c=lt(r,{port:t.port,commandTimeoutMs:t.timeoutMs,stripBooleanFlags:["--verbose","-v","--help","-h","--clear-state","--json","--all","--watch","-w","--strict","--no-wait","--dump","--failed","--slow","--tail","-f","--interactive-targets","--actions","--internal","--compact","--no-xy","--no-clipped","--include-occluded"],stripValueFlags:["--output","--nth","--index","--testid","--test-id","--text","--node-id","--max-ms","--filter","--limit","--level","--threshold","--equals","--since","--testid-like","--only","--subtree"]}),l=c.positional,m=l[0],p=s==="get"||s==="do"||s==="debug"||s==="wait"?s:"inspect",h=typeof r[0]=="string"&&nt.has(r[0]),x=h?r[0]:null,b=$=>t.internalPerfCommand&&$==="perf"?`rnxsim perf ${t.internalPerfCommand}`:h&&$===r[0]?`rnxsim ${$}`:`rnxsim ${p} ${$}`,v=($,o)=>` usage: ${b($)}${o?` ${o}`:""}`;if(!m||e.includes("--help")||e.includes("-h")){let $={bridgePort:7668,defaultShellUrl:it};if(p==="do"||p==="get"||p==="debug"||p==="wait"){let i=Be(p,$);i&&(console.log(`${i}
|
|
551
|
+
`),process.exit(0))}if(x==="shell"){let i=Ce("shell",$);i&&(console.log(`${i}
|
|
552
|
+
`),process.exit(0))}let o=Ce("inspect",$),n=["do","get","debug","wait"].map(i=>Be(i,$)).filter(i=>i!=null).join(`
|
|
553
553
|
|
|
554
554
|
`);console.log(`${o??""}
|
|
555
555
|
|
|
556
556
|
${n}
|
|
557
|
-
`),process.exit(0)}let F=c.wsPort,N=c.simId,j=c.simIdSource,R=c.commandTimeoutMs;if(p==="get"&&
|
|
558
|
-
`);let n=Math.max(...o.map(a=>a.id.length),6),
|
|
559
|
-
`)}catch{}}function O(
|
|
560
|
-
console: ${
|
|
557
|
+
`),process.exit(0)}let F=c.wsPort,N=c.simId,j=c.simIdSource,R=c.commandTimeoutMs;if(p==="get"&&m==="diagnosis"){let $=r.indexOf("diagnosis"),o=$>=0?[...r.slice(0,$),...r.slice($+1)]:r,{runDiagnose:n}=await import("./diagnose-3QX7W5RW.js"),i=await n(["recent",...o],t);process.exitCode=i;return}if(p==="do"&&m==="scan"){let{runCamera:$}=await import("./camera-UGYSSLIK.js");process.exitCode=await $(r,{port:t.port});return}if(m==="list"&&r.some($=>$==="--drivers"||$==="-D")){let{buildDriverListRows:$}=await import("./drivers-EPIEFF7P.js"),o=$();console.log(` available drivers (${o.length}):
|
|
558
|
+
`);let n=Math.max(...o.map(a=>a.id.length),6),i=Math.max(...o.map(a=>a.kind.length),4);for(let a of o){let u=a.available?"\u2713":"\u2717",f=a.id.padEnd(n),g=a.kind.padEnd(i);console.log(` ${u} ${f} ${g} ${a.description}`),a.available&&a.detail?console.log(` ${a.detail}`):!a.available&&a.reason&&console.log(` unavailable: ${a.reason}`)}return}let d=ct(c),q=N||"default",P=new Set(["errors","warnings","requests","js","eval","reload","globals","perf","storage-clear","list","wait","sleep"]),_=200;function J($){let o=$.replace(/\s+/g," ").trim();if(!o)return"";if(/^<(!doctype html|html|\?xml)|<body[\s>]/i.test(o)){let i=/<title[^>]*>([^<]+)<\/title>/i.exec($)?.[1]?.trim(),a=/<body[^>]*>([\s\S]*?)<\//i.exec($)?.[1]?.replace(/<[^>]+>/g," ").replace(/\s+/g," ").trim().slice(0,80),u=i||a||"html error page";return`<html ${$.length}B> "${u}" (body elided \u2014 add --json for the full payload)`}return o.length<=_?o:`${o.slice(0,_)}\u2026 (+${o.length-_} more bytes)`}function U($){let o=$.displayUrl||$.url;return $.status!=null?`${$.method} ${o} -> ${$.status}${$.statusText?` ${$.statusText}`:""}`:$.error?`${$.method} ${o} -> ${$.error}`:`${$.method} ${o}`}async function I($){let o=fe()?400:200;try{let{settled:n,elapsed:i}=await se({bridge:$,maxMs:o,pollMs:32,stablePolls:2});n||process.stderr.write(` \u26A0 auto-wait timed out after ${i??o}ms \u2014 next command may see mid-animation state. use \`rnxsim do settle\` for a longer wait.
|
|
559
|
+
`)}catch{}}function O($,o){if(o.result?.reason==="offscreen"){let{x:n,y:i,screen:a}=o.result;console.error(` tap failed: ${$} resolved to (${Math.round(n)},${Math.round(i)}), outside the ${a?.width}x${a?.height} screen`),console.error(" the node exists but is scrolled out of view \u2014 scroll it on-screen first (rnxsim do scroll / swipe), then tap.");return}console.error(` tap failed: ${$} stayed visible but did not receive a hittable press after ${o.attempts} attempt${o.attempts===1?"":"s"}`),o.result&&console.error(` last result: ${JSON.stringify(o.result)}`)}async function H(){try{return await d.send({type:"evaluate",code:`(() => ({
|
|
560
|
+
console: ${Te},
|
|
561
561
|
requests: window.__sootsimTest?.getRequestCounts?.() || null,
|
|
562
|
-
}))()`})||{console:null,requests:null}}catch{return{console:null,requests:null}}}async function K(
|
|
563
|
-
network: ${n} failed request${n===1?"":"s"}`),console.log(` inspect: ${b("requests")} 5`)
|
|
562
|
+
}))()`})||{console:null,requests:null}}catch{return{console:null,requests:null}}}async function K($={}){let o=$.counts!==void 0?$.counts:await X(d,"getRequestCounts");if(!o||typeof o!="object")return;let n=Math.max(0,Number(o.failed)||0);if(n===0||!$.includeTail&&!Xe("requests",q,String(n))||(console.log(`
|
|
563
|
+
network: ${n} failed request${n===1?"":"s"}`),console.log(` inspect: ${b("requests")} 5`),!$.includeTail))return;let i=await X(d,"getFailedRequests",5);if(!(!Array.isArray(i)||i.length===0)){console.log(`
|
|
564
564
|
recent failed requests:
|
|
565
|
-
`);for(let a of
|
|
566
|
-
note: ${o.label} is open${n} \u2014 taps/drags hit it, not the app`)}}async function te(
|
|
567
|
-
console: ${u.join(", ")}`),console.error(` inspect: ${b("errors")} 5`),a>0&&console.error(` inspect: ${b("warnings")} 5`)
|
|
565
|
+
`);for(let a of i){let u=ae(a.timestamp);console.log(` [${u}] ${U(a)}`),a.responseBody?console.log(` ${J(a.responseBody)}`):a.error&&console.log(` ${a.error}`)}}}function ee($){for(let o of $){let n=o.title?` (\u201C${o.title}\u201D)`:"";console.error(`
|
|
566
|
+
note: ${o.label} is open${n} \u2014 taps/drags hit it, not the app`)}}async function te($={}){let o=$.counts!==void 0?$.counts:await d.send({type:"evaluate",code:Te});if(!o||typeof o!="object")return;let n=o,i=Math.max(0,Number(n.errors)||0),a=Math.max(0,Number(n.warnings)||0);if(i===0&&a===0||!$.includeTail&&!Xe("console",q,`${i}:${a}`))return;let u=[];if(i>0&&u.push(`${i} console error${i===1?"":"s"}`),a>0&&u.push(`${a} console warning${a===1?"":"s"}`),console.error(`
|
|
567
|
+
console: ${u.join(", ")}`),console.error(` inspect: ${b("errors")} 5`),a>0&&console.error(` inspect: ${b("warnings")} 5`),!$.includeTail||i===0)return;let f=await ge(d,5);if(!(!Array.isArray(f)||f.length===0)){console.error(`
|
|
568
568
|
recent console errors:
|
|
569
|
-
`);for(let g of
|
|
569
|
+
`);for(let g of f){let w=ae(g.timestamp),y=Array.isArray(g.args)?g.args.map(k=>typeof k=="object"?JSON.stringify(k):String(k)).join(" "):String(g);console.error(` [${w}] ${y}`)}}}let ie=["console","fetch","toast","alert","notification","screen","app-launch","keyboard","route","actionsheet","picker","shell","scroll","gesture","text-input","animation","reanimated"];async function Se($){let o=rt(),n=null;try{n=await ut($,`(() => {
|
|
570
570
|
const tl = window.SootSim && window.SootSim.bridges && window.SootSim.bridges.timeline
|
|
571
571
|
if (!tl || typeof tl.summary !== 'function') return null
|
|
572
572
|
const cursorKey = ${JSON.stringify(o)}
|
|
@@ -582,9 +582,9 @@ ${n}
|
|
|
582
582
|
}
|
|
583
583
|
}
|
|
584
584
|
return summary ? { summary, consoleSplit } : null
|
|
585
|
-
})()`)}catch{return}if(!n||!n.summary||!n.summary.total)return;let
|
|
586
|
-
since last: ${a.join(" \xB7 ")} \u2014 rnxsim what-happened`),n.summary.lastAt))try{await ce(
|
|
587
|
-
`);for(let n of o){let
|
|
585
|
+
})()`)}catch{return}if(!n||!n.summary||!n.summary.total)return;let i=n.summary.byKind??{},a=[],u=new Set;for(let f of ie){let g=i[f];if(g)if(u.add(f),f==="console"&&n.consoleSplit){let{error:w,warn:y}=n.consoleSplit;w>0&&a.push(`${w} error${w===1?"":"s"}`),y>0&&a.push(`${y} warning${y===1?"":"s"}`)}else a.push(`${g} ${f}${g===1?"":"s"}`)}for(let[f,g]of Object.entries(i))!u.has(f)&&g&&a.push(`${g} ${f}${g===1?"":"s"}`);if(a.length!==0&&(console.error(`
|
|
586
|
+
since last: ${a.join(" \xB7 ")} \u2014 rnxsim what-happened`),n.summary.lastAt))try{await ce($,"SootSim.bridges.timeline.cursorAdvance",o,n.summary.lastAt)}catch{}}let C=new Set(["tap","double-tap","tap-text","tap-id","type","type-into","key","key-sequence","keycode","drag","swipe","long-press","touch","gesture","pinch","scroll","shell","storage-clear"]),le=new Set(["a11y","capture","count","double-tap","drag","find","gesture","layout","long-press","node","pinch","sample-color","scroll","screenshot","swipe","tap","tap-id","tap-text","touch","tree","type-into"]),ve=(e.includes("--verbose")||e.includes("-v"))&&!e.includes("--json");p==="do"&&m==="shell"&&(console.error(" `rnxsim do shell` was removed. use `rnxsim shell ...` instead."),process.exit(1)),C.has(m)&&await dt(d),le.has(m)&&await pe(d,{verbose:ve});try{let $=C.has(m)?await Ft(d):[];switch(m){case"list":{at(c.wsPort),await oo({bridge:d,simId:N,args:r});break}case"tree":{await lo({bridge:d,args:r,positional:l});break}case"a11y":{let o=await wt(d);if(!Array.isArray(o)||o.length===0){console.log(" no accessible nodes found");break}if(e.includes("--json"))console.log(JSON.stringify(o,null,2));else{console.log(` accessibility tree (${o.length} nodes):
|
|
587
|
+
`);for(let n of o){let i=[];if(i.push(`[${n.role}]`),n.label){let a=n.label.length>50?n.label.slice(0,47)+"...":n.label;i.push(`"${a}"`)}if(n.hint&&i.push(`(hint: "${n.hint}")`),n.testID&&i.push(`#${n.testID}`),n.state){let a=[];n.state.disabled&&a.push("disabled"),n.state.selected&&a.push("selected"),n.state.checked===!0&&a.push("checked"),n.state.checked==="mixed"&&a.push("mixed"),n.state.busy&&a.push("busy"),n.state.expanded===!0&&a.push("expanded"),n.state.expanded===!1&&a.push("collapsed"),a.length&&i.push(`{${a.join(", ")}}`)}n.position&&i.push(`@(${n.position.x},${n.position.y})`),n.size&&i.push(`${n.size.w}x${n.size.h}`),console.log(" "+i.join(" "))}}break}case"find":{await Zt({bridge:d,args:e,effectiveArgs:r,positional:l,inspectUsage:v});break}case"count":{await Vt(d,{args:r});break}case"keyboard":{await to(d,{json:e.includes("--json")});break}case"screens":{await ro(d,{json:e.includes("--json")});break}case"memory":{await no(d,{args:r});break}case"wait":{await uo({wsPort:F,commandTimeoutMs:R,simId:N,simIdSource:j,positional:l});break}case"sleep":{await ao({positional:l,inspectUsage:v});break}case"settle":{await io({bridge:d,args:e,positional:l});break}case"ready":{await go({bridge:d,args:e});break}case"idle":{await fo({bridge:d,args:e,positional:l});break}case"selector":{await yo({bridge:d,args:e,positional:l,inspectUsage:v});break}case"event":{await mo({bridge:d,args:e,positional:l,inspectUsage:v});break}case"layout":{let o=l[1];if(!o){await eo({bridge:d,args:r});break}let n=await d.send({type:"evaluate",code:`(async () => await window.__sootsimTest.getLayout(${JSON.stringify(o)}))()`});console.log(JSON.stringify(n,null,2));break}case"capture":case"screenshot":{let n=e.find((w,y)=>e[y-1]==="--output")||"/tmp/sootsim-inspect.png",i=await So(e,d),a={type:"screenshot"};i&&(a.crop=i);let f=(await d.send(a)).replace(/^data:image\/png;base64,/,"");i&&console.log(` area: x=${i.x} y=${i.y} w=${i.w} h=${i.h}`),(await import("fs")).writeFileSync(n,Buffer.from(f,"base64")),console.log(` saved: ${n}`);break}case"sample-color":{let o=await So(e,d);o||(console.error(v("sample-color","<x> <y> [w] [h] | --id <testID> | --text <text>")),console.error(" samples an averaged color from the canvas. coords are logical rnx units."),process.exit(1));let n=await d.send({type:"evaluate",code:Dt(o)});if(e.includes("--json"))console.log(JSON.stringify(n,null,2));else{let{r:i,g:a,b:u,a:f,hex:g,samples:w}=n,y=o.w===1&&o.h===1?`@(${o.x},${o.y})`:`@(${o.x},${o.y}) ${o.w}x${o.h}`;console.log(` ${g} rgba(${i}, ${a}, ${u}, ${f}) ${y} ${w} samples`)}break}case"node":{let o=l[1];o||(console.error(v("node","<matcher>")),console.error(" resolves testID, id, then text \u2014 dumps full node info as JSON"),process.exit(1));let n=await d.send({type:"evaluate",code:`(async () => {
|
|
588
588
|
const t = window.__sootsimTest
|
|
589
589
|
const q = ${JSON.stringify(o)}
|
|
590
590
|
let node = null
|
|
@@ -640,20 +640,10 @@ ${n}
|
|
|
640
640
|
transform,
|
|
641
641
|
parentChain,
|
|
642
642
|
}
|
|
643
|
-
})()`});console.log(JSON.stringify(n,null,2));break}case"tap":{let o=Number(l[1]),n=Number(l[2]),
|
|
644
|
-
const interact = window.__sootsimInteract
|
|
645
|
-
if (!interact?.drag) return { ok: false, reason: 'no interact.drag' }
|
|
646
|
-
const value = await interact.drag(${o}, ${n}, ${r}, ${a}, ${Math.max(1,Math.round(g))}, ${Math.max(0,Math.round(w))})
|
|
647
|
-
return { ok: !!value, value }
|
|
648
|
-
})()`});if(y?.ok){let k=Math.max(1,Math.round(Math.max(1,g)*Math.max(0,w)));await W(`inspect ${f}`,{swipe:{start:`${o}, ${n}`,end:`${r}, ${a}`,duration:k}},`${f} ${o},${n} -> ${r},${a}`)}console.log(JSON.stringify(y,null,2));break}case"pinch":{let o=Number(l[1]),n=Number(l[2]),r=Number(l[3]),a=Number(l[4]),u=Number(l[5]),m=Number(l[6]),g=Number(l[7]),w=Number(l[8]),y=l[9]?Number(l[9]):12,k=l[10]?Number(l[10]):16;(!Number.isFinite(o)||!Number.isFinite(n)||!Number.isFinite(r)||!Number.isFinite(a)||!Number.isFinite(u)||!Number.isFinite(m)||!Number.isFinite(g)||!Number.isFinite(w)||!Number.isFinite(y)||!Number.isFinite(k))&&(console.error(v("pinch","<x1> <y1> <x2> <y2> <x1'> <y1'> <x2'> <y2'> [steps] [stepMs]")),process.exit(1));let L=await d.send({type:"evaluate",code:`(async () => {
|
|
649
|
-
const interact = window.__sootsimInteract
|
|
650
|
-
if (!interact?.pinch) return { ok: false, reason: 'no interact.pinch' }
|
|
651
|
-
const value = await interact.pinch(${o}, ${n}, ${r}, ${a}, ${u}, ${m}, ${g}, ${w}, ${Math.max(1,Math.round(y))}, ${Math.max(0,Math.round(k))})
|
|
652
|
-
return { ok: !!value, value }
|
|
653
|
-
})()`});L?.ok&&await W("inspect pinch",{pinch:{from:[o,n,r,a],to:[u,m,g,w],steps:Math.max(1,Math.round(y)),stepMs:Math.max(0,Math.round(k))}},`pinch (${o},${n}) (${r},${a}) -> (${u},${m}) (${g},${w})`),console.log(JSON.stringify(L,null,2));break}case"tap-text":{let o=l[1];o||(console.error(v("tap-text","<text>")),process.exit(1));let n=z=>{let B=e.indexOf(z);return B>=0&&B+1<e.length?e[B+1]:null},r=z=>e.includes(z),a=n("--nth")??n("--index"),u=a!==null?Number(a):null;u!==null&&!Number.isFinite(u)&&(console.error(` --nth/--index requires an integer, got: ${a}`),process.exit(1));let m=n("--within"),g=n("--role"),w=r("--exact"),y=r("--first"),k=n("--min-y"),L=n("--max-y"),V=n("--min-x"),G=n("--max-x");for(let[z,B]of[["--min-y",k],["--max-y",L],["--min-x",V],["--max-x",G]])B!==null&&!Number.isFinite(Number(B))&&(console.error(` ${z} requires a number, got: ${B}`),process.exit(1));let Y=e.indexOf("--near"),_=null;if(Y>=0){let z=Number(e[Y+1]),B=Number(e[Y+2]);(!Number.isFinite(z)||!Number.isFinite(B))&&(console.error(" --near requires two numbers: --near <x> <y>"),process.exit(1)),_={x:z,y:B}}let S={exact:w,role:g,within:m,minX:V!==null?Number(V):null,maxX:G!==null?Number(G):null,minY:k!==null?Number(k):null,maxY:L!==null?Number(L):null,near:_,nth:u,first:y},T=await Yt(d,o,S,{agent:fe()}),M=T.payload;if(M?.error==="bridge-not-ready"&&(console.error(" rnxsim test bridge not ready"),process.exit(1)),M?.ambiguous){let z=M.candidates;console.error(` ambiguous: ${M.total} matches for "${o}"`);for(let B of z){let ve=B.abs?`@(${Math.round(B.abs.x)},${Math.round(B.abs.y)})`:"",Fo=B.layout?` ${B.layout.width}x${B.layout.height}`:"",Oo=B.testID?` #${B.testID}`:"",Ro=B.text?` "${B.text}"`:"",Po=B.ancestorTestIDs.length>0?` within ${B.ancestorTestIDs.slice(0,3).map(_o=>`#${_o}`).join(" > ")}`:"";console.error(` [${B.idx}] <${B.type}>${Ro}${Oo} ${ve}${Fo}${Po}`)}M.total>z.length&&console.error(` ... and ${M.total-z.length} more`),console.error(" pick one:"),console.error(" --nth <index> pick the nth match (top-to-bottom, left-to-right; negatives from end)"),console.error(" --within <testID> narrow to descendants of a node"),console.error(" --min-y / --max-y geometric filter (pixels, absolute)"),console.error(" --min-x / --max-x geometric filter (pixels, absolute)"),console.error(" --near <x> <y> pick the closest match to a point"),console.error(" --exact exact text match (default is substring)"),console.error(" --role <role> narrow to accessibilityRole"),console.error(" --first keep the old pick-first-silently behavior"),process.exit(2)}M?.nthOutOfRange&&(console.error(` not found: nth ${M.nth} of ${M.total} match${M.total===1?"":"es"} for "${o}"`),process.exit(1)),(!M||typeof M.cx!="number")&&(console.error(` not found: ${o}`),process.exit(1)),me(T.result)||(O(`text "${o}"`,T),process.exit(1));let ne=tt(o,{id:M.target?.id??null,testID:M.target?.testID??null,type:M.target?.type??null,cx:M.cx,cy:M.cy},"text");await W("inspect tap-text",ne.step,ne.summary),console.log(JSON.stringify({matched:M.match,tapped:{nodeId:M.target?.nodeId??null,id:M.target?.id??null,testID:M.target?.testID??null,type:M.target?.type??null,cx:M.cx,cy:M.cy},...M.strategy&&M.strategy!=="matched-node"?{strategy:M.strategy}:{},...M.total>1||u!==null?{nth:{index:M.idx,total:M.total}}:{},...T.attempts>1?{attempts:T.attempts}:{},result:T.result},null,2));break}case"tap-best":{let o=l[1];o||(console.error(v("tap-best","<query>")),process.exit(1));let n=await zt(d,o,{agent:fe()}),r=n.payload;r||(console.error(` tap-best: no testID or visible text matched "${o}". try \`rnxsim find --interactive-targets\` to list candidates.`),process.exit(1)),"error"in r&&(console.error(` ${r.error}`),process.exit(1)),r.strategy==="none"&&(console.error(` tap-best: no testID or visible text matched "${o}". try \`rnxsim find --interactive-targets\` to list candidates.`),process.exit(1));let a=r.node;me(n.result)||(O(`best "${o}"`,n),process.exit(1));let u=tt(o,{id:a.id,testID:a.testID,type:a.type,cx:r.cx,cy:r.cy},r.strategy==="testid"?"id":"text");await W("inspect tap-best",u.step,u.summary),console.log(JSON.stringify({matched:{strategy:r.strategy,nodeId:a.nodeId,id:a.id,testID:a.testID,type:a.type,text:a.text},tapped:{cx:r.cx,cy:r.cy},...n.attempts>1?{attempts:n.attempts}:{},result:n.result},null,2));break}case"tap-id":{let o=l[1];o||(console.error(v("tap-id","<id>")),process.exit(1));let n=await Gt(d,o,{agent:fe()}),r=n.payload;(!r||typeof r.cx!="number")&&(console.error(` not found: ${o}`),await fs(d,o),process.exit(1)),me(n.result)||(O(`id "${o}"`,n),process.exit(1));let a=tt(o,{id:r.target?.id??null,testID:r.target?.testID??null,type:r.target?.type??null,cx:r.cx,cy:r.cy},"id");await W("inspect tap-id",a.step,a.summary),console.log(JSON.stringify({matched:r.match,tapped:{nodeId:r.target?.nodeId??null,id:r.target?.id??null,testID:r.target?.testID??null,type:r.target?.type??null,cx:r.cx,cy:r.cy},...r.strategy&&r.strategy!=="matched-node"?{strategy:r.strategy}:{},...n.attempts>1?{attempts:n.attempts}:{},result:n.result},null,2));break}case"type-into":{let o=l[1],n=l.slice(2).join(" ");(!o||!n)&&(console.error(v("type-into","<id> <text>")),process.exit(1));let r=JSON.stringify(o),a=await d.send({type:"evaluate",code:`(async () => {
|
|
643
|
+
})()`});console.log(JSON.stringify(n,null,2));break}case"tap":{let o=Number(l[1]),n=Number(l[2]),i=xe(e,l);if(i){let f=await be(d,{agent:fe(),textFallback:i.mode==="text"?i.value:void 0,resolve:async()=>{let y=await Ee(d,i);return y?{cx:y.x,cy:y.y,match:{id:i.mode==="testid"?i.value:y.id??null,testID:i.mode==="testid"?i.value:y.testID??null,text:i.mode==="text"?i.value:y.text??null,type:y.type??null},target:{id:y.id??null,testID:y.testID??null,text:y.text??null,type:y.type??null}}:null}}),g=f.payload;(!g||typeof g.cx!="number")&&(console.error(` not found: ${i.value}`),i.mode==="testid"&&Q("wait-selector-for-missing-testid",i.value),process.exit(1)),me(f.result)||(O(`${i.mode} "${i.value}"`,f),process.exit(1));let w=To(g.cx,g.cy,f.result);w&&await W("inspect tap",w.step,w.summary),console.log(JSON.stringify({...f.attempts>1?{attempts:f.attempts}:{},...f.result},null,2));break}(!Number.isFinite(o)||!Number.isFinite(n))&&(console.error(v("tap","<testid> | <x> <y> | --testid <id> | --text <t>")),process.exit(1));let a=await Gt(d,o,n),u=To(o,n,a);u&&await W("inspect tap",u.step,u.summary),console.log(JSON.stringify(a,null,2));break}case"drag":case"swipe":{let o=Number(l[1]),n=Number(l[2]),i=Number(l[3]),a=Number(l[4]),u=m==="swipe"?10:12,f=m==="swipe"?8:16,g=l[5]?Number(l[5]):u,w=l[6]?Number(l[6]):f;(!Number.isFinite(o)||!Number.isFinite(n)||!Number.isFinite(i)||!Number.isFinite(a)||!Number.isFinite(g)||!Number.isFinite(w))&&(console.error(v(m,"<x1> <y1> <x2> <y2> [steps] [stepMs]")),process.exit(1));let y=await $e(d,{type:"drag",fromX:o,fromY:n,toX:i,toY:a,steps:Math.max(1,Math.round(g)),stepMs:Math.max(0,Math.round(w))});if(y?.ok){let k=Math.max(1,Math.round(Math.max(1,g)*Math.max(0,w)));await W(`inspect ${m}`,{swipe:{start:`${o}, ${n}`,end:`${i}, ${a}`,duration:k}},`${m} ${o},${n} -> ${i},${a}`)}console.log(JSON.stringify(y,null,2));break}case"pinch":{let o=Number(l[1]),n=Number(l[2]),i=Number(l[3]),a=Number(l[4]),u=Number(l[5]),f=Number(l[6]),g=Number(l[7]),w=Number(l[8]),y=l[9]?Number(l[9]):12,k=l[10]?Number(l[10]):16;(!Number.isFinite(o)||!Number.isFinite(n)||!Number.isFinite(i)||!Number.isFinite(a)||!Number.isFinite(u)||!Number.isFinite(f)||!Number.isFinite(g)||!Number.isFinite(w)||!Number.isFinite(y)||!Number.isFinite(k))&&(console.error(v("pinch","<x1> <y1> <x2> <y2> <x1'> <y1'> <x2'> <y2'> [steps] [stepMs]")),process.exit(1));let L=await $e(d,{type:"pinch",fromX1:o,fromY1:n,fromX2:i,fromY2:a,toX1:u,toY1:f,toX2:g,toY2:w,steps:Math.max(1,Math.round(y)),stepMs:Math.max(0,Math.round(k))});L?.ok&&await W("inspect pinch",{pinch:{from:[o,n,i,a],to:[u,f,g,w],steps:Math.max(1,Math.round(y)),stepMs:Math.max(0,Math.round(k))}},`pinch (${o},${n}) (${i},${a}) -> (${u},${f}) (${g},${w})`),console.log(JSON.stringify(L,null,2));break}case"tap-text":{let o=l[1];o||(console.error(v("tap-text","<text>")),process.exit(1));let n=z=>{let B=e.indexOf(z);return B>=0&&B+1<e.length?e[B+1]:null},i=z=>e.includes(z),a=n("--nth")??n("--index"),u=a!==null?Number(a):null;u!==null&&!Number.isFinite(u)&&(console.error(` --nth/--index requires an integer, got: ${a}`),process.exit(1));let f=n("--within"),g=n("--role"),w=i("--exact"),y=i("--first"),k=n("--min-y"),L=n("--max-y"),V=n("--min-x"),G=n("--max-x");for(let[z,B]of[["--min-y",k],["--max-y",L],["--min-x",V],["--max-x",G]])B!==null&&!Number.isFinite(Number(B))&&(console.error(` ${z} requires a number, got: ${B}`),process.exit(1));let Y=e.indexOf("--near"),E=null;if(Y>=0){let z=Number(e[Y+1]),B=Number(e[Y+2]);(!Number.isFinite(z)||!Number.isFinite(B))&&(console.error(" --near requires two numbers: --near <x> <y>"),process.exit(1)),E={x:z,y:B}}let S={exact:w,role:g,within:f,minX:V!==null?Number(V):null,maxX:G!==null?Number(G):null,minY:k!==null?Number(k):null,maxY:L!==null?Number(L):null,near:E,nth:u,first:y},T=await zt(d,o,S,{agent:fe()}),M=T.payload;if(M?.error==="bridge-not-ready"&&(console.error(" rnxsim test bridge not ready"),process.exit(1)),M?.ambiguous){let z=M.candidates;console.error(` ambiguous: ${M.total} matches for "${o}"`);for(let B of z){let ke=B.abs?`@(${Math.round(B.abs.x)},${Math.round(B.abs.y)})`:"",Oo=B.layout?` ${B.layout.width}x${B.layout.height}`:"",Ro=B.testID?` #${B.testID}`:"",Po=B.text?` "${B.text}"`:"",Eo=B.ancestorTestIDs.length>0?` within ${B.ancestorTestIDs.slice(0,3).map(_o=>`#${_o}`).join(" > ")}`:"";console.error(` [${B.idx}] <${B.type}>${Po}${Ro} ${ke}${Oo}${Eo}`)}M.total>z.length&&console.error(` ... and ${M.total-z.length} more`),console.error(" pick one:"),console.error(" --nth <index> pick the nth match (top-to-bottom, left-to-right; negatives from end)"),console.error(" --within <testID> narrow to descendants of a node"),console.error(" --min-y / --max-y geometric filter (pixels, absolute)"),console.error(" --min-x / --max-x geometric filter (pixels, absolute)"),console.error(" --near <x> <y> pick the closest match to a point"),console.error(" --exact exact text match (default is substring)"),console.error(" --role <role> narrow to accessibilityRole"),console.error(" --first keep the old pick-first-silently behavior"),process.exit(2)}M?.nthOutOfRange&&(console.error(` not found: nth ${M.nth} of ${M.total} match${M.total===1?"":"es"} for "${o}"`),process.exit(1)),(!M||typeof M.cx!="number")&&(console.error(` not found: ${o}`),process.exit(1)),me(T.result)||(O(`text "${o}"`,T),process.exit(1));let ne=ot(o,{id:M.target?.id??null,testID:M.target?.testID??null,type:M.target?.type??null,cx:M.cx,cy:M.cy},"text");await W("inspect tap-text",ne.step,ne.summary),console.log(JSON.stringify({matched:M.match,tapped:{nodeId:M.target?.nodeId??null,id:M.target?.id??null,testID:M.target?.testID??null,type:M.target?.type??null,cx:M.cx,cy:M.cy},...M.strategy&&M.strategy!=="matched-node"?{strategy:M.strategy}:{},...M.total>1||u!==null?{nth:{index:M.idx,total:M.total}}:{},...T.attempts>1?{attempts:T.attempts}:{},result:T.result},null,2));break}case"tap-best":{let o=l[1];o||(console.error(v("tap-best","<query>")),process.exit(1));let n=await Xt(d,o,{agent:fe()}),i=n.payload;i||(console.error(` tap-best: no testID or visible text matched "${o}". try \`rnxsim find --interactive-targets\` to list candidates.`),process.exit(1)),"error"in i&&(console.error(` ${i.error}`),process.exit(1)),i.strategy==="none"&&(console.error(` tap-best: no testID or visible text matched "${o}". try \`rnxsim find --interactive-targets\` to list candidates.`),process.exit(1));let a=i.node;me(n.result)||(O(`best "${o}"`,n),process.exit(1));let u=ot(o,{id:a.id,testID:a.testID,type:a.type,cx:i.cx,cy:i.cy},i.strategy==="testid"?"id":"text");await W("inspect tap-best",u.step,u.summary),console.log(JSON.stringify({matched:{strategy:i.strategy,nodeId:a.nodeId,id:a.id,testID:a.testID,type:a.type,text:a.text},tapped:{cx:i.cx,cy:i.cy},...n.attempts>1?{attempts:n.attempts}:{},result:n.result},null,2));break}case"tap-id":{let o=l[1];o||(console.error(v("tap-id","<id>")),process.exit(1));let n=await Yt(d,o,{agent:fe()}),i=n.payload;(!i||typeof i.cx!="number")&&(console.error(` not found: ${o}`),await gs(d,o),process.exit(1)),me(n.result)||(O(`id "${o}"`,n),process.exit(1));let a=ot(o,{id:i.target?.id??null,testID:i.target?.testID??null,type:i.target?.type??null,cx:i.cx,cy:i.cy},"id");await W("inspect tap-id",a.step,a.summary),console.log(JSON.stringify({matched:i.match,tapped:{nodeId:i.target?.nodeId??null,id:i.target?.id??null,testID:i.target?.testID??null,type:i.target?.type??null,cx:i.cx,cy:i.cy},...i.strategy&&i.strategy!=="matched-node"?{strategy:i.strategy}:{},...n.attempts>1?{attempts:n.attempts}:{},result:n.result},null,2));break}case"type-into":{let o=l[1],n=l.slice(2).join(" ");(!o||!n)&&(console.error(v("type-into","<id> <text>")),process.exit(1));let i=JSON.stringify(o),a=await d.send({type:"evaluate",code:`(async () => {
|
|
654
644
|
const t = window.__sootsimTest
|
|
655
645
|
if (!t) return null
|
|
656
|
-
const n = await (t.findByTestId(${
|
|
646
|
+
const n = await (t.findByTestId(${i}) || t.findById(${i}))
|
|
657
647
|
if (!n || !n.absolutePosition || !n.layout) return null
|
|
658
648
|
return {
|
|
659
649
|
cx: n.absolutePosition.x + (n.layout.width || 0) / 2,
|
|
@@ -665,36 +655,7 @@ ${n}
|
|
|
665
655
|
secureTextEntry: !!n.secureTextEntry,
|
|
666
656
|
placeholder: n.placeholder || null,
|
|
667
657
|
}
|
|
668
|
-
})()`});(!a||typeof a.cx!="number")&&(console.error(` not found: ${o}`),process.exit(1)),a.isTextInput||console.error(` warning: ${o} is not a text input (isTextInput: false)`);let u=await d.send({type:"tap",x:a.cx,y:a.cy,target:{id:a.id??o,testID:a.testID??o,text:null,type:a.type??null}}),
|
|
669
|
-
const interact = window.__sootsimInteract
|
|
670
|
-
if (interact?.doubleTap) {
|
|
671
|
-
return {
|
|
672
|
-
ok: !!(await interact.doubleTap(${o}, ${n}, ${u})),
|
|
673
|
-
gapMs: ${u},
|
|
674
|
-
}
|
|
675
|
-
}
|
|
676
|
-
if (!interact?.tap) {
|
|
677
|
-
return { ok: false, reason: 'no interact.tap', gapMs: ${u} }
|
|
678
|
-
}
|
|
679
|
-
const first = await interact.tap(${o}, ${n})
|
|
680
|
-
if (!first || first.hit === false) {
|
|
681
|
-
return { ok: false, reason: 'first tap missed', gapMs: ${u}, first }
|
|
682
|
-
}
|
|
683
|
-
await new Promise((resolve) => setTimeout(resolve, ${u}))
|
|
684
|
-
const second = await interact.tap(${o}, ${n})
|
|
685
|
-
return {
|
|
686
|
-
ok: !!second && second.hit !== false,
|
|
687
|
-
gapMs: ${u},
|
|
688
|
-
first,
|
|
689
|
-
second,
|
|
690
|
-
}
|
|
691
|
-
})()`});m?.ok&&await W("inspect double-tap",{doubleTapAtCoords:{x:o,y:n,gapMs:u}},`double-tap @${o},${n}`),console.log(JSON.stringify(m,null,2));break}case"long-press":{let o=Number(l[1]),n=Number(l[2]),r=$e(e,l),a=null;if(r){let y=await Pe(d,r);y||(console.error(` not found: ${r.value}`),r.mode==="testid"&&Q("wait-selector-for-missing-testid",r.value),process.exit(1)),o=y.x,n=y.y,a={id:y.id??null,testID:y.testID??null,text:y.text??null,type:y.type??null}}let u=r?l[1]:l[3],m=u?Number(u):600;(!Number.isFinite(o)||!Number.isFinite(n)||!Number.isFinite(m))&&(console.error(v("long-press","<testid> | <x> <y> [durationMs] | --testid <id>")),process.exit(1));let g=Math.max(0,Math.round(m)),w=await d.send({type:"longPress",x:o,y:n,durationMs:g,target:a});w?.ok&&await W("inspect long-press",{tapAtCoords:{x:o,y:n}},`long-press @${o},${n}`),console.log(JSON.stringify(w,null,2));break}case"touch":{let o=l[1],n=Number(l[2]),r=Number(l[3]),a=l[4]?Number(l[4]):999,u=o==="down"?"touchDown":o==="move"?"touchMove":o==="up"?"touchUp":o==="cancel"?"touchCancel":null;u||(console.error(v("touch","<down|move|up|cancel> <x> <y> [pointerId]")),process.exit(1)),o!=="cancel"&&(!Number.isFinite(n)||!Number.isFinite(r))&&(console.error(v("touch","<down|move|up|cancel> <x> <y> [pointerId]")),process.exit(1));let m=o==="down"?"tap":o==="move"?"move":null,g=m&&Number.isFinite(n)&&Number.isFinite(r)?`window.dispatchEvent(new CustomEvent('sootsim:agentAction', { detail: { type: '${m}', x: ${n}, y: ${r} } }));`:"",w=await d.send({type:"evaluate",code:`(async () => {
|
|
692
|
-
${g}
|
|
693
|
-
const interact = window.__sootsimInteract
|
|
694
|
-
if (!interact?.${u}) return { ok: false, reason: 'no interact.${u}' }
|
|
695
|
-
const value = ${o==="cancel"?`await interact.${u}(${Math.max(1,Math.round(a))})`:`await interact.${u}(${n}, ${r}, ${Math.max(1,Math.round(a))})`}
|
|
696
|
-
return { ok: !!value, value }
|
|
697
|
-
})()`});w?.ok&&o!=="cancel"&&await W("inspect touch",{tapAtCoords:{x:n,y:r}},`touch ${o} @${n},${r}`),console.log(JSON.stringify(w,null,2));break}case"gesture":{let o=["scroll-up","scroll-down","scroll-left","scroll-right","swipe-from-left-edge","swipe-from-right-edge","swipe-from-top-edge","swipe-from-bottom-edge"],n=l[1],r=l[2]?Number(l[2]):220;(!n||!Number.isFinite(r))&&(console.error(v("gesture","<preset> [durationMs]")),console.error(` presets: ${o.join(", ")}`),process.exit(1)),o.includes(n)||(console.error(` unknown gesture preset: ${n}`),console.error(` presets: ${o.join(", ")}`),process.exit(1));let a=await d.send({type:"evaluate",code:`(async () => {
|
|
658
|
+
})()`});(!a||typeof a.cx!="number")&&(console.error(` not found: ${o}`),process.exit(1)),a.isTextInput||console.error(` warning: ${o} is not a text input (isTextInput: false)`);let u=await d.send({type:"tap",x:a.cx,y:a.cy,target:{id:a.id??o,testID:a.testID??o,text:null,type:a.type??null}}),f=a.secureTextEntry===!0,g=await ks(d,1e3,{targetId:o,secureTextEntry:f});g.visible||(console.error(` keyboard did not open after tapping ${o}`),process.exit(1));let w=g.focusedInput;w&&(w.testID===o||w.id===o||(console.error(` focus routing mismatch after tap: requested ${JSON.stringify(o)} but focus is on ${JSON.stringify(w.testID??w.id??null)}. did the tap land on an outer Pressable wrapper?`),process.exit(1))),await d.send({type:"keyboard",action:"type",text:n});let y=f||we(g),k=y?Z:et(n,g),L=y&&g.focusedInput?{...g.focusedInput,secureTextEntry:!0,text:typeof g.focusedInput.text=="string"?Z:g.focusedInput.text}:g.focusedInput??null;await W("inspect type-into",{tapOn:{id:o},inputText:k},k===Z?`type-into #${o} ${Z}`:`type-into #${o} ${JSON.stringify(n)}`),console.log(JSON.stringify({target:o,isTextInput:a.isTextInput,secureTextEntry:y,keyboardOpened:g.visible??u?.keyboardOpened??!1,focusedInput:L,typed:k},null,2));break}case"type":{let o=l.slice(1).join(" ");o||(console.error(v("type","<text>")),process.exit(1));let n=await De(d,"type");await d.send({type:"keyboard",action:"type",text:o});let i=et(o,n);await W("inspect type",{inputText:i},i===Z?`type ${Z}`:`type ${JSON.stringify(o)}`),console.log(i===Z?` typed: ${Z}`:` typed: ${JSON.stringify(o)}`);break}case"key":{let o=l[1];o||(console.error(v("key","<name>")),process.exit(1)),await De(d,"key"),await d.send({type:"keyboard",action:"press",text:o}),await W("inspect key",{pressKey:o},`key ${o}`),console.log(` pressed: ${o}`);break}case"key-sequence":{let o=l.slice(1);o.length===0&&(console.error(v("key-sequence","<key> [<key> ...]")),process.exit(1)),await De(d,"key-sequence");for(let n of o)await d.send({type:"keyboard",action:"press",text:n});await W("inspect key-sequence",{pressKey:o.join(" ")},`key-sequence ${o.join(" ")}`),console.log(` pressed: ${o.join(", ")}`);break}case"keycode":{let o=l.slice(1);o.length===0&&(console.error(v("keycode","<code> [<code> ...]")),process.exit(1));let n=o.map(a=>({code:a,key:Is(a)})),i=n.filter(a=>!a.key);i.length>0&&(console.error(` unsupported keycode(s): ${i.map(a=>a.code).join(", ")}`),process.exit(1)),await De(d,"keycode");for(let a of n)await d.send({type:"keyboard",action:"press",text:a.key});await W("inspect keycode",{pressKey:n.map(a=>a.key).join(" ")},`keycode ${o.join(" ")}`),console.log(` pressed: ${o.join(", ")}`);break}case"dispatch":{let o=l[1];o||(console.error(v("dispatch","<char>")),process.exit(1)),await d.send({type:"keyboard",action:"dispatchKey",text:o}),await W("inspect dispatch",{dispatchKey:o},`dispatch ${JSON.stringify(o)}`),console.log(` dispatched: ${o}`);break}case"dismiss":{await d.send({type:"keyboard",action:"dismiss"}),await W("inspect dismiss",{hideKeyboard:!0},"dismiss keyboard"),console.log(" keyboard dismissed");break}case"double-tap":{let o=Number(l[1]),n=Number(l[2]),i=xe(e,l);if(i){let w=await Ee(d,i);w||(console.error(` not found: ${i.value}`),i.mode==="testid"&&Q("wait-selector-for-missing-testid",i.value),process.exit(1)),o=w.x,n=w.y}let a=l[3]?Number(l[3]):80;(!Number.isFinite(o)||!Number.isFinite(n)||!Number.isFinite(a))&&(console.error(v("double-tap","<testid> | <x> <y> [gapMs] | --testid <id>")),process.exit(1));let u=Math.max(0,Math.round(a)),g={...await $e(d,{type:"doubleTap",x:o,y:n,gapMs:u}),gapMs:u};g?.ok&&await W("inspect double-tap",{doubleTapAtCoords:{x:o,y:n,gapMs:u}},`double-tap @${o},${n}`),console.log(JSON.stringify(g,null,2));break}case"long-press":{let o=Number(l[1]),n=Number(l[2]),i=xe(e,l),a=null;if(i){let y=await Ee(d,i);y||(console.error(` not found: ${i.value}`),i.mode==="testid"&&Q("wait-selector-for-missing-testid",i.value),process.exit(1)),o=y.x,n=y.y,a={id:y.id??null,testID:y.testID??null,text:y.text??null,type:y.type??null}}let u=i?l[1]:l[3],f=u?Number(u):600;(!Number.isFinite(o)||!Number.isFinite(n)||!Number.isFinite(f))&&(console.error(v("long-press","<testid> | <x> <y> [durationMs] | --testid <id>")),process.exit(1));let g=Math.max(0,Math.round(f)),w=await d.send({type:"longPress",x:o,y:n,durationMs:g,target:a});w?.ok&&await W("inspect long-press",{tapAtCoords:{x:o,y:n}},`long-press @${o},${n}`),console.log(JSON.stringify(w,null,2));break}case"touch":{let o=l[1],n=Number(l[2]),i=Number(l[3]),a=l[4]?Number(l[4]):999,u=o==="down"?"touchDown":o==="move"?"touchMove":o==="up"?"touchUp":o==="cancel"?"touchCancel":null;u||(console.error(v("touch","<down|move|up|cancel> <x> <y> [pointerId]")),process.exit(1)),o!=="cancel"&&(!Number.isFinite(n)||!Number.isFinite(i))&&(console.error(v("touch","<down|move|up|cancel> <x> <y> [pointerId]")),process.exit(1));let f=Math.max(1,Math.round(a)),g=await $e(d,u==="touchCancel"?{type:u,pointerId:f}:{type:u,x:n,y:i,pointerId:f});g?.ok&&o!=="cancel"&&await W("inspect touch",{tapAtCoords:{x:n,y:i}},`touch ${o} @${n},${i}`),console.log(JSON.stringify(g,null,2));break}case"gesture":{let o=["scroll-up","scroll-down","scroll-left","scroll-right","swipe-from-left-edge","swipe-from-right-edge","swipe-from-top-edge","swipe-from-bottom-edge"],n=l[1],i=l[2]?Number(l[2]):220;(!n||!Number.isFinite(i))&&(console.error(v("gesture","<preset> [durationMs]")),console.error(` presets: ${o.join(", ")}`),process.exit(1)),o.includes(n)||(console.error(` unknown gesture preset: ${n}`),console.error(` presets: ${o.join(", ")}`),process.exit(1));let a=await d.send({type:"evaluate",code:`(async () => {
|
|
698
659
|
const spec = globalThis.__sootsimDeviceSpec || {}
|
|
699
660
|
return {
|
|
700
661
|
width: spec.width || window.innerWidth || 393,
|
|
@@ -702,22 +663,17 @@ ${n}
|
|
|
702
663
|
statusBarHeight: spec.statusBarHeight || 0,
|
|
703
664
|
homeIndicatorHeight: spec.homeIndicatorHeight || 0,
|
|
704
665
|
}
|
|
705
|
-
})()`}),u=Number(a?.width)||393,
|
|
706
|
-
const interact = window.__sootsimInteract
|
|
707
|
-
if (!interact?.drag) return { ok: false, reason: 'no interact.drag' }
|
|
708
|
-
const value = await interact.drag(${S}, ${T}, ${M}, ${ne}, ${z}, ${B})
|
|
709
|
-
return { ok: !!value, value }
|
|
710
|
-
})()`});ve?.ok&&await W("inspect gesture",{swipe:{start:`${S}, ${T}`,end:`${M}, ${ne}`,duration:Math.max(1,Math.round(r))}},`gesture ${n}`),console.log(JSON.stringify({preset:n,from:{x:S,y:T},to:{x:M,y:ne},result:ve},null,2));break}case"scroll":{let o=$e(e),n=Ts(e),r=o?.mode==="testid"?o.value:n==null?l[1]:null,a=o||n!=null?1:2,u=Number(l[a]),m=Number(l[a+1]);(!r&&n==null||!Number.isFinite(u)||!Number.isFinite(m))&&(console.error(v("scroll","<id> <x> <y> | --testid <id> <x> <y> | --node-id <nodeId> <x> <y>")),process.exit(1));let g=await d.send({type:"evaluate",code:`(async () => {
|
|
666
|
+
})()`}),u=Number(a?.width)||393,f=Number(a?.height)||852,g=Number(a?.statusBarHeight)||0,w=Number(a?.homeIndicatorHeight)||0,y=Math.round(u/2),k=Math.round(f/2),L=Math.max(24,g+18),V=Math.max(24,w+18),G=18,Y=Math.min(220,Math.round(f*.24)),E=Math.min(180,Math.round(u*.32)),S=y,T=k,M=y,ne=k;switch(n){case"scroll-up":T=k+Math.round(Y/2),ne=k-Math.round(Y/2);break;case"scroll-down":T=k-Math.round(Y/2),ne=k+Math.round(Y/2);break;case"scroll-left":S=y+Math.round(E/2),M=y-Math.round(E/2);break;case"scroll-right":S=y-Math.round(E/2),M=y+Math.round(E/2);break;case"swipe-from-left-edge":S=G,T=k,M=Math.min(u-G,G+E);break;case"swipe-from-right-edge":S=u-G,T=k,M=Math.max(G,u-G-E);break;case"swipe-from-top-edge":S=y,T=L,ne=Math.min(f-V,L+Y);break;case"swipe-from-bottom-edge":S=y,T=f-V,ne=Math.max(L,f-V-Y);break}let z=Math.max(8,Math.round(i/16)),B=Math.max(1,Math.round(i/z)),ke=await $e(d,{type:"drag",fromX:S,fromY:T,toX:M,toY:ne,steps:z,stepMs:B});ke?.ok&&await W("inspect gesture",{swipe:{start:`${S}, ${T}`,end:`${M}, ${ne}`,duration:Math.max(1,Math.round(i))}},`gesture ${n}`),console.log(JSON.stringify({preset:n,from:{x:S,y:T},to:{x:M,y:ne},result:ke},null,2));break}case"scroll":{let o=xe(e),n=Ms(e),i=o?.mode==="testid"?o.value:n==null?l[1]:null,a=o||n!=null?1:2,u=Number(l[a]),f=Number(l[a+1]);(!i&&n==null||!Number.isFinite(u)||!Number.isFinite(f))&&(console.error(v("scroll","<id> <x> <y> | --testid <id> <x> <y> | --node-id <nodeId> <x> <y>")),process.exit(1));let g=await d.send({type:"evaluate",code:`(async () => {
|
|
711
667
|
const t = window.__sootsimTest
|
|
712
668
|
if (!t) return null
|
|
713
|
-
const n = ${n!=null?`await t.inspectByNodeId(${JSON.stringify(n)})`:`await t.findByTestId(${JSON.stringify(
|
|
714
|
-
|| await t.findById(${JSON.stringify(
|
|
669
|
+
const n = ${n!=null?`await t.inspectByNodeId(${JSON.stringify(n)})`:`await t.findByTestId(${JSON.stringify(i)})
|
|
670
|
+
|| await t.findById(${JSON.stringify(i)})`}
|
|
715
671
|
if (!n || !n.absolutePosition || !n.layout) return null
|
|
716
672
|
return {
|
|
717
673
|
cx: n.absolutePosition.x + (n.layout.width || 0) / 2,
|
|
718
674
|
cy: n.absolutePosition.y + (n.layout.height || 0) / 2,
|
|
719
675
|
}
|
|
720
|
-
})()`}),w=await X(d,"scrollTo",n!=null?{nodeId:n}:
|
|
676
|
+
})()`}),w=await X(d,"scrollTo",n!=null?{nodeId:n}:i,u,f,!1);if(w?.ok){let y=n!=null?`node ${n}`:`#${i}`;await W("inspect scroll",{scrollTo:{...n!=null?{nodeId:n}:{id:i},x:u,y:f}},`scroll ${y} -> ${u},${f}`)}console.log(JSON.stringify({...w,...g?{at:{x:g.cx,y:g.cy}}:{}},null,2));break}case"state":{let o=l[1];if(s==="get"&&!o){let i=await X(d,"getRuntimeState"),a=await d.send({type:"evaluate",code:Te});if(i&&typeof i=="object"&&i.diagnostics&&(i.diagnostics.errors=a?.errors??0,i.diagnostics.warnings=a?.warnings??0),i&&typeof i=="object"&&i.shell==null)try{let u=await ue(d);u&&(i.shell=u)}catch{}console.log(JSON.stringify(i,null,2));break}if(!o||o==="--help"||o==="-h"){console.log(`
|
|
721
677
|
${b("state")} \u2014 dump raw runtime state
|
|
722
678
|
|
|
723
679
|
subcommands:
|
|
@@ -781,7 +737,7 @@ ${n}
|
|
|
781
737
|
text: secureTextEntry ? ${JSON.stringify(Z)} : (focused.text || null),
|
|
782
738
|
} : null,
|
|
783
739
|
}
|
|
784
|
-
})()`}),n=
|
|
740
|
+
})()`}),n=tt(n);break;case"node":{let i=l[2];i||(console.error(` usage: ${b("state")} node <id>`),process.exit(1)),n=await X(d,"findByTestId",i)||await X(d,"findById",i);break}case"scroll":{let i=l[2];i||(console.error(` usage: ${b("state")} scroll <id>`),process.exit(1)),n=await X(d,"getScrollState",i);break}case"scroll-hit":{let i=Number(l[2]),a=Number(l[3]);(!Number.isFinite(i)||!Number.isFinite(a))&&(console.error(` usage: ${b("state")} scroll-hit <x> <y>`),process.exit(1)),n=await X(d,"getScrollStateAt",i,a);break}case"hit":{let i=Number(l[2]),a=Number(l[3]);(!Number.isFinite(i)||!Number.isFinite(a))&&(console.error(` usage: ${b("state")} hit <x> <y>`),process.exit(1)),n=await X(d,"debugHitAt",i,a);break}case"gesture":{let i=Number(l[2]),a=Number(l[3]);(!Number.isFinite(i)||!Number.isFinite(a))&&(console.error(` usage: ${b("state")} gesture <x> <y>`),process.exit(1)),n=await X(d,"debugGestureAt",i,a);break}case"gesture-seam":n=await ce(d,"SootSim.bridges.mainShell.callTestBridge","getShellGestureSeamDebug");break;case"worklets":{let[i,a]=await Promise.all([X(d,"getWorkletSlotStats"),ce(d,"SootSim.bridges.mainShell.callTestBridge","getWorkletSlotStats")]);n={tenant:i,shell:a};break}case"scroll-input":n=await ce(d,"SootSim.bridges.mainShell.callTestBridge","getShellScrollInputDebug");break;case"scroll-mirror":n=await ce(d,"SootSim.bridges.mainShell.callTestBridge","getScrollMirrorDebug");break;default:console.error(` unknown state subcommand: ${o}`),process.exit(1)}console.log(JSON.stringify(n,null,2));break}case"shell":{let o=l[1];if(!o||o==="--help"||o==="-h"){console.log(`
|
|
785
741
|
${b("shell")} \u2014 run built-in shell commands
|
|
786
742
|
|
|
787
743
|
subcommands:
|
|
@@ -805,7 +761,7 @@ ${n}
|
|
|
805
761
|
${b("shell")} open-card clock 800
|
|
806
762
|
${b("shell")} appearance dark
|
|
807
763
|
${b("shell")} lock
|
|
808
|
-
`);break}let n=o==="launch"||o==="open-card"||o==="home"||o==="switcher",
|
|
764
|
+
`);break}let n=o==="launch"||o==="open-card"||o==="home"||o==="switcher",i=o==="launch"||o==="open-card"?l[3]:l[2],a=i?Number(i):350;n&&(!Number.isFinite(a)||a<0)&&(console.error(v("shell",o==="launch"||o==="open-card"?"<launch|open-card> <appId> [settleMs]":"<home|switcher> [settleMs]")),process.exit(1));let u=!1,f=!1,g=null,w=e.includes("--clear-state");if(o==="launch"){let y=l[2];y||(console.error(v("shell","launch <appId> [settleMs] [--clear-state]")),process.exit(1)),w&&await d.send({type:"evaluate",code:He(!0)}),u=!!await ye(d,"launchApp",a,y),{settled:f,state:g}=await Ae(d,Math.round(a),k=>!!k&&k.state==="app"&&k.activeApp===y&&k.showSwitcher===!1&&k.switcherPhase==="idle"&&typeof k.launchProgress=="number"&&k.launchProgress>=.98),u&&await W("inspect shell launch",w?{launchApp:{clearState:!0}}:{launchApp:{}},w?"launch app (clear state)":"launch app")}else if(o==="home")u=!!await ye(d,"goHome",a),{settled:f,state:g}=await Ae(d,Math.round(a),y=>!!y&&y.state==="home"&&y.activeApp==null&&y.showSwitcher===!1&&y.switcherPhase==="idle"&&typeof y.launchProgress=="number"&&y.launchProgress>=.98);else if(o==="switcher")u=!!await ye(d,"openSwitcher",a),{settled:f,state:g}=await Ae(d,Math.round(a),y=>!!y&&y.state==="app"&&y.showSwitcher===!0&&y.switcherPhase==="idle"&&typeof y.zoomLevel=="number"&&Math.abs(y.zoomLevel)<=.02&&typeof y.horizontalZoom=="number"&&Math.abs(y.horizontalZoom)<=.02),f&&(await oe(Ss),g=await ue(d));else if(o==="open-card"){let y=l[2];y||(console.error(v("shell","open-card <appId> [settleMs]")),process.exit(1)),u=!!await ye(d,"openSwitcherCard",a,y),{settled:f,state:g}=await Ae(d,Math.round(a),k=>!!k&&k.state==="app"&&k.activeApp===y&&k.showSwitcher===!1&&k.switcherPhase==="idle"&&typeof k.zoomLevel=="number"&&k.zoomLevel>=.98&&typeof k.horizontalZoom=="number"&&k.horizontalZoom>=.98),u&&await W("inspect shell open-card",{openSwitcherCard:{appId:y}},`open switcher card ${y}`)}else if(o==="appearance"){let y=l[2];(!y||!["light","dark","auto","toggle"].includes(y))&&(console.error(v("shell","appearance <light|dark|auto|toggle>")),process.exit(1));let k=await Io(d,"appearance",y);if(u=!!k?.ok,g={appearance:k},u){let L=k?.applied??y;console.log(` appearance: ${L}`)}}else if(o==="lock"||o==="shake"){let y=await Io(d,o);u=!!y?.ok,g={[o]:y}}else console.error(` unknown shell subcommand: ${o}`),process.exit(1);console.log(JSON.stringify({ok:u,settled:f,state:g},null,2));break}case"url":{await co(d,{args:r});break}case"reload":{let i=!1,a=!1;try{await d.send({type:"evaluate",code:"window.__sootsimConsole?.clear()"});let g=await d.send({type:"evaluate",code:`;(async () => {
|
|
809
765
|
// in-place guest reload is only valid while the page still runs
|
|
810
766
|
// the engine build the server would serve NOW. the shell dev
|
|
811
767
|
// server has no HMR client, so a long-lived sim tab otherwise
|
|
@@ -829,13 +785,13 @@ ${n}
|
|
|
829
785
|
}
|
|
830
786
|
window.location.reload()
|
|
831
787
|
return { kind: 'page', engineStale }
|
|
832
|
-
})()`});a=!!g&&g.kind==="external-app",
|
|
788
|
+
})()`});a=!!g&&g.kind==="external-app",i=!0,g&&g.engineStale&&console.log(" engine build changed since page load \u2014 full page reload")}catch{}console.log(" reloading...");let u=d,f=null;if(a)f=await Ne(d,{timeoutMs:1e4,errorGraceMs:3e3});else{i&&await oe(300);let w=await Et(F,R,N,{timeoutMs:3e4,simIdSource:j});w?(u=w,f=await Ne(w,{timeoutMs:3e4,errorGraceMs:3e3})):(console.log(" \u26A0 reload: bridge never reconnected within 30000ms"),u=null)}if(f)if(f.ready){let g=f.source==="nodes-fallback"?" (no ready signal, node-count fallback)":"";console.log(` ready in ${f.elapsedMs}ms: ${f.nodes} nodes${g}`)}else if(f.source==="error-bail")console.log(` \u26A0 reload bailed after ${f.elapsedMs}ms: ${f.errors} console error(s), ready signal never fired`);else{let g=bo(f);console.log(` \u26A0 reload timed out after ${f.elapsedMs}ms \u2014 ${g} (nodes: ${f.nodes}, targets: ${f.targets}, errors: ${f.errors})`)}if(u)try{let g=await ge(u,10);if(u!==d&&u.close(),Array.isArray(g)&&g.length>0){console.log(`
|
|
833
789
|
\u26A0 ${g.length} error(s) during mount:
|
|
834
790
|
`);for(let w of g){let y=w.args.map(k=>typeof k=="object"?JSON.stringify(k):k).join(" ");if(console.log(` ${y}`),w.stack){let k=w.stack.split(`
|
|
835
|
-
`).slice(0,2);for(let L of k)console.log(` ${L.trim()}`)}}}}catch{}
|
|
791
|
+
`).slice(0,2);for(let L of k)console.log(` ${L.trim()}`)}}}}catch{}f&&!f.ready&&(process.exitCode=1);break}case"storage-clear":{if(await We(d),await d.send({type:"evaluate",code:He(!0)})!==!0){D(r)?A({cleared:!1,ready:!1,error:"external app reload bridge is unavailable"}):console.error(" storage clear failed: external app reload bridge is unavailable"),process.exitCode=1;break}let a=await Ne(d,{timeoutMs:1e4,errorGraceMs:3e3});if(D(r)){A({cleared:!0,ready:a.ready,reload:a}),a.ready||(process.exitCode=1);break}if(a.ready){let u=a.source==="nodes-fallback"?" (no ready signal, node-count fallback)":"";console.log(` cleared tenant storage; ready in ${a.elapsedMs}ms: ${a.nodes} nodes${u}`)}else if(a.source==="error-bail")console.log(` \u26A0 storage clear reloaded but bailed after ${a.elapsedMs}ms: ${a.errors} console error(s), ready signal never fired`);else{let u=bo(a);console.log(` \u26A0 storage clear reloaded but timed out after ${a.elapsedMs}ms \u2014 ${u} (nodes: ${a.nodes}, targets: ${a.targets}, errors: ${a.errors})`)}try{let u=await ge(d,10);if(Array.isArray(u)&&u.length>0){console.log(`
|
|
836
792
|
\u26A0 ${u.length} error(s) during mount:
|
|
837
|
-
`);for(let
|
|
838
|
-
`).slice(0,2);for(let y of w)console.log(` ${y.trim()}`)}}}}catch{}a.ready||(process.exitCode=1);break}case"eval":case"js":{let o=l.slice(1).join(" ");if(o||(console.error(v("js","<javascript>")),console.error(""),console.error(" runs the snippet in the engine realm. SootSim is the"),console.error(" canonical state surface \u2014 reach into it directly."),console.error(""),console.error(" examples:"),console.error(` ${b("js")} SootSim.bridges.test.findByText("Sign in")`),console.error(` ${b("js")} SootSim.bridges.debug.snapshot("before")`),console.error(` ${b("js")} SootSim.bridges.keyboard.type("hello")`),console.error(` ${b("js")} SootSim.state.root.children.length`),process.exit(1)),e.includes("--tenant")){let
|
|
793
|
+
`);for(let f of u){let g=f.args.map(w=>typeof w=="object"?JSON.stringify(w):w).join(" ");if(console.log(` ${g}`),f.stack){let w=f.stack.split(`
|
|
794
|
+
`).slice(0,2);for(let y of w)console.log(` ${y.trim()}`)}}}}catch{}a.ready||(process.exitCode=1);break}case"eval":case"js":{let o=l.slice(1).join(" ");if(o||(console.error(v("js","<javascript>")),console.error(""),console.error(" runs the snippet in the engine realm. SootSim is the"),console.error(" canonical state surface \u2014 reach into it directly."),console.error(""),console.error(" examples:"),console.error(` ${b("js")} SootSim.bridges.test.findByText("Sign in")`),console.error(` ${b("js")} SootSim.bridges.debug.snapshot("before")`),console.error(` ${b("js")} SootSim.bridges.keyboard.type("hello")`),console.error(` ${b("js")} SootSim.state.root.children.length`),process.exit(1)),e.includes("--tenant")){let f=l.slice(1).filter(w=>w!=="--tenant").join(" "),g=await d.send({type:"evaluate",code:`(async () => SootSim.bridges.test.evalInTenant(${JSON.stringify(f)}))()`});console.log(JSON.stringify(g,null,2));break}let n=o;n.startsWith("(async")||(n=`(async () => ${n})()`);let i=await d.send({type:"evaluate",code:n});console.log(JSON.stringify(i,null,2));let a=o.toLowerCase(),u=[];(a.includes("sootsim:gohome")||a.includes("gohome"))&&u.push("rnxsim shell home"),(a.includes("sootsim:appswitcher")||a.includes("appswitcher"))&&u.push("rnxsim shell switcher"),(a.includes("keyboard.isvisible")||a.includes("keyboard.getmode"))&&u.push("rnxsim debug state keyboard"),a.includes("interact.tap")&&u.push("rnxsim do tap <x> <y>"),a.includes("keyboard.type")&&u.push("rnxsim do type <text>"),(a.includes("keyboard.press")||a.includes("keyboard.dispatchkey"))&&u.push("rnxsim do key <name>"),a.includes("keyboard.dismiss")&&u.push("rnxsim do dismiss"),a.includes("dumptree")&&u.push("rnxsim get tree"),a.includes("dumpaccessibilitytree")&&u.push("rnxsim get a11y"),a.includes("getnodecount")&&u.push("rnxsim get count"),a.includes("findbytext")&&u.push("rnxsim find <text>"),(a.includes("findbytestid")||a.includes("findbyid"))&&u.push("rnxsim find --testid <id>"),a.includes("document.hidden")&&u.push("rnxsim debug state keyboard (includes tab health)"),u.length>0&&Q("prefer-cli-over-eval",u);break}case"globals":{let o=await d.send({type:"evaluate",code:`(async () => {
|
|
839
795
|
const globals = {}
|
|
840
796
|
|
|
841
797
|
// test bridge (proxy in worker mode)
|
|
@@ -873,7 +829,7 @@ ${n}
|
|
|
873
829
|
|
|
874
830
|
return globals
|
|
875
831
|
})()`});console.log(` rnx JS API:
|
|
876
|
-
`);for(let[n,
|
|
832
|
+
`);for(let[n,i]of Object.entries(o)){console.log(` ${n}:`);for(let a of i)console.log(` .${a}`);console.log("")}console.log(` use: ${b("js")} <expression>`),console.log(` example: ${b("js")} test.findByText("Sign in")`);break}case"describe":{await Qt({bridge:d,args:e,positional:l});break}case"perf":{p==="debug"&&!t.internalPerfCommand&&(console.error(" `rnxsim debug perf` was removed. use `rnxsim perf shell ...`."),process.exit(1));let o=l[1];if(t.internalPerfCommand==="scroll"){if(!o||o==="--help"||o==="-h"){console.log(`
|
|
877
833
|
${b("perf")} <start|stop> [options]
|
|
878
834
|
|
|
879
835
|
records per-frame scroll offsets from the tenant worker, shell worker,
|
|
@@ -889,17 +845,17 @@ ${n}
|
|
|
889
845
|
# ... perform consecutive swipes ...
|
|
890
846
|
${b("perf")} stop
|
|
891
847
|
${b("perf")} stop --json
|
|
892
|
-
`);break}if(o==="start"){let n=
|
|
848
|
+
`);break}if(o==="start"){let n=r.find((u,f)=>r[f-1]==="--limit"),i=n===void 0?6e3:Number(n);(!Number.isFinite(i)||i<120)&&(console.error(" error: --limit must be a number of at least 120"),process.exit(1));let a=await d.send({type:"evaluate",code:`(async () => {
|
|
893
849
|
const perf = window.SootSim?.bridges?.scrollPerf
|
|
894
850
|
if (!perf) return { error: 'scroll performance profile unavailable' }
|
|
895
|
-
await perf.start(${Math.floor(
|
|
851
|
+
await perf.start(${Math.floor(i)})
|
|
896
852
|
return { started: true }
|
|
897
853
|
})()`});a?.error&&(console.error(` error: ${a.error}`),process.exit(1)),console.log(` scroll profiling started: perform consecutive swipes, then run '${b("perf")} stop'`);break}if(o==="stop"){let n=await d.send({type:"evaluate",code:`(async () => {
|
|
898
854
|
const perf = window.SootSim?.bridges?.scrollPerf
|
|
899
855
|
if (!perf) return { error: 'scroll performance profile unavailable' }
|
|
900
856
|
return await perf.stop()
|
|
901
|
-
})()`});n?.error&&(console.error(` error: ${n.error}`),process.exit(1));let
|
|
902
|
-
`),console.log(` duration: ${
|
|
857
|
+
})()`});n?.error&&(console.error(` error: ${n.error}`),process.exit(1));let i=n;if(D(r)){A(i);break}console.log(` scroll performance trace:
|
|
858
|
+
`),console.log(` duration: ${i.stoppedAt-i.startedAt}ms (worker series are timestamp-aligned, not frame-paired)`),console.log(` samples: tenant ${i.layers.tenant.length} \xB7 shell ${i.layers.shell.length} \xB7 compositor ${i.layers.compositor.length}`),console.log(""),console.log(" offset and phase changes (--json includes every per-frame sample):"),console.log(" t(ms) layer surface node offsetY slotY phase paint");let a=[];for(let u of Object.values(i.layers)){let f=new Map;for(let g of u){let w=`${g.surfaceId}:${g.nodeId}`,y=`${g.offsetY}:${g.slotY??""}:${g.phase??""}`;f.get(w)!==y&&(f.set(w,y),a.push(g))}}a.sort((u,f)=>u.t-f.t||u.seq-f.seq);for(let u of a)console.log(` ${String(u.t-i.startedAt).padStart(5)} ${u.layer.padEnd(10)} ${u.surfaceId.padEnd(8)} ${String(u.nodeId).padStart(5)} ${u.offsetY.toFixed(2).padStart(8)} ${u.slotY===void 0?" -":u.slotY.toFixed(2).padStart(8)} ${(u.phase??"-").padEnd(8)} ${u.paint===void 0?"-":u.paint}`);break}console.error(` unknown scroll perf command: ${o}`),process.exit(1)}if(!o||o==="--help"||o==="-h"){console.log(`
|
|
903
859
|
${b("perf")} \u2014 shell frame profiling (the worker that paints)
|
|
904
860
|
|
|
905
861
|
records per-painted-frame timing in the shell worker \u2014 the surface that
|
|
@@ -930,7 +886,7 @@ ${n}
|
|
|
930
886
|
return { error: 'shell frame profile unavailable (__sootsimShellPerf missing on the page)' }
|
|
931
887
|
}
|
|
932
888
|
return await window.__sootsimShellPerf.stop()
|
|
933
|
-
})()`});if(n?.error&&(console.error(` error: ${n.error}`),n.error==="timeout"&&console.error(" (shell worker did not answer within 5s \u2014 is a sim loaded?)"),process.exit(1)),D(
|
|
889
|
+
})()`});if(n?.error&&(console.error(` error: ${n.error}`),n.error==="timeout"&&console.error(" (shell worker did not answer within 5s \u2014 is a sim loaded?)"),process.exit(1)),D(r)){A(n);break}ko(n);break}case"transition":{let n=l[2];if(!n||!["goHome","appSwitcher","lockScreen"].includes(n)){console.log(`
|
|
934
890
|
${b("perf")} transition <event> \u2014 profile a shell transition
|
|
935
891
|
|
|
936
892
|
events:
|
|
@@ -943,7 +899,7 @@ ${n}
|
|
|
943
899
|
examples:
|
|
944
900
|
${b("perf")} transition goHome --timeout 10000
|
|
945
901
|
${b("perf")} transition appSwitcher
|
|
946
|
-
`);break}let a=`sootsim:${n}`;
|
|
902
|
+
`);break}let a=`sootsim:${n}`;Me(` profiling ${n} transition...`),Me(" (use --timeout 10000 if this times out)");let u=await d.send({type:"evaluate",code:`(async () => {
|
|
947
903
|
if (!window.__sootsimShellPerf) {
|
|
948
904
|
return { error: 'shell frame profile unavailable (__sootsimShellPerf missing on the page)' }
|
|
949
905
|
}
|
|
@@ -955,29 +911,29 @@ ${n}
|
|
|
955
911
|
// animation-end detection
|
|
956
912
|
await new Promise(r => setTimeout(r, 600))
|
|
957
913
|
return await window.__sootsimShellPerf.stop()
|
|
958
|
-
})()`});if(u?.error&&(console.error(` error: ${u.error}`),process.exit(1)),D(
|
|
959
|
-
`);for(let a of
|
|
960
|
-
`).slice(0,3);for(let w of g)console.log(` ${w.trim()}`)}}break}case"warnings":{let o=l[1]?Number(l[1]):20,n=await
|
|
961
|
-
`);for(let
|
|
962
|
-
`);for(let n of o){let
|
|
963
|
-
`);for(let
|
|
914
|
+
})()`});if(u?.error&&(console.error(` error: ${u.error}`),process.exit(1)),D(r)){A(u);break}Me(` ${n} transition profiled:`),ko(u);break}default:console.error(` unknown perf subcommand: ${o}`),console.error(" valid: start, stop, transition"),/^--?reset$/.test(o)&&console.error(" note: 'perf start' already clears prior frames \u2014 no reset needed"),(o==="stats"||o==="frames"||o==="worst")&&(console.error(" note: the tenant sampler (stats/frames/worst) was removed \u2014 it hardcoded"),console.error(" layout/render/copy to zero because the shell worker owns every real paint."),console.error(" use 'perf start' / 'perf stop' (worst frames are in the stop report).")),process.exit(1)}break}case"errors":{let o=l[1];if(o==="clear"){await We(d),D(r)?A({cleared:!0}):console.log(" error buffer cleared");break}let n=o?Number(o):20,i=await ge(d,n);if(D(r)){A(i);break}if(i.length===0){console.log(" no errors captured");break}console.log(` ${i.length} error(s):
|
|
915
|
+
`);for(let a of i){let u=ae(a.timestamp),f=a.args.map(g=>typeof g=="object"?JSON.stringify(g):g).join(" ");if(console.log(` [${u}] ${f}`),a.stack){let g=a.stack.split(`
|
|
916
|
+
`).slice(0,3);for(let w of g)console.log(` ${w.trim()}`)}}break}case"warnings":{let o=l[1]?Number(l[1]):20,n=await vt(d,o);if(D(r)){A(n);break}if(n.length===0){console.log(" no warnings captured");break}console.log(` ${n.length} warning(s):
|
|
917
|
+
`);for(let i of n){let a=ae(i.timestamp),u=i.args.map(f=>typeof f=="object"?JSON.stringify(f):f).join(" ");console.log(` [${a}] ${u}`)}break}case"animations":{let o=await X(d,"listAnimations")??[];if(e.includes("--json")){console.log(JSON.stringify(o,null,2));break}if(o.length===0){console.log(" no active animations");break}console.log(` ${o.length} active animation(s):
|
|
918
|
+
`);for(let n of o){let i=String(n.realm??"tenant").padEnd(6),a=String(n.kind).padEnd(10),u=typeof n.from=="number"&&typeof n.to=="number"?`${n.from.toFixed(2)}\u2192${n.to.toFixed(2)}`:"\u2014",f=Number(n.current??0).toFixed(2),g=typeof n.progress=="number"?`${Math.round(n.progress*100)}%`:"\u2014",w=`${Math.round(n.elapsedMs??0)}ms`,y=[n.loop?"loop":null,n.layoutBound?"layout":null,n.remoteDriven?"remote-driven":n.graphBacked?"graph":null,n.visible===!1?"offscreen":null].filter(Boolean),k=y.length>0?` [${y.join(" ")}]`:"";console.log(` #${n.id} ${i} ${a} ${u.padEnd(14)} cur=${f.padEnd(7)} ${g.padStart(4)} ${w}${k}`)}break}case"animation":{let o=l[1];(!o||o==="--help"||o==="-h")&&(console.error(` usage: ${b("animation")} <id>`),process.exit(1));let n=Number(o);Number.isFinite(n)||(console.error(` invalid id: ${o}`),process.exit(1));let i=await X(d,"getAnimation",n);console.log(JSON.stringify(i,null,2));break}case"stop-animation":{let o=l[1];(!o||o==="--help"||o==="-h")&&(console.error(` usage: ${b("stop-animation")} <id|all>`),process.exit(1));let n=o==="all"?"all":Number(o);n!=="all"&&!Number.isFinite(n)&&(console.error(` invalid id: ${o}`),process.exit(1));let i=await X(d,"stopAnimation",n);console.log(` stopped ${i??0} animation(s)`);break}case"requests":{let o=l[1];if(o==="clear"){await It(d),D(r)?A({cleared:!0}):console.log(" request buffer cleared");break}let n=o==="all",i=n?l[2]:o,a=i?Number(i):20,u=await kt(d,{failed:!n,limit:a});if(D(r)){A(u);break}if(u.length===0){console.log(n?" no requests captured":" no failed requests captured");break}console.log(` ${u.length} ${n?"request(s)":"failed request(s)"}:
|
|
919
|
+
`);for(let f of u){let g=ae(f.timestamp);console.log(` [${g}] ${U(f)}`),f.responseBody?console.log(` ${f.responseBody}`):f.error&&console.log(` ${f.error}`)}break}case"network":{let o=l[1],n=null,i=null,a=!1,u=!1,f=1e3,g=!1,w=!1;for(let E=0;E<r.length;E++){let S=r[E];if(S==="--filter")n=r[E+1]??null,E++;else if(S==="--limit"){let T=Number(r[E+1]);Number.isFinite(T)&&(i=T),E++}else if(S==="--threshold"){let T=Number(r[E+1]);Number.isFinite(T)&&T>0&&(f=T),E++}else S==="--failed"?a=!0:S==="--slow"?u=!0:S==="--tail"||S==="-f"?g=!0:S==="--json"&&(w=!0)}if(o==="clear"){await d.send({type:"evaluate",code:'window.__sootsimObservability?.network.clear(); "cleared"'}),console.log(" network buffer cleared");break}if(o==="get"){let E=l[2];E||(console.error(" usage: rnxsim network get <id>"),process.exit(1));let S=await d.send({type:"evaluate",code:`(() => {
|
|
964
920
|
const obs = window.__sootsimObservability;
|
|
965
921
|
if (!obs) return null;
|
|
966
|
-
return obs.network.getSnapshot().find(e => e.id === ${JSON.stringify(
|
|
967
|
-
})()`});S||(console.error(` no entry with id ${
|
|
968
|
-
to target a specific sim, use \`--sim ${o}\` instead.`),process.exit(1));let k=async()=>{let
|
|
922
|
+
return obs.network.getSnapshot().find(e => e.id === ${JSON.stringify(E)}) || null;
|
|
923
|
+
})()`});S||(console.error(` no entry with id ${E}`),process.exit(1)),w?console.log(JSON.stringify(S,null,2)):ws(S);break}let y=i??(g?200:o?Number(o):20);Number.isFinite(y)||(console.error(` invalid limit: ${o} \u2014 \`network\` takes a numeric count (e.g. ${b("network")} 100).
|
|
924
|
+
to target a specific sim, use \`--sim ${o}\` instead.`),process.exit(1));let k=async()=>{let E=await d.send({type:"evaluate",code:`(() => {
|
|
969
925
|
const obs = window.__sootsimObservability;
|
|
970
926
|
if (!obs) return { ok: false };
|
|
971
927
|
return { ok: true, entries: obs.network.getSnapshot() };
|
|
972
|
-
})()`});if(!
|
|
928
|
+
})()`});if(!E||!E.ok)throw new Error("observability bridge not installed \u2014 is the engine running?");return E.entries??[]},L=E=>{let S=E;if(a&&(S=S.filter(T=>!!T.error||T.status!=null&&T.status>=400)),u&&(S=S.filter(T=>T.durationMs!=null&&T.durationMs>=f)),n){let T=n.toLowerCase();S=S.filter(M=>(M.displayUrl||M.url).toLowerCase().includes(T))}return u&&!g&&(S=[...S].sort((T,M)=>(M.durationMs??0)-(T.durationMs??0))),S};if(!g){let E=await k(),S=L(E).slice(-y);if(w){console.log(JSON.stringify(S,null,2));break}if(S.length===0){E.length===0?console.log(" no network requests captured"):console.log(u?` no requests slower than ${f}ms (${E.length} total \u2014 try --threshold <ms>)`:" no matching requests");break}console.log(u?` ${S.length} request(s) slower than ${f}ms (sorted by duration desc):
|
|
973
929
|
`:` ${S.length} request(s):
|
|
974
|
-
`);for(let T of S)
|
|
975
|
-
`);let V=new Set,G=!0,Y=()=>{G=!1};process.on("SIGINT",Y);try{for(;G;){let
|
|
976
|
-
to target a specific sim, use \`--sim ${o}\` instead.`),process.exit(1));let L=()
|
|
930
|
+
`);for(let T of S)wo(T);break}console.log(` tailing network (ctrl-c to stop)...
|
|
931
|
+
`);let V=new Set,G=!0,Y=()=>{G=!1};process.on("SIGINT",Y);try{for(;G;){let E=await k(),S=L(E);for(let T of S)T.durationMs!=null&&(V.has(T.id)||(V.add(T.id),w?console.log(JSON.stringify(T)):wo(T)));await oe(250)}}finally{process.off("SIGINT",Y)}break}case"logs":{let o=l[1],n=null,i=null,a=null,u=!1,f=!1,g=!1;for(let S=0;S<r.length;S++){let T=r[S];if(T==="--filter")n=r[S+1]??null,S++;else if(T==="--limit"){let M=Number(r[S+1]);Number.isFinite(M)&&(i=M),S++}else T==="--level"?(a=r[S+1]??null,S++):T==="--tail"||T==="-f"?u=!0:T==="--json"?f=!0:(T==="--internal"||T==="--all")&&(g=!0)}let w=a?new Set(a.split(",").map(S=>S.trim()).filter(S=>S==="log"||S==="info"||S==="warn"||S==="error"||S==="debug")):null;if(o==="clear"){await Mt(d),console.log(" log buffer cleared");break}let y=!f&&process.stdout.isTTY===!0,k=i??(u?500:o?Number(o):50);Number.isFinite(k)||(console.error(` invalid limit: ${o} \u2014 \`logs\` takes a numeric count (e.g. ${b("logs")} 100).
|
|
932
|
+
to target a specific sim, use \`--sim ${o}\` instead.`),process.exit(1));let L=()=>Tt(d),V=S=>Nt(S,{level:w,filter:n,showInternal:g});if(!u){let S=await L(),T=V(S).slice(-k);if(f){console.log(JSON.stringify(T,null,2));break}if(T.length===0){console.log(S.length===0?" no logs captured":" no matching logs");break}console.log(` ${T.length} log(s):
|
|
977
933
|
`);for(let M of T)$o(M,y);break}console.log(` tailing logs (ctrl-c to stop)...
|
|
978
|
-
`);let G=new Set,Y=!0,
|
|
934
|
+
`);let G=new Set,Y=!0,E=()=>{Y=!1};process.on("SIGINT",E);try{for(;Y;){let S=await L(),T=V(S);for(let M of T)G.has(M.id)||(G.add(M.id),f?console.log(JSON.stringify(M)):$o(M,y));await oe(250)}}finally{process.off("SIGINT",E)}break}default:console.error(` unknown subcommand: ${m}`),process.exit(1)}if(C.has(m)&&!e.includes("--no-wait")&&process.env.SOOTSIM_NO_AUTO_WAIT!=="1"&&!await pt(d,m)&&await I(d),$.length>0&&ee($),!P.has(m))try{await Se(d)}catch{}}catch($){let o=$ instanceof Error?$.message:String($);console.error(` ${m??"inspect"} failed: ${o}`);let n=/^no sim connected with id ([^;]+)(?:; connected sims: .+)?$/.exec(o),i=/^command timed out after (\d+)s$/.exec(o),a=o.startsWith("sim disconnected:")||o.startsWith("bridge never reconnected")||o.startsWith("could not connect to ws://");if(n)await jt(d,F,n[1]);else if(/^no sim connected$/.test(o))Ct(F);else if(i)if(await fs(d)){let f=m??"describe";process.stderr.write(` the sim is still responsive \u2014 '${f}' just exceeded the ${i[1]}s command budget.
|
|
979
935
|
the screen's node tree is large; narrow the query or raise the budget:
|
|
980
|
-
rnxsim ${
|
|
936
|
+
rnxsim ${f} --testid <id> # scope to one subtree
|
|
981
937
|
rnxsim find --testid <id> # targeted single-node lookup
|
|
982
|
-
rnxsim ${
|
|
983
|
-
`)}else
|
|
938
|
+
rnxsim ${f} --timeout 60000 # raise per-command budget (ms)
|
|
939
|
+
`)}else ho();else if(a)ho();else{try{await _t(d)}catch{}try{await te({includeTail:!0})}catch{}try{await K({includeTail:!0})}catch{}}process.exit(1)}finally{d.close()}}export{He as a,Ao as b,Os as c,Bs as d,Cs as e,js as f,qs as g,se as h,ko as i,Er as j};
|