Files
gstack/test/eval-budgets-policy.test.ts
T
Garry TanandOpenAI Codex 71f6048e8a v1.84.1.0 fix: default Codex and Claude to frontier models (#2835)
* fix: default cross-model workflows to frontier models

* chore: bump version and changelog (v1.82.1.0)

Co-Authored-By: OpenAI Codex <noreply@openai.com>

* fix: repair frontier eval budgets and workflow instructions

Preserve frontier models and quality thresholds while fixing truncated judge output, ordered section expansion, consent checks, QA scoring, and ship audit gates. Add regression coverage and refresh generated docs.

Co-Authored-By: OpenAI Codex <noreply@openai.com>

* fix: resolve workflow gaps exposed by frontier evals

Clarify plan-review ordering and fallback modes, preserve deploy readiness gates, honor configured merge methods, correct benchmark and canary contracts, and restore vendored installs on setup failure. Cover recovery with real-shell regressions.

Co-Authored-By: OpenAI Codex <noreply@openai.com>

* fix: use agent capture budgets for deploy evals

Multi-turn deploy and benchmark sessions were incorrectly limited to the single-call judge timeout. Use the existing capture tier and leave outer-test cleanup headroom, with a free policy regression test. Keep all behavioral assertions and frontier models unchanged.

Co-Authored-By: OpenAI Codex <noreply@openai.com>

* fix: clarify retro workflow and evaluate compare instructions

Include compare mode in the frontier judge excerpt, define metric sources and snapshot ordering, and preserve the existing prompt-size budget.

Co-authored-by: OpenAI Codex <noreply@openai.com>

* fix: make documentation release review and publication consistent

Review before commit, clarify changelog safeguards and unavailable reviewer modes, and preserve raw PR bodies across separate shell calls. Keep title sync in one shell and add regression coverage.

Co-authored-by: OpenAI Codex <noreply@openai.com>

---------

Co-authored-by: OpenAI Codex <noreply@openai.com>
2026-09-09 08:57:21 -07:00

70 lines
3.1 KiB
TypeScript

/**
* Two invariants over paid-test timeout policy:
*
* 1. FIT: every tier in test/helpers/eval-budgets.ts executes inside the
* sharded runner's wall with real overhead (bun startup + module load +
* reporting). A budget the wall kills first is fiction — the failure
* surfaces as a shard 'timed-out' (no bun summary, no per-test message)
* instead of a clean test timeout. This is the structural fix for the
* seven 1,700s-inside-a-1,500s-job literals found in the 2026-08 audit.
*
* 2. RATCHET: raw numeric timeout literals in paid test files only shrink.
* New tests use the tiers; a literal is legal only with justification,
* and the count is pinned so sprawl can't regrow.
*/
import { describe, expect, test } from 'bun:test';
import { spawnSync } from 'node:child_process';
import * as fs from 'node:fs';
import * as path from 'node:path';
import { ALL_TIERS, PTY_LONG_MS } from './helpers/eval-budgets';
import { isPaidTestFile } from './helpers/paid-test-set';
import { DEFAULT_SHARD_TIMEOUT_MS } from '../scripts/test-paid-shards';
const ROOT = path.resolve(__dirname, '..');
/** Wall overhead reserve: bun startup, module load, retry bookkeeping. */
const WALL_OVERHEAD_MS = 120_000;
describe('eval budget tiers', () => {
test('every tier fits inside the shard wall minus overhead', () => {
for (const [name, ms] of Object.entries(ALL_TIERS)) {
expect(ms, `${name} exceeds the shard wall minus overhead`)
.toBeLessThanOrEqual(DEFAULT_SHARD_TIMEOUT_MS - WALL_OVERHEAD_MS);
}
});
test('tiers are ordered and the ceiling is PTY_LONG', () => {
const values = Object.values(ALL_TIERS);
expect([...values].sort((a, b) => a - b)).toEqual(values);
expect(Math.max(...values)).toBe(PTY_LONG_MS);
});
test('deploy workflow sessions use capture budgets, not single-call judge budgets', () => {
const source = fs.readFileSync(path.join(ROOT, 'test/skill-e2e-deploy.test.ts'), 'utf8');
expect(source).not.toContain('JUDGE_MS');
expect([...source.matchAll(/timeout:\s*CAPTURE_MS/g)]).toHaveLength(6);
expect([...source.matchAll(/\},\s*CAPTURE_LONG_MS\);/g)]).toHaveLength(6);
});
test('no paid-test timeout literal exceeds the ceiling tier', () => {
const out = spawnSync('git', ['ls-files', 'test/*.test.ts'], { cwd: ROOT, encoding: 'utf-8', timeout: 30_000 });
const files = out.stdout.split('\n').filter((f) => f && isPaidTestFile(f));
expect(files.length).toBeGreaterThan(50); // scan-rot guard
const offenders: string[] = [];
for (const rel of files) {
const source = fs.readFileSync(path.join(ROOT, rel), 'utf-8');
// Trailing test-timeout args: `}, 1_234_000);` / `}, 300000);`
for (const m of source.matchAll(/\}\s*,\s*(\d[\d_]*)\s*(?:\/\*[^*]*\*\/\s*)?\)/g)) {
const ms = Number(m[1].replaceAll('_', ''));
if (ms > PTY_LONG_MS * 1.25) offenders.push(`${rel}: ${m[1]}`);
}
}
expect(offenders,
`paid-test timeouts above the PTY_LONG ceiling (x1.25 slack) are fiction ` +
`against the ${DEFAULT_SHARD_TIMEOUT_MS / 1000}s shard wall — split the test instead:\n${offenders.join('\n')}`,
).toEqual([]);
});
});