plugin-config.e2e.ts 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260
  1. // Web e2e scenario: the configuration pages on the Plugins page — the official
  2. // pages a deployment's exposed host-plane namespaces produce, one field edited
  3. // through the real wire down to `$DSH_HOME/settings.yaml`, the override badge
  4. // and reset that layering produces, and a community bundle's row configuration
  5. // registered by its own browser half. Zero model calls: everything is client
  6. // state plus the settings document and the profile on a blank frame, so there
  7. // is no fixture and a stray stream would fail loud on the open llm seam.
  8. import { readFile } from 'node:fs/promises'
  9. import { fileURLToPath } from 'node:url'
  10. import type { Browser, Locator, Page } from 'playwright'
  11. import { chromium } from 'playwright'
  12. import { afterAll, beforeAll, describe, expect, it, onTestFailed } from 'vitest'
  13. import { join } from 'node:path'
  14. import {
  15. assertFixtureInventory, captureStableAria, compareOrRefreshGolden,
  16. launchWebScaffold, watchConsole, webSnapshotMode, type WebScaffold,
  17. } from './scaffold.ts'
  18. import { ZH_BROWSER_LOCALE, saveFailureShot } from './support.ts'
  19. const SNAPSHOT_DIR = fileURLToPath(new URL('./expected/plugin-config', import.meta.url))
  20. const OFFICIAL_EXPECTED = join(SNAPSHOT_DIR, 'official.expected.md')
  21. const ROW_EXPECTED = join(SNAPSHOT_DIR, 'row.expected.md')
  22. const FIXTURE_PLUGINS = fileURLToPath(new URL('./fixtures/plugins', import.meta.url))
  23. const MODE = webSnapshotMode()
  24. describe('web e2e: plugin configuration pages', () => {
  25. let scaffold: WebScaffold
  26. let browser: Browser
  27. let page: Page
  28. let tripwire: ReturnType<typeof watchConsole>
  29. beforeAll(async () => {
  30. // The live-client fixture is a bundle with a browser half; switched on
  31. // below, that half registers its row's configuration into the page.
  32. scaffold = await launchWebScaffold({
  33. profile: { packages: [{ dir: join(FIXTURE_PLUGINS, 'fixture-live-client') }] },
  34. })
  35. browser = await chromium.launch()
  36. // Chinese browser: the pages assert the localized copy the client derives
  37. // from it, as the rest of the settings surface does.
  38. page = await browser.newPage({ viewport: { width: 1680, height: 1000 }, locale: ZH_BROWSER_LOCALE })
  39. tripwire = watchConsole(page)
  40. await page.goto(scaffold.authenticatedUrl, { waitUntil: 'load' })
  41. await page.waitForSelector('[class*="frame"]', { timeout: 30_000 })
  42. }, 120_000)
  43. afterAll(async () => {
  44. await browser?.close()
  45. await scaffold?.close()
  46. })
  47. /**
  48. * Show the Plugins page's cards. The scenarios share one page so the
  49. * settings document accumulates across them, so this closes any settings
  50. * dialog a previous scenario left open and leaves whatever page it opened.
  51. */
  52. async function openPlugins(): Promise<Locator> {
  53. if (await page.getByRole('dialog', { name: '设置' }).count() > 0) {
  54. await page.keyboard.press('Escape')
  55. await expect.poll(() => page.getByRole('dialog', { name: '设置' }).count(), { timeout: 5_000 }).toBe(0)
  56. }
  57. await page.getByRole('navigation', { name: '全局面板' }).getByRole('button', { name: '插件', exact: true }).click()
  58. const panel = page.locator('[data-plugin-panel]')
  59. await panel.waitFor({ timeout: 10_000 })
  60. while (await panel.getByRole('button', { name: /^返回/ }).count() > 0) {
  61. await panel.getByRole('button', { name: /^返回/ }).first().click()
  62. }
  63. await panel.getByRole('heading', { name: '官方', exact: true }).waitFor({ timeout: 20_000 })
  64. return panel
  65. }
  66. /** Open one official plugin's page from its card and wait for its form. */
  67. async function openPage(panel: Locator, title: string): Promise<void> {
  68. await panel.getByRole('button', { name: `查看 ${title}`, exact: true }).click()
  69. await panel.locator('[data-plugin-config]').waitFor({ timeout: 10_000 })
  70. }
  71. /** The settings document as the Host has written it so far. */
  72. async function settingsDocument(): Promise<string> {
  73. return readFile(join(scaffold.harnessHome, 'settings.yaml'), 'utf8').catch(() => '')
  74. }
  75. it('lists one official page per exposed host-plane namespace after the official bundles', async () => {
  76. onTestFailed(() => saveFailureShot(page, 'web-e2e-plugin-config-cards'))
  77. const panel = await openPlugins()
  78. // Every page the shipped web composition exposes: the shell executor, the
  79. // agent loop, subagent selection, and the DeepSeek search provider, after
  80. // the two official bundles the installation ships switched off.
  81. await panel.getByRole('button', { name: '查看 网页搜索', exact: true }).waitFor({ timeout: 20_000 })
  82. const official = panel.locator('[data-plugin-group="official"]')
  83. expect(await official.locator('[data-plugin-package]').count()).toBe(2)
  84. expect(await official.locator('[data-plugin-item]').count()).toBe(4)
  85. for (const title of ['终端', 'Agent 循环', 'Subagent', '网页搜索']) {
  86. expect(await official.getByRole('button', { name: `查看 ${title}`, exact: true }).count()).toBe(1)
  87. }
  88. // A card carries the one-liner; the fields wait for the page.
  89. expect(await official.getByText('限制 agent 运行的每一条命令。', { exact: true }).count()).toBe(1)
  90. expect(await panel.getByLabel('命令超时(毫秒)').count()).toBe(0)
  91. const snapshot = await captureStableAria(page, '[data-plugin-panel]', scaffold.workspaceCwd)
  92. await compareOrRefreshGolden(OFFICIAL_EXPECTED, snapshot, MODE)
  93. expect(tripwire.pageErrors).toEqual([])
  94. }, 60_000)
  95. it('persists selected adapter routes as the subagent model allowlist', async () => {
  96. onTestFailed(() => saveFailureShot(page, 'web-e2e-plugin-config-subagent-model-selection'))
  97. const panel = await openPlugins()
  98. await openPage(panel, 'Subagent')
  99. const toggle = panel.getByRole('switch', { name: '允许 Agent 为 Subagent 选择模型' })
  100. await toggle.click()
  101. const models = panel.getByRole('group', { name: 'Agent 可选择的模型' })
  102. await models.waitFor({ timeout: 10_000 })
  103. const firstModel = models.getByRole('checkbox').first()
  104. await firstModel.check()
  105. const save = panel.getByRole('button', { name: '保存', exact: true })
  106. await save.click()
  107. await expect.poll(async () => (await settingsDocument()).includes('subagent-model-selection:'), { timeout: 10_000 })
  108. .toBe(true)
  109. expect(await settingsDocument()).toContain('enabled: true')
  110. expect(await settingsDocument()).toContain('allowedModels:')
  111. expect(await settingsDocument()).toContain('provider:')
  112. expect(await settingsDocument()).toContain('model:')
  113. // The page stays open once the save landed; a settled form offers no save to repeat.
  114. await expect.poll(() => toggle.getAttribute('aria-checked'), { timeout: 5_000 }).toBe('true')
  115. await expect.poll(() => save.isDisabled(), { timeout: 5_000 }).toBe(true)
  116. await toggle.click()
  117. await save.click()
  118. await expect.poll(async () => (await settingsDocument()).includes('enabled: false'), { timeout: 10_000 })
  119. .toBe(true)
  120. await expect.poll(() => toggle.getAttribute('aria-checked'), { timeout: 5_000 }).toBe('false')
  121. expect(tripwire.pageErrors).toEqual([])
  122. }, 60_000)
  123. it('stages an edit and writes it only when saved', async () => {
  124. onTestFailed(() => saveFailureShot(page, 'web-e2e-plugin-config-write'))
  125. const panel = await openPlugins()
  126. await openPage(panel, '终端')
  127. const timeout = panel.getByLabel('命令超时(毫秒)')
  128. await timeout.waitFor({ timeout: 10_000 })
  129. // The composed default this deployment ships, before any user layer.
  130. expect(await timeout.inputValue()).toBe('60000')
  131. await timeout.fill('12000')
  132. await timeout.blur()
  133. // Nothing crosses the wire until the user saves: leaving the control is
  134. // not a decision to store the value.
  135. expect(await settingsDocument()).not.toContain('timeoutMs')
  136. const save = panel.getByRole('button', { name: '保存', exact: true })
  137. await expect.poll(() => save.isEnabled(), { timeout: 5_000 }).toBe(true)
  138. await save.click()
  139. await expect.poll(async () => (await settingsDocument()).includes('timeoutMs: 12000'), { timeout: 10_000 })
  140. .toBe(true)
  141. // Presence in the user layer is what the badge reports, and the reset is
  142. // offered only for a field that has one.
  143. await expect.poll(() => panel.getByText('已覆盖').count(), { timeout: 5_000 }).toBe(1)
  144. expect(await panel.getByRole('button', { name: '恢复默认' }).count()).toBe(1)
  145. // A settled form offers no save to repeat.
  146. await expect.poll(() => save.isDisabled(), { timeout: 5_000 }).toBe(true)
  147. expect(tripwire.pageErrors).toEqual([])
  148. }, 60_000)
  149. it('drops a staged edit when the page is left, without touching the document', async () => {
  150. onTestFailed(() => saveFailureShot(page, 'web-e2e-plugin-config-leave'))
  151. const panel = await openPlugins()
  152. await openPage(panel, '终端')
  153. const timeout = panel.getByLabel('命令超时(毫秒)')
  154. await timeout.waitFor({ timeout: 10_000 })
  155. await timeout.fill('7000')
  156. await panel.getByRole('button', { name: '返回插件列表' }).click()
  157. await panel.getByRole('heading', { name: '官方', exact: true }).waitFor({ timeout: 10_000 })
  158. await openPage(panel, '终端')
  159. await expect.poll(() => panel.getByLabel('命令超时(毫秒)').inputValue(), { timeout: 5_000 }).toBe('12000')
  160. expect(await settingsDocument()).toContain('timeoutMs: 12000')
  161. expect(tripwire.pageErrors).toEqual([])
  162. }, 60_000)
  163. it('refuses to save a draft that is not a number', async () => {
  164. onTestFailed(() => saveFailureShot(page, 'web-e2e-plugin-config-invalid'))
  165. const panel = await openPlugins()
  166. await openPage(panel, '终端')
  167. const timeout = panel.getByLabel('命令超时(毫秒)')
  168. await timeout.waitFor({ timeout: 10_000 })
  169. await timeout.fill('soon')
  170. const save = panel.getByRole('button', { name: '保存', exact: true })
  171. await expect.poll(() => save.isDisabled(), { timeout: 5_000 }).toBe(true)
  172. expect(await panel.getByText('请填数字;留空表示使用默认值。').count()).toBe(1)
  173. expect(tripwire.pageErrors).toEqual([])
  174. }, 60_000)
  175. it('clears the field back to the composed default on reset', async () => {
  176. onTestFailed(() => saveFailureShot(page, 'web-e2e-plugin-config-reset'))
  177. const panel = await openPlugins()
  178. await openPage(panel, '终端')
  179. const timeout = panel.getByLabel('命令超时(毫秒)')
  180. await timeout.waitFor({ timeout: 10_000 })
  181. expect(await timeout.inputValue()).toBe('12000')
  182. // The reset stages the composed default; the document still carries the
  183. // override until the save lands.
  184. await panel.getByRole('button', { name: '恢复默认' }).click()
  185. await expect.poll(() => timeout.inputValue(), { timeout: 5_000 }).toBe('60000')
  186. expect(await settingsDocument()).toContain('timeoutMs: 12000')
  187. await panel.getByRole('button', { name: '保存', exact: true }).click()
  188. await expect.poll(async () => (await settingsDocument()).includes('timeoutMs'), { timeout: 10_000 })
  189. .toBe(false)
  190. expect(await timeout.inputValue()).toBe('60000')
  191. expect(await panel.getByText('已覆盖').count()).toBe(0)
  192. expect(tripwire.pageErrors).toEqual([])
  193. }, 60_000)
  194. it('renders a community bundle\'s row configuration, registered by its browser half, on the row\'s page', async () => {
  195. onTestFailed(() => saveFailureShot(page, 'web-e2e-plugin-config-row'))
  196. const panel = await openPlugins()
  197. // Off, the bundle's browser half is not loaded and the row has no configuration to open.
  198. await panel.getByRole('button', { name: '查看 live-client', exact: true }).click()
  199. const row = panel.locator('[data-plugin-row]', { hasText: 'fixture-live-client' })
  200. await row.waitFor({ timeout: 10_000 })
  201. expect(await panel.getByRole('button', { name: '配置 fixture-live-client' }).count()).toBe(0)
  202. // Switched on, the Host recomposes and the browser half mounts without a
  203. // reload; its registration puts the configure control on the row.
  204. await panel.getByRole('switch', { name: '启用 live-client' }).click()
  205. const configure = panel.getByRole('button', { name: '配置 fixture-live-client' })
  206. await configure.waitFor({ timeout: 30_000 })
  207. await configure.click()
  208. const rowPage = panel.locator('[data-plugin-row-detail="@fixture/live-client#fixture-live-client"]')
  209. await rowPage.waitFor({ timeout: 10_000 })
  210. expect(await rowPage.getByRole('heading', { level: 3 }).textContent()).toBe('fixture-live-client')
  211. expect(await rowPage.getByText('示例配置项', { exact: true }).count()).toBe(1)
  212. const form = rowPage.getByRole('form', { name: '动态插件配置' })
  213. await form.getByLabel('问候语').fill('你好')
  214. await form.getByRole('button', { name: '保存' }).click()
  215. await expect.poll(() => page.evaluate(() => document.documentElement.dataset.liveSaves), { timeout: 5_000 }).toBe('1')
  216. const snapshot = await captureStableAria(page, '[data-plugin-panel]', scaffold.workspaceCwd)
  217. await compareOrRefreshGolden(ROW_EXPECTED, snapshot, MODE)
  218. await rowPage.getByRole('button', { name: '返回 live-client' }).click()
  219. await panel.locator('[data-plugin-detail="@fixture/live-client"]').waitFor({ timeout: 10_000 })
  220. expect(tripwire.pageErrors).toEqual([])
  221. }, 90_000)
  222. it.skipIf(MODE === 'record')('keeps the fixture inventory closed', async () => {
  223. expect(tripwire.warnings).toEqual([])
  224. await assertFixtureInventory(SNAPSHOT_DIR, ['official.expected.md', 'row.expected.md'])
  225. })
  226. })