This commit is contained in:
Oleg Maslov
2026-09-02 10:14:22 +02:00
parent 0c3e2ead3b
commit b20b138fe4
771 changed files with 161561 additions and 9027 deletions

View File

@@ -50,6 +50,143 @@ describe('assertsUnverifiedCompletion', () => {
}
});
it('preserves success claims supplied by a closed-world rewrite request', () => {
const request = 'Rewrite this and preserve the facts: API tests pass. Browser tests have two failures.';
const response = 'API tests are passing. Browser tests still have two failures.';
expect(assertsUnverifiedCompletion(response, [], request)).toBe(false);
});
it('does not mistake future exit criteria for completed verification', () => {
const response = [
'Exit criteria:',
'- All tests pass.',
'- The build succeeds.',
].join('\n');
expect(assertsUnverifiedCompletion(response, [])).toBe(false);
});
it('does not mistake a pass-condition table for completed verification', () => {
const response = [
'## Minimum next checks (evidence-only)',
'| Check | Pass condition |',
'|---|---|',
'| Verify the cited CI build | Build passes for the release commit |',
'**VERDICT: FAIL** - Production readiness is not established.',
].join('\n');
expect(assertsUnverifiedCompletion(response, [], 'Give an evidence-only production verdict.')).toBe(false);
});
it('still fires on an unsupported status claim inside a table', () => {
const response = [
'## Next checks',
'| Component | Current status | Pass condition |',
'|---|---|---|',
'| Web build | All tests pass | Build passes for the release commit |',
].join('\n');
expect(assertsUnverifiedCompletion(response, [])).toBe(true);
});
it('does not let planning text in an adjacent cell hide a status claim', () => {
const response = [
'| Current status | Required follow-up |',
'|---|---|',
'| All tests pass | Must rerun on Windows |',
].join('\n');
expect(assertsUnverifiedCompletion(response, [])).toBe(true);
});
it('maps escaped Markdown pipes to the correct status column', () => {
const response = [
'| Detail \\| notes | Pass condition | Current status |',
'|---|---|---|',
'| Matrix | Must be green | All tests pass |',
].join('\n');
expect(assertsUnverifiedCompletion(response, [])).toBe(true);
});
it('recognizes pass-condition tables without outer pipes', () => {
const response = [
'Check | Pass condition',
'--- | ---',
'Verify the cited CI build | Build passes for the release commit',
].join('\n');
expect(assertsUnverifiedCompletion(response, [])).toBe(false);
});
it('stops planning context at adjacent table boundaries', () => {
const response = [
'Check | Pass condition',
'--- | ---',
'Verify the cited CI build | Build passes for the release commit',
'',
'Component | Current status',
'--- | ---',
'Web build | All tests pass',
].join('\n');
expect(assertsUnverifiedCompletion(response, [])).toBe(true);
});
it('stops list planning context at the nearest section heading', () => {
const response = [
'## Next checks',
'- Run CI on Windows.',
'',
'## Current status',
'- All tests pass.',
].join('\n');
expect(assertsUnverifiedCompletion(response, [])).toBe(true);
});
it('still recognizes a success phrase as prospective inside next checks', () => {
const response = [
'## Next checks',
'- All tests pass.',
].join('\n');
expect(assertsUnverifiedCompletion(response, [])).toBe(false);
});
it('does not treat a previous bullet as the current planning header', () => {
const response = [
'## Current status',
'- Next checks are documented separately.',
'- All tests pass.',
].join('\n');
expect(assertsUnverifiedCompletion(response, [])).toBe(true);
});
it('inherits planning context through nested Markdown sections', () => {
const response = [
'## Next checks',
'### Windows',
'- All tests pass.',
].join('\n');
expect(assertsUnverifiedCompletion(response, [])).toBe(false);
});
it('still fires on an unsupported claim when the user did not supply it', () => {
expect(assertsUnverifiedCompletion(
'All tests pass and the build succeeds.',
[],
'Fix the failing tests.',
)).toBe(true);
});
it('does not let narrative use of "after" hide an unsupported completion claim', () => {
expect(assertsUnverifiedCompletion(
'After the fix, all tests pass.',
[],
'Fix the failing tests.',
)).toBe(true);
});
it('accepts an honestly attributed user claim without upgrading it', () => {
expect(assertsUnverifiedCompletion(
'You reported that all tests pass; I have not independently verified that claim.',
[],
'All tests pass.',
)).toBe(false);
});
it('ignores trivially short content', () => {
expect(assertsUnverifiedCompletion('', [])).toBe(false);
expect(assertsUnverifiedCompletion('ok', [])).toBe(false);