mirror of
https://github.com/stablyai/orca.git
synced 2026-09-23 08:02:31 +00:00
Codex child rows have carried a model field end-to-end since #9637, but the transcript reader never populated it, so every transcript-discovered child rendered with an empty model chip. Read the child's own turn_context.model from the rollout records already fetched for completion detection, so the sidebar can distinguish an orchestrator model from a subagent model. No added file I/O and no added rows: the model is parsed from records the reconcile pass already read, and both row components already render entry.model.
116 lines
3.9 KiB
TypeScript
116 lines
3.9 KiB
TypeScript
import { describe, expect, it } from 'vitest'
|
|
import {
|
|
AGENT_MODEL_MAX_LENGTH,
|
|
AGENT_STATUS_MAX_SUBAGENTS,
|
|
AGENT_TYPE_MAX_LENGTH
|
|
} from './agent-status-types'
|
|
import {
|
|
codexRosterToSnapshots,
|
|
finishCodexSubagent,
|
|
setCodexSubagentModel,
|
|
upsertCodexSubagent,
|
|
type CodexSubagentRoster
|
|
} from './codex-subagent-roster'
|
|
|
|
describe('Codex subagent roster', () => {
|
|
it('normalizes retained identity fields before storing them', () => {
|
|
const roster: CodexSubagentRoster = new Map()
|
|
|
|
upsertCodexSubagent(
|
|
roster,
|
|
' child-1 ',
|
|
{
|
|
agentType: `reviewer\n${'x'.repeat(AGENT_TYPE_MAX_LENGTH * 2)}`,
|
|
description: 'Review the sidebar lifecycle',
|
|
model: `gpt-model-${'x'.repeat(AGENT_MODEL_MAX_LENGTH * 2)}`,
|
|
state: 'working'
|
|
},
|
|
10
|
|
)
|
|
|
|
const snapshot = codexRosterToSnapshots(roster)?.[0]
|
|
expect([...roster.keys()]).toEqual(['child-1'])
|
|
expect(snapshot?.agentType).toHaveLength(AGENT_TYPE_MAX_LENGTH)
|
|
expect(snapshot?.agentType).not.toContain('\n')
|
|
expect(snapshot?.description).toBe('Review the sidebar lifecycle')
|
|
expect(snapshot?.model).toHaveLength(AGENT_MODEL_MAX_LENGTH)
|
|
|
|
finishCodexSubagent(roster, ' child-1 ')
|
|
expect(roster.size).toBe(0)
|
|
})
|
|
|
|
it('rejects an id that would normalize to an invisible child', () => {
|
|
const roster: CodexSubagentRoster = new Map()
|
|
|
|
upsertCodexSubagent(roster, ' ', { state: 'waiting' }, 10)
|
|
|
|
expect(roster.size).toBe(0)
|
|
})
|
|
|
|
it('bounds live storage while admitting a replacement after one child stops', () => {
|
|
const roster: CodexSubagentRoster = new Map()
|
|
for (let index = 0; index <= AGENT_STATUS_MAX_SUBAGENTS; index += 1) {
|
|
upsertCodexSubagent(roster, `child-${index}`, { state: 'working' }, index)
|
|
}
|
|
|
|
expect(roster.size).toBe(AGENT_STATUS_MAX_SUBAGENTS)
|
|
expect(roster.has(`child-${AGENT_STATUS_MAX_SUBAGENTS}`)).toBe(false)
|
|
|
|
finishCodexSubagent(roster, 'child-0')
|
|
upsertCodexSubagent(roster, 'replacement', { state: 'working' }, 100)
|
|
|
|
expect(roster.size).toBe(AGENT_STATUS_MAX_SUBAGENTS)
|
|
expect(roster.has('replacement')).toBe(true)
|
|
})
|
|
|
|
describe('setCodexSubagentModel', () => {
|
|
it('records the model without disturbing the child lifecycle or label', () => {
|
|
const roster: CodexSubagentRoster = new Map()
|
|
upsertCodexSubagent(roster, 'child-1', { description: '/root/audit', state: 'waiting' }, 10)
|
|
|
|
setCodexSubagentModel(roster, 'child-1', ' gpt-5.6-terra ')
|
|
|
|
expect(codexRosterToSnapshots(roster)).toEqual([
|
|
{
|
|
id: 'child-1',
|
|
agentType: undefined,
|
|
description: '/root/audit',
|
|
model: 'gpt-5.6-terra',
|
|
state: 'waiting',
|
|
startedAt: 10
|
|
}
|
|
])
|
|
})
|
|
|
|
it('never creates a row for a child that is no longer tracked', () => {
|
|
const roster: CodexSubagentRoster = new Map()
|
|
upsertCodexSubagent(roster, 'child-1', { state: 'working' }, 10)
|
|
finishCodexSubagent(roster, 'child-1')
|
|
|
|
// A model read racing a completed child must not resurrect its row.
|
|
setCodexSubagentModel(roster, 'child-1', 'gpt-5.6-terra')
|
|
|
|
expect(roster.size).toBe(0)
|
|
})
|
|
|
|
it('keeps a known model when the new value is empty', () => {
|
|
const roster: CodexSubagentRoster = new Map()
|
|
upsertCodexSubagent(roster, 'child-1', { model: 'gpt-5.6-sol', state: 'working' }, 10)
|
|
|
|
setCodexSubagentModel(roster, 'child-1', ' ')
|
|
setCodexSubagentModel(roster, 'child-1', undefined)
|
|
|
|
expect(roster.get('child-1')?.model).toBe('gpt-5.6-sol')
|
|
})
|
|
|
|
it('bounds an oversized model to the shared cap', () => {
|
|
const roster: CodexSubagentRoster = new Map()
|
|
upsertCodexSubagent(roster, 'child-1', { state: 'working' }, 10)
|
|
|
|
setCodexSubagentModel(roster, 'child-1', 'x'.repeat(AGENT_MODEL_MAX_LENGTH + 50))
|
|
|
|
expect(roster.get('child-1')?.model).toHaveLength(AGENT_MODEL_MAX_LENGTH)
|
|
})
|
|
})
|
|
})
|