Files
hapi/web/src/lib/cursorPickerFlatCatalog.test.ts
T
3a8693f380 feat(cursor): migrate remote sessions to ACP with model/variant pickers (#799)
* feat(cli,web,hub): migrate Cursor remote sessions to ACP with model/effort pickers

Move stream-json remote launcher to legacy path and add ACP launcher with
set_config_option model/mode sync, optimistic keepalive on config changes, and
shared catalog caching. Web gets dual base/effort Cursor pickers for session and
new-session flows; hide composer status bar when Cursor sends no usage_update.

Co-authored-by: Cursor <cursoragent@cursor.com>

* fix(cli,web,shared): Cursor model picker — ACP wires + CLI sku variants

Enrich the web/mobile picker with agent --list-models SKUs grouped under
ACP wire bases, fix session-open base highlight, and keep catalog discovery
safe while the ACP transport holds the CLI lock.

Co-authored-by: Cursor <cursoragent@cursor.com>

* fix(cursor-acp): apply ACP default model when web resets to Default

Web sends model: null for Default; push session/set_config_option with the
ACP default[] wire so Cursor backend matches hub state. Regression tests
for setModel(null) and applyModelConfig(null).

Co-authored-by: Cursor <cursoragent@cursor.com>

* fix(acp): clear stale agent-acp lock when owning process is gone

Check lock pid with signal 0; remove orphaned lock dirs after SIGKILL or
crash so listCursorModels can run cold probes again. Regression tests for
guard and catalog discovery.

Co-authored-by: Cursor <cursoragent@cursor.com>

* test(cursor): use live pid for ACP lock handler tests

Stale-lock cleanup clears dead pids; handler tests must simulate an
active lock with the current process pid to avoid cold probes/timeouts.

Co-authored-by: Cursor <cursoragent@cursor.com>

* fix(acp): scope agent CLI lock guard to Cursor agent command only

Gemini/OpenCode/Kimi ACP sessions must not register agent-acp-active;
that blocked listCursorModels while unrelated backends were running.

Co-authored-by: Cursor <cursoragent@cursor.com>

* fix(hub,web): reject Cursor model changes for local sessions

Hub returns 409 when controlledByUser is set, matching Codex. Web hides
model and variant pickers for local Cursor sessions so users do not hit
a dead RPC path. Document pre-push-review in AGENTS.md.

Verified: bun typecheck; bun run test (919 cli + 243 hub + 768 web + 46 shared).
Co-authored-by: Cursor <cursoragent@cursor.com>

* fix(web): send stable ids for Cursor ask_question replies

Parse and submit question.id and option.id so ACP receives keys like
{ approach: ['a'] } instead of index/label. Verified: bun typecheck && bun run test.

Co-authored-by: Cursor <cursoragent@cursor.com>

---------

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-06 19:51:35 +08:00

50 lines
2.1 KiB
TypeScript

import { describe, expect, it } from 'vitest'
import { buildNewSessionCursorPickerState, shouldShowNewSessionCursorVariantPicker } from '@/components/NewSession/newSessionCursorModels'
import { buildCursorPickerState } from '@/lib/cursorPickerState'
/** Live ACP catalog shape: one wire id per base family (28 rows). */
const LIVE_ACP_SAMPLE = [
'default[]',
'composer-2.5[fast=true]',
'gpt-5.5[context=272k,reasoning=medium,fast=false]',
'claude-opus-4-8[thinking=true,context=300k,effort=high,fast=false]',
'gpt-5.3-codex[reasoning=medium,fast=false]',
] as const
describe('flat catalog (one wire per base)', () => {
const models = LIVE_ACP_SAMPLE.map((modelId) => ({ modelId }))
it('New Session uses flat picker without a useless variant dropdown', () => {
const picker = buildNewSessionCursorPickerState(models, 'auto')
expect(picker.mode).toBe('flat')
expect(shouldShowNewSessionCursorVariantPicker(picker)).toBe(false)
expect(picker.modelOptions.length).toBe(5)
expect(picker.modelOptions.some((row) => row.value === 'gpt-5.5[context=272k,reasoning=medium,fast=false]')).toBe(true)
})
it('Session chat flat picker lists exact wire ids', () => {
const picker = buildCursorPickerState({
catalog: buildNewSessionCursorPickerState(models, 'auto').catalog,
currentWireId: 'composer-2.5[fast=true]',
defaultValue: null
})
expect(picker.mode).toBe('flat')
expect(picker.showEffortPicker).toBe(false)
expect(picker.modelOptions.find((row) => row.value === 'composer-2.5[fast=true]')).toBeDefined()
})
})
describe('dual catalog (multiple wires per base)', () => {
const models = [
{ modelId: 'composer-2.5[fast=true]' },
{ modelId: 'composer-2.5[fast=false]' },
]
it('shows variant picker only when a base has 2+ wire ids', () => {
const picker = buildNewSessionCursorPickerState(models, 'composer-2.5[fast=true]')
expect(picker.mode).toBe('dual')
expect(shouldShowNewSessionCursorVariantPicker(picker)).toBe(true)
expect(picker.effortOptions).toHaveLength(2)
})
})