mirror of
https://github.com/stablyai/orca.git
synced 2026-09-27 00:02:37 +00:00
* fix(sessions): cancel TUI transcript acquisition during teardown * fix(sessions): settle canceled handoffs without replacement launches * test(sessions): assert fenced teardown release --------- Co-authored-by: m4air <m4air@Mac.localdomain> Co-authored-by: Neil <4138956+nwparker@users.noreply.github.com>
152 lines
4.9 KiB
JavaScript
152 lines
4.9 KiB
JavaScript
import { createHash } from 'node:crypto'
|
|
import { mkdtemp, readFile, rm, writeFile } from 'node:fs/promises'
|
|
import { createRequire } from 'node:module'
|
|
import { tmpdir } from 'node:os'
|
|
import { join, resolve } from 'node:path'
|
|
import { fileURLToPath, pathToFileURL } from 'node:url'
|
|
import { applyPatch, parsePatch, reversePatch } from 'diff'
|
|
import { build } from 'esbuild'
|
|
|
|
if (process.env.ORCA_BACKGROUND_LAUNCH !== '1') {
|
|
throw new Error('Run with ORCA_BACKGROUND_LAUNCH=1.')
|
|
}
|
|
|
|
const root = fileURLToPath(new URL('../../../', import.meta.url))
|
|
const patch = await readFile(new URL('./fix.patch', import.meta.url), 'utf8')
|
|
const beforeSources = {}
|
|
const sourceHashes = {}
|
|
for (const parsed of parsePatch(patch)) {
|
|
const path = parsed.newFileName.replace(/^b\//, '')
|
|
const absolute = resolve(root, path)
|
|
const current = await readFile(absolute, 'utf8')
|
|
const before = applyPatch(current, reversePatch(parsed))
|
|
if (before === false) {
|
|
throw new Error(`Source changed; review the proof patch: ${path}`)
|
|
}
|
|
beforeSources[absolute.replaceAll('\\', '/')] = before
|
|
sourceHashes[path] = {
|
|
before: createHash('sha256').update(before).digest('hex'),
|
|
after: createHash('sha256').update(current).digest('hex')
|
|
}
|
|
}
|
|
|
|
for (const path of [
|
|
'src/main/native-chat/agent-session-wire/structured-agent-session-handoff-types.ts',
|
|
'src/main/native-chat/agent-session-wire/structured-tui-transcript-teardown.test.ts',
|
|
'src/main/native-chat/agent-session-wire/structured-tui-transcript-teardown-test-fixture.ts'
|
|
]) {
|
|
sourceHashes[path] = {
|
|
current: createHash('sha256')
|
|
.update(await readFile(resolve(root, path)))
|
|
.digest('hex')
|
|
}
|
|
}
|
|
|
|
const scratch = await mkdtemp(join(tmpdir(), 'orca-tui-transcript-acquisition-'))
|
|
const require = createRequire(import.meta.url)
|
|
let runnerModuleId
|
|
try {
|
|
const runnerPath = join(scratch, 'run-process.cjs')
|
|
await build({
|
|
absWorkingDir: root,
|
|
entryPoints: [resolve(root, 'src/shared/child-process/run-process.ts')],
|
|
outfile: runnerPath,
|
|
bundle: true,
|
|
platform: 'node',
|
|
format: 'cjs',
|
|
logLevel: 'silent'
|
|
})
|
|
runnerModuleId = require.resolve(runnerPath)
|
|
const { runProcess } = require(runnerModuleId)
|
|
const baselineConfig = join(scratch, 'before.config.mjs')
|
|
const fixedConfig = join(scratch, 'after.config.mjs')
|
|
const includes = [
|
|
'src/main/native-chat/agent-session-wire/structured-tui-transcript-teardown.test.ts'
|
|
]
|
|
const configImport = JSON.stringify(pathToFileURL(resolve(root, 'config/vitest.config.ts')).href)
|
|
await writeFile(
|
|
baselineConfig,
|
|
`import base from ${configImport};
|
|
const beforeSources = ${JSON.stringify(beforeSources)};
|
|
export default {...base, test: {...base.test, include: ${JSON.stringify(includes)}}, plugins: [{
|
|
name: 'tui-transcript-acquisition-before-fix', enforce: 'pre',
|
|
transform(_code, id) {
|
|
const before = beforeSources[id.replaceAll('\\\\', '/').split('?')[0]];
|
|
return before === undefined ? null : {code: before, map: null};
|
|
}
|
|
}]};\n`
|
|
)
|
|
|
|
await writeFile(
|
|
fixedConfig,
|
|
`import base from ${configImport};\nexport default {...base, test: {...base.test, include: ${JSON.stringify(includes)}}};\n`
|
|
)
|
|
|
|
async function run(label, config) {
|
|
const report = join(scratch, `${label}.json`)
|
|
const result = await runProcess({
|
|
program: process.execPath,
|
|
args: [
|
|
resolve(root, 'node_modules/vitest/vitest.mjs'),
|
|
'run',
|
|
'--config',
|
|
config,
|
|
'--reporter=json',
|
|
`--outputFile=${report}`
|
|
],
|
|
cwd: root,
|
|
env: { ...process.env, NODE_OPTIONS: '--max-old-space-size=512' },
|
|
timeoutMs: 90_000,
|
|
maxOutputBytes: 4 * 1024 * 1024
|
|
})
|
|
let parsed
|
|
try {
|
|
parsed = JSON.parse(await readFile(report, 'utf8'))
|
|
} catch (error) {
|
|
throw new Error(`${label} runner failed: ${result.stderr || result.stdout}`, { cause: error })
|
|
}
|
|
return {
|
|
exitCode: result.code,
|
|
passed: parsed.numPassedTests,
|
|
failed: parsed.numFailedTests,
|
|
failedCases: parsed.testResults.flatMap((suite) =>
|
|
suite.assertionResults
|
|
.filter((test) => test.status === 'failed')
|
|
.map((test) => test.fullName)
|
|
)
|
|
}
|
|
}
|
|
|
|
const before = await run('before', baselineConfig)
|
|
const after = await run('after', fixedConfig)
|
|
const passed =
|
|
before.failed === 6 &&
|
|
before.passed === 1 &&
|
|
before.passed + before.failed === 7 &&
|
|
after.exitCode === 0 &&
|
|
after.passed === 7 &&
|
|
after.failed === 0
|
|
console.log(
|
|
JSON.stringify(
|
|
{
|
|
comparison:
|
|
'Actual structured host teardown, record store, journal, and transcript watcher; baseline reverses catchup/forward/restart behavior through a temporary Vite transform',
|
|
sourceHashes,
|
|
before,
|
|
after,
|
|
passed
|
|
},
|
|
null,
|
|
2
|
|
)
|
|
)
|
|
if (!passed) {
|
|
process.exitCode = 1
|
|
}
|
|
} finally {
|
|
if (runnerModuleId) {
|
|
delete require.cache[runnerModuleId]
|
|
}
|
|
await rm(scratch, { recursive: true, force: true })
|
|
}
|