| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408 |
- // Web e2e scenario: agent-preset selection. Every lane mounts the plugin's
- // own shipped presets; this is the lane that puts them in front of a browser.
- //
- // Two surfaces, one host rule: a session's composition is fixed when the
- // session starts. Before that, the new-session chip stages the choice beside
- // the workspace picker — the only screen where it still works. After it, the
- // session header names what the session runs and offers no control at all,
- // because the host answers `agent-preset-locked` to anything else.
- //
- // Zero model calls: no replay fixture mounts, so a stray stream fails loud.
- import { fileURLToPath } from 'node:url'
- import { mkdir, mkdtemp, realpath, rm, writeFile } from 'node:fs/promises'
- import { tmpdir } from 'node:os'
- import { join } from 'node:path'
- import type { Browser, Page } from 'playwright'
- import { chromium } from 'playwright'
- import { afterAll, beforeAll, describe, expect, it, onTestFailed } from 'vitest'
- import {
- SESSION_FORMAT_VERSION, SessionId as sessionId, type SessionEvent, type SessionHeader, type SessionId,
- } from '@deepseek-ai/dsh-session'
- import { snapshotSubagentDescriptor } from '@deepseek-ai/dsh-subagent'
- import { createSystemMessage, createUserMessage } from '@deepseek-ai/dsh-llm'
- import {
- captureStableAria, compareOrRefreshGolden, launchWebScaffold, seedSession, watchConsole,
- webSnapshotMode, type WebScaffold,
- } from './scaffold.ts'
- import {
- connectFreshWorkspace, newEnglishPage, saveFailureShot, writeComposerDraft,
- } from './support.ts'
- const SNAPSHOT_DIR = fileURLToPath(new URL('./expected/agent-preset-selection', import.meta.url))
- const HERO_EXPECTED = join(SNAPSHOT_DIR, 'hero.expected.md')
- const MENU_EXPECTED = join(SNAPSHOT_DIR, 'menu.expected.md')
- const HEADER_EXPECTED = join(SNAPSHOT_DIR, 'header.expected.md')
- const MODE = webSnapshotMode()
- const SEED_ID = 'agent-preset-selection-web-e2e'
- /** A project skill only a preset that mounts `skill-filesystem` can discover. */
- const SKILL_NAME = 'preset-catalog-demo'
- /** The preset whose rows resolve and then refuse to start. */
- const REFUSING_ID = 'zz-refusing'
- /**
- * Seed a preset discovery reports healthy and the mount refuses.
- *
- * Every row resolves — the module is right there beside the composition — so
- * health has nothing to report and the chip offers the preset like any other.
- * Only starting it finds out, which is the case the chip's banner exists for.
- * @param root - the lane's writable preset root.
- */
- async function seedRefusingPreset(root: string): Promise<void> {
- const directory = join(root, REFUSING_ID)
- await mkdir(directory, { recursive: true })
- await writeFile(join(directory, 'refuses.mjs'),
- 'export const name = \'refuses\'\nexport function apply() { throw new Error(\'this row refuses to start\') }\n')
- await writeFile(join(directory, 'agent.cordis.yml'), '- id: refuses\n name: ./refuses.mjs\n')
- await writeFile(join(directory, 'preset.yml'),
- 'name: Refusing mode\ndescription: Resolves, then refuses to start.\n')
- }
- /**
- * Seed one project skill under the connected workspace.
- *
- * Local skill discovery is a PRESET row, so this file is visible through
- * `standard` and invisible through `minimal` — which makes the '/' menu's
- * skill group a statement about the session's composition.
- * @param workspaceCwd - the scaffold's temp project parent.
- */
- async function seedWorkspaceSkill(workspaceCwd: string): Promise<void> {
- const directory = join(workspaceCwd, 'workspace', '.agents', 'skills', SKILL_NAME)
- await mkdir(directory, { recursive: true })
- await writeFile(join(directory, 'SKILL.md'), [
- '---',
- `name: ${SKILL_NAME}`,
- 'description: Prove the slash catalog follows the session composition',
- '---',
- '',
- 'Body.',
- '',
- ].join('\n'))
- }
- /**
- * A settled one-turn session with no model content: this lane asserts chrome
- * around a conversation, not a conversation, and a recorded turn would tie
- * the golden to a provider's wording for no gain. Its empty system head
- * belongs to the first step, before the user message.
- * @returns a tokenized session log ending on a closed turn.
- */
- function seedLog(): string {
- const time = 1784974100000
- const at = (index: number, event: Record<string, unknown>): string =>
- JSON.stringify({ ...event, seq: index, time: time + index })
- return [
- JSON.stringify({
- type: 'session', version: SESSION_FORMAT_VERSION, id: '{{sessionId}}',
- createdAt: time, cwd: '{{cwd}}/workspace', isSeeded: false, delegationDepth: 0,
- }),
- at(0, { type: 'turn/start', data: { turn: 1, trigger: { kind: 'message', source: { kind: 'user', rpcId: 'seed' } } } }),
- at(1, { type: 'step/start', data: { turn: 1, step: 1 } }),
- at(2, {
- type: 'system/message',
- data: { turn: 1, step: 1, message: createSystemMessage('', '@deepseek-ai/dsh-system-prompt') },
- surfaceOp: 'append',
- }),
- at(3, {
- type: 'user/message',
- data: {
- id: '00000000-0000-4000-9000-000000000001',
- role: 'user',
- content: [{ type: 'text', text: 'Seeded turn.' }],
- source: { kind: 'user', rpcId: 'seed' },
- },
- surfaceOp: 'append',
- }),
- at(4, { type: 'session/title', data: { title: 'Seeded turn', messageSeqs: [3], source: { kind: 'fallback' } } }),
- at(5, { type: 'step/end', data: { turn: 1, step: 1 } }),
- at(6, { type: 'turn/end', data: { turn: 1, reason: { kind: 'completed' } } }),
- ].join('\n')
- }
- /**
- * Persist one child so the assembled header snapshot exercises both action
- * contributors whose relative order is the product contract under test.
- * @param scaffold - the booted Web scaffold.
- * @param parentId - the seeded session whose header the browser opens.
- */
- async function seedSubagent(scaffold: WebScaffold, parentId: SessionId): Promise<void> {
- const childId = sessionId('agent-preset-selection-child')
- const createdAt = 1784974100100
- const header: SessionHeader = {
- version: SESSION_FORMAT_VERSION,
- id: childId,
- isSeeded: false,
- createdAt,
- cwd: scaffold.workspaceCwd,
- parentSession: parentId,
- origin: 'subagent',
- delegationDepth: 1,
- agentPreset: 'minimal',
- }
- const handle = await scaffold.ctx.sessionPersistence.create(header)
- await handle.append([
- {
- type: 'turn/start',
- seq: 0,
- time: createdAt,
- data: { turn: 1, trigger: { kind: 'message', source: { kind: 'user' } } },
- },
- {
- type: 'user/message',
- seq: 1,
- time: createdAt + 1,
- data: createUserMessage({
- content: [{ type: 'text', text: 'Check the session-header action order.' }],
- source: { kind: 'user' },
- }),
- surfaceOp: 'append',
- },
- {
- type: 'subagent/descriptor',
- seq: 2,
- time: createdAt + 2,
- data: snapshotSubagentDescriptor({
- mode: 'one-shot', provider: 'spawn', label: 'header order probe',
- }),
- },
- {
- type: 'turn/end',
- seq: 3,
- time: createdAt + 3,
- data: { turn: 1, reason: { kind: 'completed' } },
- },
- ] as SessionEvent[])
- await handle.close()
- }
- /**
- * The preset the host reports for the blank session the workspace connect
- * produced. Addressed by id rather than by scanning the serialized list: the
- * seeded session records `minimal` too, so a substring match over the whole
- * list answers before the switch has landed.
- * @param scaffold - authenticated Web Host scaffold.
- * @returns the live session's preset, or undefined before it is listed.
- */
- async function livePreset(scaffold: WebScaffold): Promise<string | undefined> {
- const response = await scaffold.hostFetch('/api/session/list', {
- method: 'POST',
- headers: { 'content-type': 'application/json' },
- body: JSON.stringify({
- type: 'client-request', rpcId: 'agent-preset-live', method: 'session/list',
- payload: { args: { _request: {} } },
- }),
- })
- const body = await response.json() as {
- result: {
- value?: {
- items: {
- sessionId: string
- projections?: { values: { agentPreset?: string | null } }
- }[]
- }
- }
- }
- const preset = body.result.value?.items.find(item => item.sessionId !== SEED_ID)
- ?.projections?.values.agentPreset
- return typeof preset === 'string' ? preset : undefined
- }
- /** Every option label the trigger menu currently lists. */
- async function menuOptions(page: Page): Promise<string[]> {
- const menu = page.getByRole('listbox', { name: 'Trigger suggestions' })
- await menu.waitFor({ timeout: 10_000 })
- return await menu.getByRole('option').allTextContents()
- }
- describe('web e2e: agent-preset selection', () => {
- let scaffold: WebScaffold
- let browser: Browser
- let page: Page
- let tripwire: ReturnType<typeof watchConsole>
- let presetRoot: string
- beforeAll(async () => {
- // The shipped presets, plus one lane-owned preset that mounts and refuses:
- // the chip's own failure path needs a preset the roster offers.
- presetRoot = await realpath(await mkdtemp(join(tmpdir(), 'dsh-web-e2e-refusing-')))
- await seedRefusingPreset(presetRoot)
- scaffold = await launchWebScaffold({
- agentPresets: { roots: [{ path: presetRoot, trust: 'user' }], default: 'standard' },
- })
- // A resumed session runs what it was created with; seeding one that
- // records `minimal` is what makes the header label a claim about the
- // session rather than an echo of the current default.
- const seededId = await seedSession(scaffold, seedLog(), SEED_ID, 'minimal')
- await seedSubagent(scaffold, seededId)
- await seedWorkspaceSkill(scaffold.workspaceCwd)
- browser = await chromium.launch()
- page = await newEnglishPage(browser)
- tripwire = watchConsole(page)
- await page.goto(scaffold.authenticatedUrl, { waitUntil: 'load' })
- await page.waitForSelector('[class*="frame"]', { timeout: 30_000 })
- }, 120_000)
- afterAll(async () => {
- await browser?.close()
- await scaffold?.close()
- await rm(presetRoot, { recursive: true, force: true })
- })
- it('starts with mode selection shown on the Standard default', async () => {
- onTestFailed(() => saveFailureShot(page, 'web-e2e-agent-preset-hero'))
- await connectFreshWorkspace(page, scaffold.workspaceCwd)
- await page.getByRole('button', { name: 'Standard mode', exact: true }).waitFor({ timeout: 10_000 })
- await page.getByRole('button', { name: 'Settings', exact: true }).click()
- const dialog = page.getByRole('dialog', { name: 'Settings' })
- await dialog.getByRole('button', { name: 'Agent presets' }).click()
- const toggle = dialog.getByRole('switch', { name: 'Allow switching Agent modes' })
- await dialog.getByRole('button', { name: 'New task default: Standard mode' }).waitFor({ timeout: 10_000 })
- expect(await toggle.getAttribute('aria-checked')).toBe('true')
- await dialog.getByRole('button', { name: 'Close' }).last().click()
- const snapshot = await captureStableAria(page, '[class*="heroWorkspaceRow"]', scaffold.workspaceCwd)
- await compareOrRefreshGolden(HERO_EXPECTED, snapshot, MODE)
- expect(snapshot).toContain('Standard mode')
- })
- it('names every preset and what it is for', async () => {
- onTestFailed(() => saveFailureShot(page, 'web-e2e-agent-preset-menu'))
- await page.getByRole('button', { name: 'Standard mode' }).click()
- const menu = page.getByRole('menu')
- await menu.waitFor({ timeout: 10_000 })
- const snapshot = await captureStableAria(page, '[role="menu"]', scaffold.workspaceCwd)
- await compareOrRefreshGolden(MENU_EXPECTED, snapshot, MODE)
- // Every shipped preset, each with the sentence saying what it composes —
- // the id alone never said what a preset does.
- expect(snapshot).toContain('Minimal mode')
- expect(snapshot).toContain('Creator mode')
- await page.keyboard.press('Escape')
- })
- it('applies the staged pick to the blank session, and the host honors it', async () => {
- onTestFailed(() => saveFailureShot(page, 'web-e2e-agent-preset-stage'))
- await page.getByRole('button', { name: 'Standard mode' }).click()
- await page.getByRole('menuitem', { name: /Minimal mode/ }).click()
- // The chip stages; the blank session the workspace connect produced is
- // what the stage lands on. The host's own answer is what comes back.
- await expect.poll(() => livePreset(scaffold), { timeout: 15_000 }).toBe('minimal')
- const roster = await scaffold.ctx.agentPresets.remoteExportList()
- expect(roster.presets.find(preset => preset.isDefault)?.id).toBe('standard')
- })
- it('says why a switch was refused instead of letting the chip revert in silence', async () => {
- onTestFailed(() => saveFailureShot(page, 'web-e2e-agent-preset-refused'))
- await page.getByRole('button', { name: 'Minimal mode' }).click()
- await page.getByRole('menuitem', { name: /Refusing mode/ }).click()
- // Health cleared every row, so nothing on the settings page says this
- // preset is unusable — the banner is where the host's reason lands, and
- // without it the chip just snaps back to the preset it already ran.
- const banner = page.getByRole('alert').filter({ hasText: 'Refusing mode' })
- await banner.waitFor({ timeout: 15_000 })
- expect(await banner.textContent()).toContain('this row refuses to start')
- await expect.poll(() => livePreset(scaffold), { timeout: 15_000 }).toBe('minimal')
- await page.getByRole('button', { name: 'Minimal mode' }).waitFor({ timeout: 10_000 })
- }, 60_000)
- it('re-reads the slash catalog through the composition the switch installed', async () => {
- // Continues 'applies the staged pick': the chip has already applied `minimal` to
- // the blank session, and this one reads the menu that switch left behind.
- onTestFailed(() => saveFailureShot(page, 'web-e2e-agent-preset-slash-catalog'))
- const composer = page.locator('[data-composer-input][contenteditable="true"]').last()
- // `minimal` mounts neither the compaction group nor plan mode nor local
- // skill discovery, so the catalog the composer warmed under the
- // deployment default must not survive the switch.
- await writeComposerDraft(page, composer, '/')
- await expect.poll(() => menuOptions(page), { timeout: 15_000 })
- .not.toEqual(expect.arrayContaining([expect.stringContaining(SKILL_NAME)]))
- // Rows read as `Title Description`; the title is the capitalized command name.
- const onMinimal = (await menuOptions(page)).map(option => option.toLowerCase())
- expect(onMinimal.some(option => option.startsWith('compact'))).toBe(false)
- expect(onMinimal.some(option => option.startsWith('plan'))).toBe(false)
- // Preset-scoped commands follow the switch; the client's own model command
- // remains outside every preset.
- expect(onMinimal.some(option => option.startsWith('goal'))).toBe(false)
- expect(onMinimal.some(option => option.startsWith('model'))).toBe(true)
- await writeComposerDraft(page, composer, '')
- // Switching back up reaches the host at all — the chip compares the pick
- // against its list row, so a row that never reprojected the first switch
- // answers "already standard" and sends nothing — and restores the catalog
- // instead of leaving the session reading the narrower composition.
- await page.getByRole('button', { name: 'Minimal mode' }).click()
- await page.getByRole('menuitem', { name: /^Standard mode/ }).first().click()
- await expect.poll(() => livePreset(scaffold), { timeout: 15_000 }).toBe('standard')
- await writeComposerDraft(page, composer, '/')
- await expect.poll(() => menuOptions(page), { timeout: 15_000 })
- .toEqual(expect.arrayContaining([expect.stringContaining(SKILL_NAME)]))
- const onStandard = (await menuOptions(page)).map(option => option.toLowerCase())
- expect(onStandard.some(option => option.startsWith('compact'))).toBe(true)
- expect(onStandard.some(option => option.startsWith('goal'))).toBe(true)
- expect(onStandard.some(option => option.startsWith('plan'))).toBe(true)
- await writeComposerDraft(page, composer, '')
- }, 90_000)
- it('aligns the current blank task and restores its saved default when re-enabled', async () => {
- onTestFailed(() => saveFailureShot(page, 'web-e2e-agent-preset-disabled'))
- await expect.poll(() => livePreset(scaffold), { timeout: 15_000 }).toBe('standard')
- await page.getByRole('button', { name: 'Settings', exact: true }).click()
- const dialog = page.getByRole('dialog', { name: 'Settings' })
- await dialog.getByRole('button', { name: 'Agent presets' }).click()
- await dialog.getByRole('button', { name: 'Set as default: Minimal mode' }).click()
- await dialog.getByRole('button', { name: 'New task default: Minimal mode' }).waitFor({ timeout: 10_000 })
- await expect.poll(() => livePreset(scaffold), { timeout: 15_000 }).toBe('minimal')
- const toggle = dialog.getByRole('switch', { name: 'Allow switching Agent modes' })
- await toggle.click()
- await expect.poll(() => toggle.getAttribute('aria-checked')).toBe('false')
- await dialog.getByRole('button', { name: 'Default: Standard mode' }).waitFor({ timeout: 10_000 })
- await dialog.getByRole('button', { name: 'Close' }).last().click()
- await expect.poll(() => page.getByRole('button', { name: / mode$/ }).count()).toBe(0)
- await expect.poll(() => livePreset(scaffold), { timeout: 15_000 }).toBe('standard')
- // The switch controls availability only: re-enabling restores the saved
- // default and aligns this same still-blank task with it.
- await page.getByRole('button', { name: 'Settings', exact: true }).click()
- const reopened = page.getByRole('dialog', { name: 'Settings' })
- await reopened.getByRole('button', { name: 'Agent presets' }).click()
- const reopenedToggle = reopened.getByRole('switch', { name: 'Allow switching Agent modes' })
- await reopenedToggle.click()
- await expect.poll(() => reopenedToggle.getAttribute('aria-checked')).toBe('true')
- await reopened.getByRole('button', { name: 'New task default: Minimal mode' }).waitFor({ timeout: 10_000 })
- await reopened.getByRole('button', { name: 'Close' }).last().click()
- await expect.poll(() => livePreset(scaffold), { timeout: 15_000 }).toBe('minimal')
- await page.getByRole('button', { name: 'Minimal mode' }).waitFor({ timeout: 10_000 })
- })
- it('labels a resumed session with the preset it was created under', async () => {
- onTestFailed(() => saveFailureShot(page, 'web-e2e-agent-preset-header'))
- // The seeded session's cwd is the scaffold root rather than the connected
- // workspace, so it lists under Ungrouped; the group collapses by default.
- await page.getByRole('treeitem', { name: /^Ungrouped/ }).click()
- await page.locator('[role="treeitem"]').last().click()
- await page.getByText('Seeded turn.').waitFor({ timeout: 15_000 })
- const snapshot = await captureStableAria(page, '[class*="titleRow"]', scaffold.workspaceCwd)
- await compareOrRefreshGolden(HEADER_EXPECTED, snapshot, MODE)
- expect(snapshot).toContain('Minimal mode')
- expect(snapshot).toContain('button "1 subagent"')
- expect(snapshot.indexOf('button "1 subagent"')).toBeLessThan(snapshot.indexOf('Minimal mode'))
- expect(snapshot.indexOf('Minimal mode')).toBeLessThan(snapshot.indexOf('button "More actions"'))
- // Static chrome, not a control: the header can only report a composition
- // the host would refuse to change.
- expect(snapshot).not.toContain('button "Minimal mode"')
- })
- it('drove every surface without a page error or a stream warning', () => {
- expect(tripwire.pageErrors).toEqual([])
- expect(tripwire.warnings).toEqual([])
- })
- })
|