Files
memind/release-gate/impact.test.mjs
T
john 2f240e7500 fix(release-gate): skip duplicate CI work and stop live LLM blowups
Shared paths like db.mjs were pulling PAGE/DATA live agent suites into every
hotfix. Keep those cases for actual page-data changes, resume passed suites on
the same artifact, and fail fast on Docker/port issues instead of rerunning 100+
scenarios.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-08-14 22:15:16 +08:00

139 lines
5.0 KiB
JavaScript

import assert from 'node:assert/strict';
import test from 'node:test';
import { loadScenarioCatalog } from './catalog.mjs';
import { CORE_SCENARIO_IDS, selectImpactScenarios } from './impact.mjs';
test('docs-only changes use the compact core gate', async () => {
const catalog = await loadScenarioCatalog();
const selection = selectImpactScenarios({
catalog,
changedPaths: ['AGENTS.md', 'docs/local-dev.md'],
});
assert.equal(selection.strategy, 'core');
assert.deepEqual(selection.selected_ids, catalog
.map((scenario) => scenario.id)
.filter((id) => CORE_SCENARIO_IDS.includes(id)));
assert.equal(selection.unmapped_paths.length, 0);
});
test('H5 shell index.html maps to the UI domain', async () => {
const catalog = await loadScenarioCatalog();
const selection = selectImpactScenarios({
catalog,
changedPaths: ['index.html'],
});
assert.equal(selection.strategy, 'impact');
assert.deepEqual(selection.impact_groups, ['UI']);
assert.equal(selection.unmapped_paths.length, 0);
});
test('domain changes select the domain and dependency closure', async () => {
const catalog = await loadScenarioCatalog();
const selection = selectImpactScenarios({
catalog,
changedPaths: ['memory-v2-lifecycle.mjs'],
});
assert.equal(selection.strategy, 'impact');
assert.deepEqual(selection.impact_groups, ['CHAT', 'MEM']);
assert.equal(selection.selected_ids.includes('MEM-16'), true);
assert.equal(selection.selected_ids.includes('CHAT-15'), true);
assert.equal(selection.selected_ids.includes('BILL-07'), false);
});
test('critical paths expand mapped domains and unmapped paths block release', async () => {
const catalog = await loadScenarioCatalog();
const critical = selectImpactScenarios({
catalog,
changedPaths: ['server.mjs'],
});
assert.equal(critical.policy_version, 2);
assert.equal(critical.strategy, 'impact');
assert.ok(critical.selected_total < catalog.length);
assert.deepEqual(
critical.impact_groups,
['AGENT', 'AUTH', 'CFG', 'CHAT', 'DATA', 'FILE', 'MS', 'PAGE'],
);
assert.equal(critical.live_llm_selected, false);
assert.equal(critical.selected_ids.includes('DATA-01'), false);
assert.equal(critical.selected_ids.includes('PAGE-01'), false);
assert.equal(critical.selected_ids.includes('DATA-06'), true);
assert.deepEqual(critical.full_gate_reasons, []);
assert.throws(
() => selectImpactScenarios({
catalog,
changedPaths: ['new-runtime-kernel.mjs'],
}),
/unmapped runtime paths: new-runtime-kernel\.mjs/,
);
assert.throws(
() => selectImpactScenarios({
catalog,
changedPaths: [],
blockingReasons: ['deployed_commit_not_ancestor:abc'],
}),
/Impact selection is blocked/,
);
});
test('chat image turn-scope does not expand the image-to-page live domain', async () => {
const catalog = await loadScenarioCatalog();
const selection = selectImpactScenarios({
catalog,
changedPaths: ['chat-image-turn-scope.mjs', 'wechat-mp.mjs'],
});
assert.equal(selection.impact_groups.includes('IMGPG'), false);
assert.equal(selection.selected_ids.includes('PAGE-01'), false);
assert.equal(selection.selected_ids.includes('DATA-01'), false);
assert.equal(selection.selected_ids.includes('WX-01'), true);
assert.equal(selection.selected_ids.includes('CHAT-01'), true);
});
test('Page Data product code still selects live LLM DATA scenarios', async () => {
const catalog = await loadScenarioCatalog();
const selection = selectImpactScenarios({
catalog,
changedPaths: ['page-data-routes.mjs'],
});
assert.equal(selection.live_llm_selected, true);
assert.equal(selection.selected_ids.includes('DATA-01'), true);
assert.equal(selection.selected_ids.includes('DATA-06'), true);
});
test('image-generation files still map to IMGPG', async () => {
const catalog = await loadScenarioCatalog();
const selection = selectImpactScenarios({
catalog,
changedPaths: ['mindspace-image-generation.mjs'],
});
assert.equal(selection.impact_groups.includes('IMGPG'), true);
});
test('scenario fixtures are non-runtime and do not block mapping', async () => {
const catalog = await loadScenarioCatalog();
const selection = selectImpactScenarios({
catalog,
changedPaths: ['scenarios/ai-usage-survey.json', 'docs/branch-disposition.md'],
});
assert.equal(selection.strategy, 'core');
assert.equal(selection.live_llm_selected, false);
});
test('release policy changes use mapped REL and CFG domains without selecting the catalog', async () => {
const catalog = await loadScenarioCatalog();
const selection = selectImpactScenarios({
catalog,
changedPaths: [
'release-gate/impact.mjs',
'scripts/release-portal-canary-prod.sh',
'.runtime/portal/server.mjs',
],
});
assert.equal(selection.strategy, 'impact');
assert.deepEqual(selection.impact_groups, ['CFG', 'REL']);
assert.ok(selection.selected_total < catalog.length);
assert.equal(selection.changed_paths.includes('.runtime/portal/server.mjs'), true);
});