mirror of
https://github.com/deepseek-ai/deepseek-harness.git
synced 2026-08-29 04:26:38 +00:00
* feat(ui-conversation): fold turn process before final answer * fix(ui-chat): polish turn-process control row from review * test(web): drive preset slash catalog with gestures * fix(ui-chat): keep turn process order stable * fix(ui-chat): preserve prompt order after pagination Co-authored-by: Yif <877193178@qq.com>
130 lines
6.2 KiB
TypeScript
130 lines
6.2 KiB
TypeScript
// Code Mode browser round trip with nested sub-calls and details selection.
|
|
// Record: DSH_SNAPSHOT=record rewrites session.jsonl, then a keyless
|
|
// DSH_SNAPSHOT=refresh regenerates ui.expected.md.
|
|
import { readFile } from 'node:fs/promises'
|
|
import { fileURLToPath } from 'node:url'
|
|
import type { Browser, Page } from 'playwright'
|
|
import { chromium } from 'playwright'
|
|
import { afterAll, beforeAll, describe, expect, it, onTestFailed } from 'vitest'
|
|
import type { SessionEvent } from '@deepseek-ai/dsh-session'
|
|
import {
|
|
captureExpandedTurnProcessAria, compareOrRefreshGolden, fixtureUserPrompts,
|
|
launchWebScaffold, recordFixture, watchConsole, webSnapshotMode, type WebScaffold,
|
|
} from './scaffold.ts'
|
|
import { connectFreshWorkspace, expandOwningTurnProcess, newEnglishPage, saveFailureShot } from './support.ts'
|
|
|
|
const FIXTURE = fileURLToPath(new URL('../../../snapshots/web/code-mode-round/session.jsonl', import.meta.url))
|
|
const UI_EXPECTED = fileURLToPath(new URL('../../../snapshots/web/code-mode-round/ui.expected.md', import.meta.url))
|
|
const MODE = webSnapshotMode()
|
|
|
|
// Elicits the successful and failed sub-rows this scenario asserts.
|
|
const PROMPT = 'Using ONE run_code program: run bash `echo CODE_ROUND_OK`, then read the file missing.txt '
|
|
+ 'catching its error in the program. Return an object with both outcomes. Then reply DONE and stop.'
|
|
|
|
describe('web e2e: Code Mode round renders nested sub-calls', () => {
|
|
let scaffold: WebScaffold
|
|
let browser: Browser
|
|
let page: Page
|
|
let tripwire: ReturnType<typeof watchConsole>
|
|
const sessionEvents: SessionEvent[] = []
|
|
|
|
beforeAll(async () => {
|
|
scaffold = await launchWebScaffold({
|
|
toolsMode: 'code',
|
|
compareReplaySession: true,
|
|
...(MODE === 'record' ? {} : { replayFixture: FIXTURE, paceMs: 15 }),
|
|
})
|
|
scaffold.ctx.on('session/event', (_session, event: SessionEvent) => { sessionEvents.push(event) })
|
|
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 })
|
|
await connectFreshWorkspace(page, scaffold.workspaceCwd)
|
|
}, 120_000)
|
|
|
|
afterAll(async () => {
|
|
await browser?.close()
|
|
await scaffold?.close()
|
|
})
|
|
|
|
it('drives the recorded prompt to a settled turn (all modes)', async () => {
|
|
onTestFailed(() => saveFailureShot(page, 'web-e2e-code-mode-drive'))
|
|
if (MODE !== 'record') {
|
|
expect(fixtureUserPrompts(await readFile(FIXTURE, 'utf8'))).toEqual([PROMPT])
|
|
}
|
|
const input = page.locator('[data-composer-input]').first()
|
|
await input.waitFor({ timeout: 10_000 })
|
|
const settled = scaffold.whenTurnSettled()
|
|
await input.fill(PROMPT)
|
|
await input.press('Enter')
|
|
const sessionId = await settled
|
|
if (MODE === 'record') {
|
|
await recordFixture(scaffold, sessionId, FIXTURE)
|
|
}
|
|
}, 200_000)
|
|
|
|
it.skipIf(MODE === 'record')('the durable log carries run_code with full-content sub-dispatches', () => {
|
|
const calls = sessionEvents.filter(event => event.type === 'tool/call')
|
|
expect(calls.length).toBeGreaterThanOrEqual(1)
|
|
expect(new Set(calls.map(call => (call.data as { name: string }).name))).toEqual(new Set(['run_code']))
|
|
const dispatches = sessionEvents.filter(event => (event.type as string) === 'tool/code-dispatch')
|
|
expect(dispatches.length).toBeGreaterThanOrEqual(2)
|
|
for (const dispatch of dispatches) {
|
|
const data = dispatch.data as unknown as {
|
|
parentCallId: string
|
|
subCallId: string
|
|
name: string
|
|
isError: boolean
|
|
content: { type: string }[]
|
|
}
|
|
expect(data.subCallId.startsWith(`${data.parentCallId}:code:`)).toBe(true)
|
|
expect(Array.isArray(data.content)).toBe(true)
|
|
expect(typeof data.isError).toBe('boolean')
|
|
}
|
|
const bash = dispatches.find(dispatch => (dispatch.data as { name: string }).name === 'bash')
|
|
expect(bash).toBeDefined()
|
|
const bashContent = (bash!.data as { content: { type: string; text?: string }[] }).content
|
|
expect(bashContent.filter(block => block.type === 'text').map(block => block.text).join('')).toContain('CODE_ROUND_OK')
|
|
})
|
|
|
|
it.skipIf(MODE === 'record')('renders the code parent row with always-visible nested sub-rows', async () => {
|
|
onTestFailed(() => saveFailureShot(page, 'web-e2e-code-mode-rows'))
|
|
await expect.poll(() => page.getByText('DONE', { exact: true }).count(), { timeout: 15_000 }).toBeGreaterThanOrEqual(1)
|
|
// The parent run_code row wears the code variant with the model-authored
|
|
// description as its summary (the presentCall contract).
|
|
const codeRow = page.locator('[data-variant="code"]').first()
|
|
await expandOwningTurnProcess(page, codeRow)
|
|
await codeRow.waitFor({ timeout: 10_000 })
|
|
const nest = page.locator('[data-subcalls]').first()
|
|
await nest.waitFor({ timeout: 10_000 })
|
|
expect(await nest.locator('[data-sample="bash"]').count()).toBeGreaterThanOrEqual(1)
|
|
expect(await nest.locator('[data-state="error"]').count()).toBeGreaterThanOrEqual(1)
|
|
}, 60_000)
|
|
|
|
it.skipIf(MODE === 'record')('a bash sub-row click leaves the default details panel closed', async () => {
|
|
onTestFailed(() => saveFailureShot(page, 'web-e2e-code-mode-details'))
|
|
const nest = page.locator('[data-subcalls]').first()
|
|
const frame = page.locator('[style*="grid-template-columns"]').first()
|
|
expect(await frame.getAttribute('data-details-collapsed')).toBe('true')
|
|
await expandOwningTurnProcess(page, nest)
|
|
await nest.locator('[data-sample="bash"]').first().click()
|
|
await expect.poll(() => frame.getAttribute('data-details-collapsed'), { timeout: 5_000 }).toBe('true')
|
|
})
|
|
|
|
it.skipIf(MODE === 'record')('matches the expanded conversation aria golden with stable anchors', async () => {
|
|
onTestFailed(() => saveFailureShot(page, 'web-e2e-code-mode-aria'))
|
|
const snapshot = await captureExpandedTurnProcessAria(
|
|
page,
|
|
'[class*="centerCol"]',
|
|
scaffold.workspaceCwd,
|
|
)
|
|
await compareOrRefreshGolden(UI_EXPECTED, snapshot, MODE)
|
|
})
|
|
|
|
it.skipIf(MODE === 'record')('stayed clean: no page errors, no reconnect churn', () => {
|
|
expect(tripwire.pageErrors).toEqual([])
|
|
expect(tripwire.warnings).toEqual([])
|
|
})
|
|
})
|