mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-05-13 09:16:20 +00:00
## Summary Adds test coverage for the integrated terminal ## Changes - **What**: - refactor and simplify existing tests - add new tests for xterm integration ┆Issue is synchronized with this [Notion page](https://app.notion.com/p/PR-11239-test-add-update-terminal-tests-3426d73d365081c99445c35d8808afb4) by [Unito](https://www.unito.io)
152 lines
4.7 KiB
TypeScript
152 lines
4.7 KiB
TypeScript
import { mergeTests } from '@playwright/test'
|
|
|
|
import {
|
|
comfyExpect as expect,
|
|
comfyPageFixture
|
|
} from '@e2e/fixtures/ComfyPage'
|
|
import {
|
|
LogsTerminalHelper,
|
|
logsTerminalFixture
|
|
} from '@e2e/fixtures/helpers/LogsTerminalHelper'
|
|
import { webSocketFixture } from '@e2e/fixtures/ws'
|
|
import {
|
|
getClipboardText,
|
|
interceptClipboardWrite
|
|
} from '@e2e/helpers/clipboardSpy'
|
|
|
|
const test = mergeTests(comfyPageFixture, logsTerminalFixture, webSocketFixture)
|
|
|
|
test.describe('Bottom Panel Logs', { tag: '@ui' }, () => {
|
|
test.describe('panel', () => {
|
|
test.beforeEach(async ({ logsTerminal }) => {
|
|
await logsTerminal.mockSubscribeLogs()
|
|
await logsTerminal.mockRawLogs([])
|
|
})
|
|
|
|
test('opens to Logs tab via toggle button', async ({ comfyPage }) => {
|
|
await expect(comfyPage.bottomPanel.root).toBeHidden()
|
|
await comfyPage.bottomPanel.toggleLogs()
|
|
await expect(comfyPage.bottomPanel.logs.tab).toHaveAttribute(
|
|
'aria-selected',
|
|
'true'
|
|
)
|
|
await expect(comfyPage.bottomPanel.logs.terminalRoot).toBeVisible()
|
|
})
|
|
|
|
test('closes via toggle button', async ({ comfyPage }) => {
|
|
await comfyPage.bottomPanel.toggleLogs()
|
|
await expect(comfyPage.bottomPanel.root).toBeVisible()
|
|
|
|
await comfyPage.bottomPanel.toggleButton.click()
|
|
await expect(comfyPage.bottomPanel.root).toBeHidden()
|
|
})
|
|
|
|
test('switches from shortcuts to Logs tab', async ({ comfyPage }) => {
|
|
await comfyPage.bottomPanel.keyboardShortcutsButton.click()
|
|
await expect(comfyPage.bottomPanel.shortcuts.essentialsTab).toBeVisible()
|
|
|
|
await comfyPage.bottomPanel.toggleLogs()
|
|
await expect(comfyPage.bottomPanel.logs.tab).toBeVisible()
|
|
await expect(comfyPage.bottomPanel.shortcuts.essentialsTab).toBeHidden()
|
|
})
|
|
})
|
|
|
|
test.describe('terminal', () => {
|
|
test.beforeEach(async ({ logsTerminal }) => {
|
|
await logsTerminal.mockSubscribeLogs()
|
|
await logsTerminal.mockRawLogs([])
|
|
})
|
|
|
|
test('shows loading spinner while logs are loading', async ({
|
|
comfyPage,
|
|
logsTerminal
|
|
}) => {
|
|
const resolveRaw = await logsTerminal.mockRawLogsPending()
|
|
|
|
await comfyPage.bottomPanel.toggleLogs()
|
|
await expect(comfyPage.bottomPanel.logs.loadingSpinner).toBeVisible()
|
|
|
|
resolveRaw()
|
|
await expect(comfyPage.bottomPanel.logs.loadingSpinner).toBeHidden()
|
|
})
|
|
|
|
test('renders initial log entries from the raw-logs API', async ({
|
|
comfyPage,
|
|
logsTerminal
|
|
}) => {
|
|
const logLine = 'Hello from ComfyUI backend!'
|
|
await logsTerminal.mockRawLogs([logLine])
|
|
|
|
await comfyPage.bottomPanel.toggleLogs()
|
|
|
|
await expect(comfyPage.bottomPanel.logs.xtermScreen).toBeVisible()
|
|
await expect(comfyPage.bottomPanel.logs.terminalRoot).toContainText(
|
|
logLine
|
|
)
|
|
})
|
|
|
|
test('appends log entries received via WebSocket', async ({
|
|
comfyPage,
|
|
getWebSocket
|
|
}) => {
|
|
await comfyPage.bottomPanel.toggleLogs()
|
|
await expect(comfyPage.bottomPanel.logs.terminalRoot).toBeVisible()
|
|
|
|
const ws = await getWebSocket()
|
|
const firstLine = 'First live log line'
|
|
const secondLine = 'Second live log line'
|
|
|
|
ws.send(LogsTerminalHelper.buildWsLogFrame([firstLine]))
|
|
await expect(comfyPage.bottomPanel.logs.terminalRoot).toContainText(
|
|
firstLine
|
|
)
|
|
|
|
ws.send(LogsTerminalHelper.buildWsLogFrame([secondLine]))
|
|
await expect(comfyPage.bottomPanel.logs.terminalRoot).toContainText(
|
|
firstLine
|
|
)
|
|
await expect(comfyPage.bottomPanel.logs.terminalRoot).toContainText(
|
|
secondLine
|
|
)
|
|
})
|
|
|
|
test('copy button copies terminal contents to clipboard', async ({
|
|
comfyPage,
|
|
logsTerminal
|
|
}) => {
|
|
const logLine = 'Copy me to the clipboard'
|
|
await logsTerminal.mockRawLogs([logLine])
|
|
|
|
await comfyPage.bottomPanel.toggleLogs()
|
|
await expect(comfyPage.bottomPanel.logs.terminalRoot).toContainText(
|
|
logLine
|
|
)
|
|
|
|
await interceptClipboardWrite(comfyPage.page)
|
|
|
|
await comfyPage.bottomPanel.logs.terminalRoot.hover()
|
|
await expect(comfyPage.bottomPanel.logs.copyButton).toBeVisible()
|
|
await comfyPage.bottomPanel.logs.copyButton.click()
|
|
|
|
await expect
|
|
.poll(() => getClipboardText(comfyPage.page))
|
|
.toContain(logLine)
|
|
})
|
|
|
|
test('shows error message when raw-logs API fails', async ({
|
|
comfyPage,
|
|
logsTerminal
|
|
}) => {
|
|
await logsTerminal.mockRawLogsError()
|
|
|
|
await comfyPage.bottomPanel.toggleLogs()
|
|
|
|
await expect(comfyPage.bottomPanel.logs.errorMessage).toBeVisible()
|
|
await expect(comfyPage.bottomPanel.logs.errorMessage).toContainText(
|
|
'Unable to load logs'
|
|
)
|
|
await expect(comfyPage.bottomPanel.logs.terminalRoot).toBeHidden()
|
|
})
|
|
})
|
|
})
|