Files
iamtoruk bfcf63ce3a fix(codex): stop double-counting reasoning tokens in Tok/s throughput
The same reasoning-inclusion bug #1075/#1078 fixed for cost also affected
the throughput display: activeGeneratedTokens/taskGeneratedTokens in the
Codex parser and generatedTokens in the live codex-tps reader summed
outputTokens + reasoningTokens, but reasoning is already inside output.
All three sites now route through the billableOutputTokens('codex', ...)
helper #1078 introduced, so the throughput numerator can never drift from
the billed one.

Cost and every token count are unchanged (verified byte-identical on a
real 51,753-call corpus); Tok/s drops 20-42% depending on how
reasoning-heavy the model is.

activeGeneratedTokens/activeDurationMs/toolWaitMs are stored verbatim in
both the Codex result cache and the session cache rather than re-derived
on read, so neither self-heals: CODEX_CACHE_VERSION moves 11 -> 13 (12 is
claimed by feat/core-extraction's own port of this feature) and
PROVIDER_PARSE_VERSIONS.codex gains a codex-tps-v1 suffix, forcing Codex
sessions to re-parse once.

Closes #1079
2026-08-21 14:42:04 -07:00

157 lines
10 KiB
TypeScript

import { appendFile, mkdtemp, writeFile } from 'node:fs/promises'
import { tmpdir } from 'node:os'
import { join } from 'node:path'
import { describe, expect, it } from 'vitest'
import { CodexThroughputReader, readCodexThroughput, renderCodexThroughput } from '../src/codex-throughput.js'
describe('Codex throughput prototype', () => {
it('estimates generated tokens/sec between token_count checkpoints', async () => {
const dir = await mkdtemp(join(tmpdir(), 'codeburn-tps-'))
const path = join(dir, 'rollout.jsonl')
await writeFile(path, [
JSON.stringify({ type: 'session_meta', timestamp: '2026-07-25T00:00:00.000Z', payload: { model: 'gpt-5.6-sol' } }),
JSON.stringify({ type: 'event_msg', timestamp: '2026-07-25T00:00:00.000Z', payload: { type: 'task_started' } }),
JSON.stringify({ type: 'response_item', timestamp: '2026-07-25T00:00:02.000Z', payload: { type: 'function_call', call_id: 'tool-1' } }),
JSON.stringify({ type: 'response_item', timestamp: '2026-07-25T00:00:05.000Z', payload: { type: 'function_call_output', call_id: 'tool-1' } }),
JSON.stringify({ type: 'event_msg', timestamp: '2026-07-25T00:00:05.000Z', payload: { type: 'mcp_tool_call_end', duration: { secs: 3, nanos: 0 } } }),
JSON.stringify({ type: 'event_msg', timestamp: '2026-07-25T00:00:10.000Z', payload: { type: 'token_count', info: { last_token_usage: { output_tokens: 80, reasoning_output_tokens: 20 }, total_token_usage: { total_tokens: 100, output_tokens: 80, reasoning_output_tokens: 20 } } } }),
JSON.stringify({ type: 'event_msg', timestamp: '2026-07-25T00:00:15.000Z', payload: { type: 'token_count', info: { last_token_usage: { output_tokens: 40, reasoning_output_tokens: 10 }, total_token_usage: { total_tokens: 150, output_tokens: 120, reasoning_output_tokens: 30 } } } }),
JSON.stringify({ type: 'event_msg', timestamp: '2026-07-25T00:00:16.000Z', payload: { type: 'task_complete', duration_ms: 10000 } }),
].join('\n'))
const points = await readCodexThroughput(path)
expect(points).toHaveLength(2)
// Reasoning is a subset of output_tokens (#1075/#1078), not additive: the
// checkpoints report output 80/40 and reasoning 20/10, so the generated
// numerator is output alone (80, then 40), matching the cost path.
expect(points[1]).toMatchObject({ generatedTokens: 40, elapsedSeconds: 5, generatedTokensPerSecond: 8, activeDurationSeconds: 7, activeGeneratedTokensPerSecond: (80 + 40) / 7, toolWaitSeconds: 3, model: 'gpt-5.6-sol' })
expect(renderCodexThroughput(points, path)).toContain('17.1 generated tokens/sec')
})
it('REGRESSION (#1079): does not add reasoning tokens on top of output for Tok/s', async () => {
// Reasoning tokens are a SUBSET of output_tokens (#1075/#1078), not a
// separate bucket. A single checkpoint reporting output=60, reasoning=40
// must drive Tok/s off 60, not 100 -- summing them would double-count 40
// tokens that are already inside the 60. If this ever reverts to
// `outputTokens + reasoningTokens`, activeGeneratedTokensPerSecond becomes
// 10 (100 tokens / 10s) instead of 6 (60 tokens / 10s).
const dir = await mkdtemp(join(tmpdir(), 'codeburn-tps-regression-'))
const path = join(dir, 'rollout.jsonl')
await writeFile(path, [
JSON.stringify({ type: 'session_meta', timestamp: '2026-07-25T00:00:00.000Z', payload: { model: 'gpt-5.5' } }),
JSON.stringify({ type: 'event_msg', timestamp: '2026-07-25T00:00:00.000Z', payload: { type: 'task_started' } }),
JSON.stringify({ type: 'event_msg', timestamp: '2026-07-25T00:00:10.000Z', payload: { type: 'token_count', info: { last_token_usage: { output_tokens: 60, reasoning_output_tokens: 40 }, total_token_usage: { total_tokens: 100, output_tokens: 60, reasoning_output_tokens: 40 } } } }),
JSON.stringify({ type: 'event_msg', timestamp: '2026-07-25T00:00:10.000Z', payload: { type: 'task_complete', duration_ms: 10000 } }),
].join('\n'))
const points = await readCodexThroughput(path)
expect(points).toHaveLength(1)
expect(points[0]).toMatchObject({
outputTokens: 60,
reasoningTokens: 40,
generatedTokens: 60,
taskGeneratedTokens: 60,
activeGeneratedTokensPerSecond: 6,
})
})
it('parses only appended complete lines while watching a growing rollout', async () => {
const dir = await mkdtemp(join(tmpdir(), 'codeburn-tps-watch-'))
const path = join(dir, 'rollout.jsonl')
const first = JSON.stringify({ type: 'event_msg', timestamp: '2026-07-25T00:00:00.000Z', payload: { type: 'token_count', info: { last_token_usage: { output_tokens: 8, reasoning_output_tokens: 2 }, total_token_usage: { total_tokens: 10, output_tokens: 8, reasoning_output_tokens: 2 } } } })
const second = JSON.stringify({ type: 'event_msg', timestamp: '2026-07-25T00:00:01.000Z', payload: { type: 'token_count', info: { last_token_usage: { output_tokens: 4, reasoning_output_tokens: 1 }, total_token_usage: { total_tokens: 15, output_tokens: 12, reasoning_output_tokens: 3 } } } })
await writeFile(path, first.slice(0, 40))
const reader = new CodexThroughputReader()
expect(await reader.update(path)).toEqual([])
await appendFile(path, first.slice(40) + '\n' + second + '\n')
const points = await reader.update(path)
expect(points).toHaveLength(2)
// second checkpoint: output 4 + reasoning 1 -> billable numerator is 4
// (reasoning already inside output_tokens), not the additive 5.
expect(points[1]).toMatchObject({ generatedTokens: 4, generatedTokensPerSecond: 4 })
})
it('ignores replayed pre-fork checkpoints before estimating new work', async () => {
const dir = await mkdtemp(join(tmpdir(), 'codeburn-tps-fork-'))
const path = join(dir, 'rollout.jsonl')
const line = (timestamp: string, payload: Record<string, unknown>) => JSON.stringify({ type: 'event_msg', timestamp, payload })
await writeFile(path, [
JSON.stringify({ type: 'session_meta', timestamp: '2026-07-25T00:00:00.000Z', payload: { model: 'gpt-5.6-sol', forked_from_id: 'parent' } }),
line('2026-07-25T00:00:01.000Z', { type: 'task_started' }),
line('2026-07-25T00:00:02.000Z', { type: 'token_count', info: { last_token_usage: { output_tokens: 100 }, total_token_usage: { total_tokens: 100, output_tokens: 100 } } }),
line('2026-07-25T00:00:03.000Z', { type: 'task_complete', duration_ms: 1000 }),
line('2026-07-25T00:00:06.000Z', { type: 'task_started' }),
line('2026-07-25T00:00:08.000Z', { type: 'token_count', info: { last_token_usage: { output_tokens: 20 }, total_token_usage: { total_tokens: 20, output_tokens: 20 } } }),
line('2026-07-25T00:00:10.000Z', { type: 'task_complete', duration_ms: 4000 }),
].join('\n'))
const points = await readCodexThroughput(path)
expect(points).toHaveLength(1)
expect(points[0]).toMatchObject({ generatedTokens: 20, activeGeneratedTokensPerSecond: 5 })
})
it('keeps oversized rollout lines bounded while extracting token usage', async () => {
const dir = await mkdtemp(join(tmpdir(), 'codeburn-tps-large-'))
const path = join(dir, 'rollout.jsonl')
const largeResult = JSON.stringify({
type: 'event_msg',
timestamp: '2026-07-25T00:00:01.000Z',
payload: {
type: 'token_count',
info: { last_token_usage: { output_tokens: 12 }, total_token_usage: { total_tokens: 12, output_tokens: 12 } },
result: 'x'.repeat(5 * 1024 * 1024),
},
})
await writeFile(path, largeResult)
const points = await readCodexThroughput(path)
expect(points).toHaveLength(1)
expect(points[0]?.generatedTokens).toBe(12)
})
it('keeps MCP duration when arguments and result surround the middle field', async () => {
const dir = await mkdtemp(join(tmpdir(), 'codeburn-tps-mcp-large-'))
const path = join(dir, 'rollout.jsonl')
const mcp = JSON.stringify({
type: 'event_msg', timestamp: '2026-07-25T00:00:05.000Z',
payload: {
type: 'mcp_tool_call_end',
invocation: { server: 'github', tool: 'get_issue', arguments: { body: 'x'.repeat(5 * 1024 * 1024) } },
duration: { secs: 3, nanos: 0 },
result: { duration: '9s', text: 'x'.repeat(5 * 1024 * 1024) },
},
})
await writeFile(path, [
JSON.stringify({ type: 'session_meta', timestamp: '2026-07-25T00:00:00.000Z', payload: { model: 'gpt-5.6-sol' } }),
JSON.stringify({ type: 'event_msg', timestamp: '2026-07-25T00:00:00.000Z', payload: { type: 'task_started' } }),
mcp,
JSON.stringify({ type: 'event_msg', timestamp: '2026-07-25T00:00:08.000Z', payload: { type: 'token_count', info: { last_token_usage: { output_tokens: 100 }, total_token_usage: { total_tokens: 100, output_tokens: 100 } } } }),
JSON.stringify({ type: 'event_msg', timestamp: '2026-07-25T00:00:10.000Z', payload: { type: 'task_complete', duration_ms: 10000 } }),
].join('\n'))
const points = await readCodexThroughput(path)
expect(points[0]).toMatchObject({ toolWaitSeconds: 3, activeDurationSeconds: 7, activeGeneratedTokensPerSecond: 100 / 7 })
})
it('keeps a streamed string MCP duration when arguments and result surround the middle field', async () => {
const dir = await mkdtemp(join(tmpdir(), 'codeburn-tps-mcp-string-large-'))
const path = join(dir, 'rollout.jsonl')
const mcp = JSON.stringify({
type: 'event_msg', timestamp: '2026-07-25T00:00:05.000Z',
payload: {
type: 'mcp_tool_call_end',
invocation: { server: 'github', tool: 'get_issue', arguments: { body: 'x'.repeat(5 * 1024 * 1024) } },
duration: '3s',
result: { duration: '9s', text: 'x'.repeat(5 * 1024 * 1024) },
},
})
await writeFile(path, [
JSON.stringify({ type: 'session_meta', timestamp: '2026-07-25T00:00:00.000Z', payload: { model: 'gpt-5.6-sol' } }),
JSON.stringify({ type: 'event_msg', timestamp: '2026-07-25T00:00:00.000Z', payload: { type: 'task_started' } }),
mcp,
JSON.stringify({ type: 'event_msg', timestamp: '2026-07-25T00:00:08.000Z', payload: { type: 'token_count', info: { last_token_usage: { output_tokens: 100 }, total_token_usage: { total_tokens: 100, output_tokens: 100 } } } }),
JSON.stringify({ type: 'event_msg', timestamp: '2026-07-25T00:00:10.000Z', payload: { type: 'task_complete', duration_ms: 10000 } }),
].join('\n'))
const points = await readCodexThroughput(path)
expect(points[0]).toMatchObject({ toolWaitSeconds: 3, activeDurationSeconds: 7, activeGeneratedTokensPerSecond: 100 / 7 })
})
})