mirror of
https://github.com/callstack/agent-device.git
synced 2026-09-14 20:06:34 +08:00
211 lines
7.4 KiB
TypeScript
211 lines
7.4 KiB
TypeScript
import path from 'node:path';
|
|
import type { ResolvedProfile } from './platform-profiles.ts';
|
|
|
|
// A structured batch step: maps through the same command input as MCP and the Node client.
|
|
export type BatchStepSpec = {
|
|
command: string;
|
|
input: Record<string, unknown>;
|
|
};
|
|
|
|
type ScenarioStepBase = {
|
|
label: string;
|
|
command: string;
|
|
// When set, the harness runs an untimed `open --relaunch` (reset to root, top of list)
|
|
// before timing this step. Used for steps whose precondition is a clean root, since
|
|
// earlier commands (find/is, search) leave the list scrolled or in a different surface.
|
|
freshRoot?: boolean;
|
|
};
|
|
|
|
// Discriminated on execMode so the invoker gets the right payload without `!`/`?? []`:
|
|
// standalone carries full CLI args; batch carries one structured batch step.
|
|
export type ScenarioStep =
|
|
| (ScenarioStepBase & { execMode: 'standalone'; args: string[] })
|
|
| (ScenarioStepBase & { execMode: 'batch'; step: BatchStepSpec; isSnapshot?: boolean });
|
|
|
|
export type StepContext = { artifactsDir: string };
|
|
|
|
function std(label: string, command: string, args: string[]): ScenarioStep {
|
|
return { label, command, execMode: 'standalone', args };
|
|
}
|
|
|
|
function bat(
|
|
label: string,
|
|
command: string,
|
|
step: BatchStepSpec,
|
|
opts: { isSnapshot?: boolean; freshRoot?: boolean } = {},
|
|
): ScenarioStep {
|
|
return { label, command, execMode: 'batch' as const, step, ...opts };
|
|
}
|
|
|
|
// One ordered pass over Settings. The harness repeats this N (+warmup) times;
|
|
// the leading `open --relaunch` resets the app to its root each round, so every
|
|
// round starts from a known state while commands run in their natural order.
|
|
export function buildSettingsTour(p: ResolvedProfile, ctx: StepContext): ScenarioStep[] {
|
|
const s = p.selectors;
|
|
const shot = path.join(ctx.artifactsDir, 'shot.png');
|
|
const rec = path.join(ctx.artifactsDir, 'rec.mp4');
|
|
const trace = path.join(ctx.artifactsDir, 'trace.log');
|
|
|
|
// Text entry differs per platform: iOS fills the root search field directly (focusing it
|
|
// first can hang); Android must open the search screen before an editable field exists.
|
|
const textEntry: ScenarioStep[] = p.selectors.searchEditableAtRoot
|
|
? [
|
|
// iOS: editable search field exists at root; fill it directly (freshRoot resets scroll).
|
|
bat(
|
|
'fill search',
|
|
'fill',
|
|
{
|
|
command: 'fill',
|
|
input: {
|
|
target: { kind: 'selector', selector: s.searchFieldEditable },
|
|
text: 'general',
|
|
},
|
|
},
|
|
{ freshRoot: true },
|
|
),
|
|
bat('type', 'type', { command: 'type', input: { text: 'wifi' } }),
|
|
bat('get editable text', 'get', {
|
|
command: 'get',
|
|
input: {
|
|
format: 'text',
|
|
target: { kind: 'selector', selector: s.searchFieldEditable },
|
|
},
|
|
}),
|
|
bat('keyboard return', 'keyboard', { command: 'keyboard', input: { action: 'return' } }),
|
|
]
|
|
: [
|
|
// Android: tap the search entry first to reveal the editable, then type/fill it.
|
|
bat(
|
|
'press search field',
|
|
'press',
|
|
{
|
|
command: 'press',
|
|
input: { target: { kind: 'selector', selector: s.searchField } },
|
|
},
|
|
{ freshRoot: true },
|
|
),
|
|
bat('type', 'type', { command: 'type', input: { text: 'wifi' } }),
|
|
bat('fill search', 'fill', {
|
|
command: 'fill',
|
|
input: {
|
|
target: { kind: 'selector', selector: s.searchFieldEditable },
|
|
text: 'general',
|
|
},
|
|
}),
|
|
bat('get editable text', 'get', {
|
|
command: 'get',
|
|
input: {
|
|
format: 'text',
|
|
target: { kind: 'selector', selector: s.searchFieldEditable },
|
|
},
|
|
}),
|
|
];
|
|
|
|
// These iOS-only repeated gesture forms fuse into `sequence` runner requests:
|
|
// press --count > 1 and swipe --count > 1 both batch their steps into one command.
|
|
const iosRunnerSeries: ScenarioStep[] =
|
|
p.platform === 'ios'
|
|
? [
|
|
bat(
|
|
'press series (sequence)',
|
|
'press',
|
|
{
|
|
command: 'press',
|
|
input: { target: { kind: 'point', x: 200, y: 95 }, count: 2, intervalMs: 50 },
|
|
},
|
|
{ freshRoot: true },
|
|
),
|
|
bat(
|
|
'swipe series (sequence)',
|
|
'swipe',
|
|
{
|
|
command: 'swipe',
|
|
input: {
|
|
from: { x: 200, y: 650 },
|
|
to: { x: 200, y: 450 },
|
|
count: 2,
|
|
pauseMs: 50,
|
|
pattern: 'ping-pong',
|
|
},
|
|
},
|
|
{ freshRoot: true },
|
|
),
|
|
]
|
|
: [];
|
|
|
|
return [
|
|
// --- reset to root via relaunch ---
|
|
std('open (relaunch → root)', 'open', ['open', p.appTarget, '--relaunch']),
|
|
|
|
// --- reads on the root tree (snapshots first; anchor label is visible here) ---
|
|
bat(
|
|
'snapshot -i (root)',
|
|
'snapshot',
|
|
{ command: 'snapshot', input: { interactiveOnly: true } },
|
|
{ isSnapshot: true },
|
|
),
|
|
bat('snapshot (root)', 'snapshot', { command: 'snapshot', input: {} }, { isSnapshot: true }),
|
|
|
|
// --- navigate into a sub-screen from a fresh root (freshRoot resets scroll so the
|
|
// deep-screen row is in view), read it, then return ---
|
|
bat(
|
|
'press → deep screen',
|
|
'press',
|
|
{
|
|
command: 'press',
|
|
input: { target: { kind: 'selector', selector: s.deepScreen } },
|
|
},
|
|
{ freshRoot: true },
|
|
),
|
|
bat('snapshot (deep)', 'snapshot', { command: 'snapshot', input: {} }, { isSnapshot: true }),
|
|
bat(
|
|
'snapshot -i (deep)',
|
|
'snapshot',
|
|
{ command: 'snapshot', input: { interactiveOnly: true } },
|
|
{ isSnapshot: true },
|
|
),
|
|
bat('back', 'back', { command: 'back', input: {} }),
|
|
|
|
// --- iOS runner series commands surfaced by PR #643 ---
|
|
...iosRunnerSeries,
|
|
|
|
// --- targeted reads against the visible anchor (freshRoot so the anchor is on screen) ---
|
|
bat(
|
|
'wait text',
|
|
'wait',
|
|
{ command: 'wait', input: { text: s.anchorText, timeoutMs: 3000 } },
|
|
{ freshRoot: true },
|
|
),
|
|
bat('find', 'find', { command: 'find', input: { query: s.anchorText } }),
|
|
bat('get text', 'get', {
|
|
command: 'get',
|
|
input: {
|
|
format: 'text',
|
|
target: { kind: 'selector', selector: s.anchorLabel },
|
|
},
|
|
}),
|
|
bat('is visible', 'is', {
|
|
command: 'is',
|
|
input: { predicate: 'visible', selector: s.anchorLabel },
|
|
}),
|
|
|
|
// --- text entry (platform-specific order; see textEntry above) then scroll results ---
|
|
...textEntry,
|
|
bat('scroll down', 'scroll', { command: 'scroll', input: { direction: 'down' } }),
|
|
|
|
// --- artifact-producing commands; record brackets the rest so the clip has >1s of
|
|
// footage (an instant start→stop makes simctl recordVideo fail to finalize) ---
|
|
std('record start', 'record', ['record', 'start', rec, '--hide-touches']),
|
|
bat('screenshot', 'screenshot', { command: 'screenshot', input: { path: shot } }),
|
|
bat('logs mark', 'logs', {
|
|
command: 'logs',
|
|
input: { action: 'mark', message: 'perf-mark' },
|
|
}),
|
|
bat('logs clear', 'logs', { command: 'logs', input: { action: 'clear' } }),
|
|
std('trace start', 'trace', ['trace', 'start', trace]),
|
|
std('trace stop', 'trace', ['trace', 'stop']),
|
|
bat('perf frames', 'perf', { command: 'perf', input: { area: 'frames' } }),
|
|
std('record stop', 'record', ['record', 'stop']),
|
|
];
|
|
}
|