mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-04-20 06:20:11 +00:00
- Migrate error tab tests from dialog.spec.ts to propertiesPanel/errorsTab*.spec.ts - Migrate missingMedia.spec.ts to errorsTabMissingMedia.spec.ts - Add errorsTabMissingNodes.spec.ts (5 tests): card, packs group, expand/collapse, locate - Add errorsTabMissingModels.spec.ts (4 tests): group, model name, expand, clipboard copy - Add errorsTabExecution.spec.ts (2 tests): error card buttons, runtime panel - Add ErrorsTabHelper.ts with shared openErrorsTabViaSeeErrors helper - Add clipboardSpy.ts shared helper for clipboard.writeText interception - Add data-testid to MissingModelRow (expand, locate, copy-name) - Update missing_models.json fixture with 2 referencing nodes for expand tests - Consolidate errorOverlay.spec.ts into single top-level describe - Use PropertiesPanelHelper.errorsTabIcon in errorsTab.spec.ts
185 lines
5.7 KiB
TypeScript
185 lines
5.7 KiB
TypeScript
import { expect } from '@playwright/test'
|
|
|
|
import type { ComfyPage } from '../../fixtures/ComfyPage'
|
|
import { comfyPageFixture as test } from '../../fixtures/ComfyPage'
|
|
import { TestIds } from '../../fixtures/selectors'
|
|
import { openErrorsTabViaSeeErrors } from './ErrorsTabHelper'
|
|
|
|
async function uploadFileViaDropzone(comfyPage: ComfyPage) {
|
|
const dropzone = comfyPage.page.getByTestId(
|
|
TestIds.dialogs.missingMediaUploadDropzone
|
|
)
|
|
const [fileChooser] = await Promise.all([
|
|
comfyPage.page.waitForEvent('filechooser'),
|
|
dropzone.click()
|
|
])
|
|
await fileChooser.setFiles(comfyPage.assetPath('test_upload_image.png'))
|
|
}
|
|
|
|
async function confirmPendingSelection(comfyPage: ComfyPage) {
|
|
const confirmButton = comfyPage.page.getByTestId(
|
|
TestIds.dialogs.missingMediaConfirmButton
|
|
)
|
|
await expect(confirmButton).toBeEnabled()
|
|
await confirmButton.click()
|
|
}
|
|
|
|
function getMediaRow(comfyPage: ComfyPage) {
|
|
return comfyPage.page.getByTestId(TestIds.dialogs.missingMediaRow)
|
|
}
|
|
|
|
function getStatusCard(comfyPage: ComfyPage) {
|
|
return comfyPage.page.getByTestId(TestIds.dialogs.missingMediaStatusCard)
|
|
}
|
|
|
|
function getDropzone(comfyPage: ComfyPage) {
|
|
return comfyPage.page.getByTestId(TestIds.dialogs.missingMediaUploadDropzone)
|
|
}
|
|
|
|
test.describe('Errors tab - Missing media', { tag: '@ui' }, () => {
|
|
test.beforeEach(async ({ comfyPage }) => {
|
|
await comfyPage.settings.setSetting('Comfy.UseNewMenu', 'Top')
|
|
await comfyPage.settings.setSetting(
|
|
'Comfy.RightSidePanel.ShowErrorsTab',
|
|
true
|
|
)
|
|
})
|
|
|
|
test.describe('Detection', () => {
|
|
test('Shows missing media group in errors tab', async ({ comfyPage }) => {
|
|
await openErrorsTabViaSeeErrors(comfyPage, 'missing/missing_media_single')
|
|
|
|
await expect(
|
|
comfyPage.page.getByTestId(TestIds.dialogs.missingMediaGroup)
|
|
).toBeVisible()
|
|
})
|
|
|
|
test('Shows correct number of missing media rows', async ({
|
|
comfyPage
|
|
}) => {
|
|
await openErrorsTabViaSeeErrors(
|
|
comfyPage,
|
|
'missing/missing_media_multiple'
|
|
)
|
|
|
|
await expect(getMediaRow(comfyPage)).toHaveCount(2)
|
|
})
|
|
|
|
test('Shows upload dropzone and library select for each missing item', async ({
|
|
comfyPage
|
|
}) => {
|
|
await openErrorsTabViaSeeErrors(comfyPage, 'missing/missing_media_single')
|
|
|
|
await expect(getDropzone(comfyPage)).toBeVisible()
|
|
await expect(
|
|
comfyPage.page.getByTestId(TestIds.dialogs.missingMediaLibrarySelect)
|
|
).toBeVisible()
|
|
})
|
|
})
|
|
|
|
test.describe('Upload flow', () => {
|
|
test('Upload via file picker shows status card then allows confirm', async ({
|
|
comfyPage
|
|
}) => {
|
|
await openErrorsTabViaSeeErrors(comfyPage, 'missing/missing_media_single')
|
|
await uploadFileViaDropzone(comfyPage)
|
|
|
|
await expect(getStatusCard(comfyPage)).toBeVisible()
|
|
|
|
await confirmPendingSelection(comfyPage)
|
|
await expect(getMediaRow(comfyPage)).toHaveCount(0)
|
|
})
|
|
})
|
|
|
|
test.describe('Library select flow', () => {
|
|
test('Selecting from library shows status card then allows confirm', async ({
|
|
comfyPage
|
|
}) => {
|
|
await openErrorsTabViaSeeErrors(comfyPage, 'missing/missing_media_single')
|
|
|
|
const librarySelect = comfyPage.page.getByTestId(
|
|
TestIds.dialogs.missingMediaLibrarySelect
|
|
)
|
|
await librarySelect.getByRole('combobox').click()
|
|
|
|
const optionCount = await comfyPage.page.getByRole('option').count()
|
|
if (optionCount === 0) {
|
|
test.skip()
|
|
return
|
|
}
|
|
|
|
await comfyPage.page.getByRole('option').first().click()
|
|
|
|
await expect(getStatusCard(comfyPage)).toBeVisible()
|
|
|
|
await confirmPendingSelection(comfyPage)
|
|
await expect(getMediaRow(comfyPage)).toHaveCount(0)
|
|
})
|
|
})
|
|
|
|
test.describe('Cancel selection', () => {
|
|
test('Cancelling pending selection returns to upload/library UI', async ({
|
|
comfyPage
|
|
}) => {
|
|
await openErrorsTabViaSeeErrors(comfyPage, 'missing/missing_media_single')
|
|
await uploadFileViaDropzone(comfyPage)
|
|
|
|
await expect(getStatusCard(comfyPage)).toBeVisible()
|
|
await expect(getDropzone(comfyPage)).not.toBeVisible()
|
|
|
|
await comfyPage.page
|
|
.getByTestId(TestIds.dialogs.missingMediaCancelButton)
|
|
.click()
|
|
|
|
await expect(getStatusCard(comfyPage)).not.toBeVisible()
|
|
await expect(getDropzone(comfyPage)).toBeVisible()
|
|
})
|
|
})
|
|
|
|
test.describe('All resolved', () => {
|
|
test('Missing Inputs group disappears when all items are resolved', async ({
|
|
comfyPage
|
|
}) => {
|
|
await openErrorsTabViaSeeErrors(comfyPage, 'missing/missing_media_single')
|
|
await uploadFileViaDropzone(comfyPage)
|
|
await confirmPendingSelection(comfyPage)
|
|
|
|
await expect(
|
|
comfyPage.page.getByTestId(TestIds.dialogs.missingMediaGroup)
|
|
).not.toBeVisible()
|
|
})
|
|
})
|
|
|
|
test.describe('Locate node', () => {
|
|
test('Locate button navigates canvas to the missing media node', async ({
|
|
comfyPage
|
|
}) => {
|
|
await openErrorsTabViaSeeErrors(comfyPage, 'missing/missing_media_single')
|
|
|
|
const offsetBefore = await comfyPage.page.evaluate(() => {
|
|
const canvas = window['app']?.canvas
|
|
return canvas?.ds?.offset
|
|
? [canvas.ds.offset[0], canvas.ds.offset[1]]
|
|
: null
|
|
})
|
|
|
|
const locateButton = comfyPage.page.getByTestId(
|
|
TestIds.dialogs.missingMediaLocateButton
|
|
)
|
|
await expect(locateButton).toBeVisible()
|
|
await locateButton.click()
|
|
|
|
await expect
|
|
.poll(async () => {
|
|
return await comfyPage.page.evaluate(() => {
|
|
const canvas = window['app']?.canvas
|
|
return canvas?.ds?.offset
|
|
? [canvas.ds.offset[0], canvas.ds.offset[1]]
|
|
: null
|
|
})
|
|
})
|
|
.not.toEqual(offsetBefore)
|
|
})
|
|
})
|
|
})
|