mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-04-20 14:30:41 +00:00
## Summary Complete the @e2e/ path alias migration started in #10735 by converting all 354 remaining relative imports and adding a lint rule to prevent backsliding. ## Changes - **What**: Migrate all relative imports in browser_tests/ to use `@e2e/` (intra-directory) and `@/` (src/ imports) path aliases. Add `no-restricted-imports` ESLint rule banning `./` and `../` imports in `browser_tests/**/*.ts`. Suppress pre-existing oxlint `no-eval` and `no-console` warnings exposed by touching those files. ## Review Focus - ESLint flat-config merging: the `@playwright/test` ban and relative-import ban are in two separate blocks to avoid last-match-wins collision with the `useI18n`/`useVirtualList` blocks higher in the config. - The `['./**', '../**']` glob patterns (not `['./*', '../*']`) are needed to catch multi-level relative paths like `../../../src/foo`. Follows up on #10735 ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-10958-test-migrate-browser_tests-to-e2e-path-alias-and-add-lint-rule-33c6d73d365081649d1be771eac986fd) by [Unito](https://www.unito.io) Co-authored-by: Amp <amp@ampcode.com>
208 lines
6.8 KiB
TypeScript
208 lines
6.8 KiB
TypeScript
import { expect } from '@playwright/test'
|
|
|
|
import { comfyPageFixture as test } from '@e2e/fixtures/ComfyPage'
|
|
import { DefaultGraphPositions } from '@e2e/fixtures/constants/defaultGraphPositions'
|
|
|
|
test.beforeEach(async ({ comfyPage }) => {
|
|
await comfyPage.settings.setSetting('Comfy.UseNewMenu', 'Disabled')
|
|
})
|
|
|
|
test.describe('Copy Paste', { tag: ['@screenshot', '@workflow'] }, () => {
|
|
test('Can copy and paste node', async ({ comfyPage }) => {
|
|
await comfyPage.canvas.click({
|
|
position: DefaultGraphPositions.emptyLatentWidgetClick
|
|
})
|
|
await comfyPage.page.mouse.move(10, 10)
|
|
await comfyPage.nextFrame()
|
|
await comfyPage.clipboard.copy()
|
|
await comfyPage.clipboard.paste()
|
|
await expect(comfyPage.canvas).toHaveScreenshot('copied-node.png')
|
|
})
|
|
|
|
test('Can copy and paste node with link', async ({ comfyPage }) => {
|
|
await comfyPage.canvas.click({
|
|
position: DefaultGraphPositions.textEncodeNode1
|
|
})
|
|
await comfyPage.nextFrame()
|
|
await comfyPage.page.mouse.move(10, 10)
|
|
await comfyPage.clipboard.copy()
|
|
await comfyPage.page.keyboard.press('Control+Shift+V')
|
|
await expect(comfyPage.canvas).toHaveScreenshot('copied-node-with-link.png')
|
|
})
|
|
|
|
test('Can copy and paste text', async ({ comfyPage }) => {
|
|
const textBox = comfyPage.widgetTextBox
|
|
await textBox.click()
|
|
const originalString = await textBox.inputValue()
|
|
await textBox.selectText()
|
|
await comfyPage.clipboard.copy(null)
|
|
await comfyPage.clipboard.paste(null)
|
|
await comfyPage.clipboard.paste(null)
|
|
await expect
|
|
.poll(() => textBox.inputValue())
|
|
.toBe(originalString + originalString)
|
|
})
|
|
|
|
test('Can copy and paste widget value', async ({ comfyPage }) => {
|
|
// Copy width value (512) from empty latent node to KSampler's seed.
|
|
// KSampler's seed
|
|
await comfyPage.canvas.click({
|
|
position: {
|
|
x: 1005,
|
|
y: 281
|
|
}
|
|
})
|
|
await comfyPage.clipboard.copy(null)
|
|
// Empty latent node's width
|
|
await comfyPage.canvas.click({
|
|
position: {
|
|
x: 718,
|
|
y: 643
|
|
}
|
|
})
|
|
await comfyPage.clipboard.paste(null)
|
|
await comfyPage.page.keyboard.press('Enter')
|
|
await expect(comfyPage.canvas).toHaveScreenshot('copied-widget-value.png')
|
|
})
|
|
|
|
/**
|
|
* https://github.com/Comfy-Org/ComfyUI_frontend/issues/98
|
|
*/
|
|
test('Paste in text area with node previously copied', async ({
|
|
comfyPage
|
|
}) => {
|
|
await comfyPage.canvas.click({
|
|
position: DefaultGraphPositions.emptyLatentWidgetClick
|
|
})
|
|
await comfyPage.page.mouse.move(10, 10)
|
|
await comfyPage.nextFrame()
|
|
await comfyPage.clipboard.copy(null)
|
|
const textBox = comfyPage.widgetTextBox
|
|
await textBox.click()
|
|
await textBox.inputValue()
|
|
await textBox.selectText()
|
|
await comfyPage.clipboard.copy(null)
|
|
await comfyPage.clipboard.paste(null)
|
|
await comfyPage.clipboard.paste(null)
|
|
await expect(comfyPage.canvas).toHaveScreenshot(
|
|
'paste-in-text-area-with-node-previously-copied.png'
|
|
)
|
|
})
|
|
|
|
test('Copy text area does not copy node', async ({ comfyPage }) => {
|
|
const textBox = comfyPage.widgetTextBox
|
|
await textBox.click()
|
|
await textBox.inputValue()
|
|
await textBox.selectText()
|
|
await comfyPage.clipboard.copy(null)
|
|
// Unfocus textbox.
|
|
await comfyPage.page.mouse.click(10, 10)
|
|
await comfyPage.clipboard.paste(null)
|
|
await expect(comfyPage.canvas).toHaveScreenshot('no-node-copied.png')
|
|
})
|
|
|
|
test('Copy node by dragging + alt', async ({ comfyPage }) => {
|
|
// TextEncodeNode1
|
|
await comfyPage.page.mouse.move(618, 191)
|
|
await comfyPage.page.keyboard.down('Alt')
|
|
await comfyPage.page.mouse.down()
|
|
await comfyPage.page.mouse.move(100, 100)
|
|
await comfyPage.page.mouse.up()
|
|
await comfyPage.page.keyboard.up('Alt')
|
|
await expect(comfyPage.canvas).toHaveScreenshot('drag-copy-copied-node.png')
|
|
})
|
|
|
|
test('Can undo paste multiple nodes as single action', async ({
|
|
comfyPage
|
|
}) => {
|
|
await expect
|
|
.poll(() => comfyPage.nodeOps.getGraphNodesCount())
|
|
.toBeGreaterThan(1)
|
|
const initialCount = await comfyPage.nodeOps.getGraphNodesCount()
|
|
await comfyPage.canvas.click()
|
|
await comfyPage.keyboard.selectAll()
|
|
await comfyPage.page.mouse.move(10, 10)
|
|
await comfyPage.clipboard.copy()
|
|
await comfyPage.clipboard.paste()
|
|
|
|
await expect
|
|
.poll(() => comfyPage.nodeOps.getGraphNodesCount())
|
|
.toBe(initialCount * 2)
|
|
|
|
await comfyPage.keyboard.undo()
|
|
await expect
|
|
.poll(() => comfyPage.nodeOps.getGraphNodesCount())
|
|
.toBe(initialCount)
|
|
})
|
|
|
|
test(
|
|
'Copy paste node, image paste onto LoadImage, image paste on empty canvas',
|
|
{ tag: ['@node'] },
|
|
async ({ comfyPage }) => {
|
|
await comfyPage.workflow.loadWorkflow('nodes/load_image_with_ksampler')
|
|
await expect.poll(() => comfyPage.nodeOps.getGraphNodesCount()).toBe(2)
|
|
|
|
// Step 1: Copy a KSampler node with Ctrl+C and paste with Ctrl+V
|
|
const ksamplerNodes =
|
|
await comfyPage.nodeOps.getNodeRefsByType('KSampler')
|
|
await ksamplerNodes[0].copy()
|
|
await comfyPage.canvas.click({ position: { x: 50, y: 500 } })
|
|
await comfyPage.nextFrame()
|
|
await comfyPage.clipboard.paste()
|
|
await expect
|
|
.poll(() => comfyPage.nodeOps.getGraphNodesCount(), {
|
|
timeout: 5_000
|
|
})
|
|
.toBe(3)
|
|
|
|
// Step 2: Paste image onto selected LoadImage node
|
|
const loadImageNodes =
|
|
await comfyPage.nodeOps.getNodeRefsByType('LoadImage')
|
|
await loadImageNodes[0].click('title')
|
|
await comfyPage.nextFrame()
|
|
|
|
const uploadPromise = comfyPage.page.waitForResponse(
|
|
(resp) => resp.url().includes('/upload/') && resp.status() === 200,
|
|
{ timeout: 10_000 }
|
|
)
|
|
await comfyPage.clipboard.pasteFile(
|
|
comfyPage.assetPath('image32x32.webp')
|
|
)
|
|
await uploadPromise
|
|
|
|
await expect
|
|
.poll(
|
|
async () => {
|
|
const fileWidget = await loadImageNodes[0].getWidget(0)
|
|
return fileWidget.getValue()
|
|
},
|
|
{ timeout: 5_000 }
|
|
)
|
|
.toContain('image32x32')
|
|
await expect.poll(() => comfyPage.nodeOps.getGraphNodesCount()).toBe(3)
|
|
|
|
// Step 3: Click empty canvas area, paste image → creates new LoadImage
|
|
await comfyPage.canvas.click({ position: { x: 50, y: 500 } })
|
|
await comfyPage.nextFrame()
|
|
|
|
const uploadPromise2 = comfyPage.page.waitForResponse(
|
|
(resp) => resp.url().includes('/upload/') && resp.status() === 200,
|
|
{ timeout: 10_000 }
|
|
)
|
|
await comfyPage.clipboard.pasteFile(
|
|
comfyPage.assetPath('image32x32.webp')
|
|
)
|
|
await uploadPromise2
|
|
|
|
await expect
|
|
.poll(() => comfyPage.nodeOps.getGraphNodesCount(), {
|
|
timeout: 5_000
|
|
})
|
|
.toBe(4)
|
|
const allLoadImageNodes =
|
|
await comfyPage.nodeOps.getNodeRefsByType('LoadImage')
|
|
expect(allLoadImageNodes).toHaveLength(2)
|
|
}
|
|
)
|
|
})
|