Files
callstack__agent-device/scripts/mutation/modules.ts
Michał Pierzchała 1f9d940bff refactor(capture-kit): complete ADR 0019 end state — relocate snapshot and recording zones (#2385)
* refactor(capture-kit): relocate snapshot and recording zones into capture-kit

Move the ADR 0019 end-state capture zones into @agent-device/capture-kit:

- src/snapshot/** -> packages/capture-kit/src/snapshot/** (presentation,
  freshness, scroll-edge-state, ios-snapshot-runtime, android occlusion)
- src/recording/** -> packages/capture-kit/src/recording/**
- src/core/snapshot-{chrome,state,tree-ingestion,node-lookup}.ts ->
  packages/capture-kit/src/
- src/snapshot-quality/ test -> capture-kit presentation tree (directory
  retires with its last file)

Pure renames: import re-pointing and gate updates follow in the next commit.
The snapshot-desktop-surface test parks in src/__tests__/ because it pins
the root eager-import-closure walker.

* refactor(capture-kit): re-point capture and recording consumers to the new subpaths

Rewires every consumer of the relocated snapshot/recording modules to the new @agent-device/capture-kit subpath exports, adds the 23 subpath entries to the capture-kit exports map, fixes the moved recording-scripts test's __dirname-relative paths for the deeper location, and records the completed migration in ADR 0019's end state.

* chore(gates): align layering, mutation, fallow and CI gates with the capture-kit relocation

Moves the executable-policy roots, presentation-owner constant, zone ranks, authority fixture, mutation sharding globs, stryker aliases, fallow baselines and the iOS workflow's android-owned paths-ignore entry onto the new packages/capture-kit paths, and extends the planted-red coverage to the new presentation-owner subpath.

* chore: point capture-domain source-of-truth comments at the relocated capture-kit modules

* test: point shutdown recording mock at capture-kit and cover interactor acquisition presentation

* test(capture-kit): update upstream presentation test imports

* chore(gates): follow relocated snapshot assembly in R74

* test(daemon): freeze prewarm deadline assertion clocks
2026-09-08 12:41:39 +02:00

191 lines
6.9 KiB
TypeScript

// Enumerated decision kernels the mutation lane measures (issue #1415).
//
// Mutation score is the only mechanical answer to "is this test load-bearing or
// decorative", but a full-suite sweep is unaffordable. This registry is the
// single source of truth for what Stryker mutates: `stryker.config.json`'s
// `mutate` globs are asserted against it, and PR-affected selection maps changed
// files onto modules through it.
//
// Membership rule: pure decision kernels only — a surviving mutant here means a
// silently wrong agent-facing decision. Anything that spawns subprocesses or
// waits real time is out of scope by construction (its mutants would be timeout
// noise, not test-strength signal).
export type ModuleId =
| 'kernel-errors'
| 'daemon-ref-frame'
| 'interaction-settle'
| 'scroll-edge-state'
| 'selectors'
| 'target-annotation-serde'
| 'snapshot-occlusion';
export type KernelModule = {
readonly id: ModuleId;
readonly label: string;
/** Globs handed to Stryker's `mutate`. */
readonly mutate: readonly string[];
/**
* Paths this module owns; a trailing `/` marks a directory prefix. Sources
* only — the tests whose strength the score measures are derived from the
* import graph in `ownership.ts`, never listed here.
*/
readonly owns: readonly string[];
/**
* How many parallel jobs the module's mutants are sliced across. One job per
* module is the default; a module big enough to outrun the lane's 30-minute
* budget declares more (`--shard i/n` picks the slice).
*/
readonly shards?: number;
};
export const KERNEL_MODULES: readonly KernelModule[] = [
{
id: 'kernel-errors',
label: 'Error retriability + hints',
mutate: ['packages/kernel/src/errors.ts'],
owns: ['packages/kernel/src/errors.ts'],
},
{
id: 'daemon-ref-frame',
label: 'Ref-frame admission matrix (ADR 0014)',
mutate: ['src/daemon/ref-frame.ts'],
owns: ['src/daemon/ref-frame.ts'],
},
{
id: 'interaction-settle',
label: 'Interaction settle decisions',
mutate: ['src/commands/interaction/runtime/settle.ts'],
owns: ['src/commands/interaction/runtime/settle.ts'],
},
{
id: 'scroll-edge-state',
label: 'Scroll edge-state detection',
mutate: [
'packages/capture-kit/src/snapshot/scroll-edge-state.ts',
'packages/capture-kit/src/snapshot/scroll-edge-state/**/*.ts',
],
owns: [
'packages/capture-kit/src/snapshot/scroll-edge-state.ts',
'packages/capture-kit/src/snapshot/scroll-edge-state/',
],
},
{
id: 'selectors',
label: 'Selector parsing + matching',
mutate: [
'packages/selectors/src/**/*.ts',
'!packages/selectors/src/**/*.test.ts',
'!packages/selectors/src/internal/__tests__/**',
],
// Selector tests live under the owned package source, so the prefix covers them.
owns: ['packages/selectors/src/'],
// ~1,280 mutants at the observed ~3s/mutant on a 2-core runner is ~64
// minutes in one job — past the acceptance budget and its own timeout.
shards: 4,
},
{
id: 'target-annotation-serde',
label: 'Target-annotation comment-line codec (ADR 0012 decision 3)',
mutate: ['packages/ad-script/src/internal/target-annotation-serde.ts'],
owns: ['packages/ad-script/src/internal/target-annotation-serde.ts'],
},
{
id: 'snapshot-occlusion',
label: 'Snapshot occlusion (covered/not-covered) decisions',
mutate: ['packages/capture-kit/src/snapshot-occlusion.ts'],
owns: ['packages/capture-kit/src/snapshot-occlusion.ts'],
},
];
export const ALL_MODULE_IDS: readonly ModuleId[] = KERNEL_MODULES.map((module) => module.id);
export function moduleById(id: ModuleId): KernelModule {
const found = KERNEL_MODULES.find((module) => module.id === id);
if (!found) throw new Error(`Unknown mutation module: ${id}`);
return found;
}
export function isModuleId(value: string): value is ModuleId {
return ALL_MODULE_IDS.includes(value as ModuleId);
}
/** Mutate globs for a module subset, in registry order. */
export function mutateGlobs(ids: readonly ModuleId[] = ALL_MODULE_IDS): string[] {
return KERNEL_MODULES.filter((module) => ids.includes(module.id)).flatMap((module) => [
...module.mutate,
]);
}
/**
* The module a lane-tooling change proves itself against. `kernel-errors` is the
* cheapest real sweep in the registry (one file, ~183 mutants), so a change to
* the harness or the config runs actual mutants end to end without paying for
* the full sweep.
*/
export const LANE_CANARY: ModuleId = 'kernel-errors';
/** One mutation job: a module, optionally one slice of it. */
export type ShardSpec = { name: string; module: ModuleId; shard?: string };
/**
* The jobs a module set expands into. Both workflows' matrices are this list, so
* a registry module (or a change to its shard count) can never leave the sweep
* without the workflow assertions noticing.
*/
export function shardMatrix(ids: readonly ModuleId[] = ALL_MODULE_IDS): ShardSpec[] {
return KERNEL_MODULES.filter((module) => ids.includes(module.id)).flatMap((module) => {
const count = module.shards ?? 1;
if (count === 1) return [{ name: module.id, module: module.id }];
return Array.from({ length: count }, (_unused, index) => ({
name: `${module.id}-${index + 1}`,
module: module.id,
shard: `${index + 1}/${count}`,
}));
});
}
export function normalizePath(filePath: string): string {
return filePath.replaceAll('\\', '/').replace(/^\.\//, '');
}
/**
* Where the mutation lane can ever find a kernel's owning test: root `src/` or
* a workspace package's `src/` — the same two roots `unit-core`'s `include`
* (`vitest.config.ts`) draws tests from. A kernel whose test lives outside
* both (e.g. `scripts/__tests__`) is unreachable by construction, not silently
* dropped.
*/
const KERNEL_TEST_FILE_RE = /^(?:src\/|packages\/[^/]+\/src\/).*\.test\.ts$/;
export function isKernelTestFile(filePath: string): boolean {
return KERNEL_TEST_FILE_RE.test(normalizePath(filePath));
}
/**
* Which kernel module owns a repository-relative *source* path, if any.
*
* Test-file attribution is derived from the import graph — see
* `derivedAffectedModules` in `ownership.ts`, which is what the PR lane calls.
*/
export function moduleForFile(filePath: string): ModuleId | undefined {
const normalized = normalizePath(filePath);
for (const module of KERNEL_MODULES) {
for (const owned of module.owns) {
const match = owned.endsWith('/') ? normalized.startsWith(owned) : normalized === owned;
if (match) return module.id;
}
}
return undefined;
}
/** Kernel modules whose registry-owned paths a diff touches. */
export function affectedModules(changedFiles: readonly string[]): ModuleId[] {
const ids = new Set<ModuleId>();
for (const file of changedFiles) {
const id = moduleForFile(file);
if (id) ids.add(id);
}
return KERNEL_MODULES.filter((module) => ids.has(module.id)).map((module) => module.id);
}