mirror of
https://github.com/callstack/agent-device.git
synced 2026-09-14 20:06:34 +08:00
d11c8cf9d6
* feat: support standalone Maestro clearState command Accept '- clearState' / '- clearState: <appId>' in Maestro YAML flows. Unlike launchApp.clearState (clear-then-open), the standalone form clears app state without relaunching, projecting to 'settings clear-app-state' on the daemon. Covers the Rocket.Chat login-with-deeplink helper, which previously failed with 'Maestro command "clearState" is not supported'. * test(maestro): cover standalone clearState with authored corpus flow Replace the UNVERIFIED_COMMANDS exemption with an authored clear-state flow exercising default and explicit appIds, plus the regenerated upstream parser fixture proving Maestro compatibility. Live iOS Simulator evidence (iPhone 16, com.apple.mobilesafari): - marker files in the data container, then replay '- clearState' (default) and '- clearState: <appId>' (explicit) via 'replay --maestro'; both replay 1/1, wipe the container, and leave MobileSafari not running (no reopen).
150 lines
6.1 KiB
TypeScript
150 lines
6.1 KiB
TypeScript
// Maestro flow case generation for the `maestro-validation` fuzz target (#1781 B2).
|
|
//
|
|
// Cases are built from the command shapes the converter accepts, then one shape rule is violated,
|
|
// so the failure surfaces in command-shape validation rather than in the YAML tokenizer. The
|
|
// shapes are rendered here because Maestro's accepted surface is a parser table rather than
|
|
// exported data; the test asserts this file covers `SUPPORTED_MAESTRO_COMMAND_NAMES`, so the copy
|
|
// cannot silently drift from the converter.
|
|
|
|
import fc from 'fast-check';
|
|
import { encodeValidationCase } from './validation-case.ts';
|
|
import { ACCEPT, SAFE_VALUES } from './validation-values.ts';
|
|
|
|
// ---------------------------------------------------------------------------------------------
|
|
|
|
const yamlText = (salt: number): string =>
|
|
JSON.stringify(SAFE_VALUES[salt % SAFE_VALUES.length] || 'Login');
|
|
|
|
/** One valid command rendered as YAML list-entry lines. */
|
|
function validMaestroCommand(pick: number, salt: number): string[] {
|
|
const text = yamlText(salt);
|
|
const options: (() => string[])[] = [
|
|
() => ['- back'],
|
|
() => ['- hideKeyboard'],
|
|
() => ['- stopApp'],
|
|
() => ['- clearState'],
|
|
() => [`- clearState: ${text}`],
|
|
() => ['- scroll'],
|
|
() => ['- waitForAnimationToEnd'],
|
|
() => ['- eraseText'],
|
|
() => [`- eraseText: ${1 + (salt % 9)}`],
|
|
() => ['- launchApp'],
|
|
() => [`- launchApp: ${text}`],
|
|
() => [`- tapOn: ${text}`],
|
|
() => ['- tapOn:', ` id: ${text}`],
|
|
() => ['- tapOn:', ` text: ${text}`],
|
|
() => [`- doubleTapOn: ${text}`],
|
|
() => [`- longPressOn: ${text}`],
|
|
() => [`- inputText: ${text}`],
|
|
() => ['- openLink: "https://example.com/page"'],
|
|
() => [`- assertVisible: ${text}`],
|
|
() => [`- assertNotVisible: ${text}`],
|
|
() => ['- assertTrue: true'],
|
|
() => [`- takeScreenshot: ${text}`],
|
|
() => ['- swipe:', ` direction: ${['UP', 'DOWN', 'LEFT', 'RIGHT'][salt % 4]}`],
|
|
() => [`- pressKey: ${['back', 'enter', 'return', 'home'][salt % 4]}`],
|
|
() => ['- extendedWaitUntil:', ` visible: ${text}`, ' timeout: 500'],
|
|
() => ['- scrollUntilVisible:', ' element:', ` text: ${text}`],
|
|
() => ['- repeat:', ' times: 2', ' commands:', ' - back'],
|
|
() => ['- runFlow: other.yaml'],
|
|
];
|
|
return options[pick % options.length]!();
|
|
}
|
|
|
|
const FAKE_MAESTRO_COMMANDS = [
|
|
'clickOn',
|
|
'tapOnPoint',
|
|
'evalScript',
|
|
'launchActivity',
|
|
'inputTextt',
|
|
] as const;
|
|
|
|
/** `code` is per class, like the CLI table: a class whose contract changes moves alone. */
|
|
type MaestroMutation = { name: string; code: string; lines: (salt: number) => string[] };
|
|
|
|
const MAESTRO_MUTATIONS: readonly MaestroMutation[] = [
|
|
{
|
|
// The B2 headline: an unknown command name must die in command validation, not the
|
|
// YAML tokenizer — mutated names used to be unreachable because the YAML never parsed.
|
|
name: 'unsupported-command',
|
|
code: 'INVALID_ARGS',
|
|
lines: (salt) => {
|
|
const name = FAKE_MAESTRO_COMMANDS[salt % FAKE_MAESTRO_COMMANDS.length]!;
|
|
return salt % 2 === 0 ? [`- ${name}`] : [`- ${name}: ${yamlText(salt)}`];
|
|
},
|
|
},
|
|
{
|
|
name: 'unsupported-field',
|
|
code: 'INVALID_ARGS',
|
|
lines: (salt) =>
|
|
salt % 2 === 0
|
|
? ['- tapOn:', ` bogusField: ${yamlText(salt)}`]
|
|
: ['- launchApp:', ` appId: ${yamlText(salt)}`, ' bogus: 1'],
|
|
},
|
|
{
|
|
name: 'multi-key-command',
|
|
code: 'INVALID_ARGS',
|
|
lines: (salt) => [`- tapOn: ${yamlText(salt)}`, ` inputText: ${yamlText(salt + 1)}`],
|
|
},
|
|
{
|
|
name: 'missing-required',
|
|
code: 'INVALID_ARGS',
|
|
lines: (salt) =>
|
|
salt % 2 === 0 ? ['- inputText:'] : ['- extendedWaitUntil:', ' timeout: 500'],
|
|
},
|
|
{ name: 'bad-press-key', code: 'INVALID_ARGS', lines: () => ['- pressKey: sleep'] },
|
|
{ name: 'scroll-options', code: 'INVALID_ARGS', lines: () => ['- scroll:', ' direction: UP'] },
|
|
];
|
|
|
|
/** Declared classes plus the config-level variant `unsupported-field` renders for a salt slice. */
|
|
export const MAESTRO_MUTATION_NAMES: readonly string[] = [
|
|
...MAESTRO_MUTATIONS.map((mutation) => mutation.name),
|
|
'config-unknown-key',
|
|
];
|
|
|
|
type MaestroBase = { commandPicks: number[]; salt: number; withConfig: boolean };
|
|
|
|
/** `planted` travels as one value: a mutation's lines and where they go are never separable. */
|
|
function renderMaestroFlow(base: MaestroBase, planted?: { lines: string[]; at: number }): string {
|
|
const commands = base.commandPicks.map((pick, index) =>
|
|
validMaestroCommand(pick, base.salt + index),
|
|
);
|
|
if (planted) commands.splice(Math.min(planted.at, commands.length), 0, planted.lines);
|
|
const body = commands.flat().join('\n');
|
|
const config = base.withConfig ? `appId: ${yamlText(base.salt)}\n---\n` : '';
|
|
return `${config}${body}\n`;
|
|
}
|
|
|
|
const maestroBaseArb: fc.Arbitrary<MaestroBase> = fc.record({
|
|
commandPicks: fc.array(fc.nat({ max: 100 }), { minLength: 1, maxLength: 4 }),
|
|
salt: fc.nat({ max: 10_000 }),
|
|
withConfig: fc.boolean(),
|
|
});
|
|
|
|
/** Encoded Maestro validation cases: ~1/3 valid flows, the rest one planted shape violation. */
|
|
export const maestroValidationArb: fc.Arbitrary<string> = fc
|
|
.record({ base: maestroBaseArb, mutationIndex: fc.nat(), insertAt: fc.nat({ max: 4 }) })
|
|
.map(({ base, mutationIndex, insertAt }) => {
|
|
if (mutationIndex % (MAESTRO_MUTATIONS.length + 3) >= MAESTRO_MUTATIONS.length) {
|
|
return encodeValidationCase({
|
|
payload: renderMaestroFlow(base),
|
|
mutation: 'valid',
|
|
expect: ACCEPT,
|
|
});
|
|
}
|
|
const mutation = MAESTRO_MUTATIONS[mutationIndex % MAESTRO_MUTATIONS.length]!;
|
|
// A config-level violation replaces the flow body mutation for a slice of the space.
|
|
if (mutation.name === 'unsupported-field' && base.salt % 3 === 0) {
|
|
return encodeValidationCase({
|
|
payload: `appId: com.example.app\nbogusKey: 1\n---\n${renderMaestroFlow({ ...base, withConfig: false })}`,
|
|
mutation: 'config-unknown-key',
|
|
expect: { outcome: 'reject', code: 'INVALID_ARGS' },
|
|
});
|
|
}
|
|
return encodeValidationCase({
|
|
payload: renderMaestroFlow(base, { lines: mutation.lines(base.salt), at: insertAt }),
|
|
mutation: mutation.name,
|
|
expect: { outcome: 'reject', code: mutation.code },
|
|
});
|
|
});
|