mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-05-23 14:16:00 +00:00
## Summary Adds coverage for untested node badges ## Changes - **What**: - add shared addNode helper - will follow up to standardize across tests - add deprecated & api node badge tests in LiteGraph & Vue nodes ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-11681-test-add-tests-for-deprecated-api-node-badge-visibility-settings-34f6d73d365081569129ecffa608122e) by [Unito](https://www.unito.io) --------- Co-authored-by: github-actions <github-actions@github.com>
217 lines
6.7 KiB
TypeScript
217 lines
6.7 KiB
TypeScript
import { expect } from '@playwright/test'
|
|
|
|
import type { ComfyApp } from '@/scripts/app'
|
|
import { NodeBadgeMode } from '@/types/nodeSource'
|
|
import { comfyPageFixture as test } from '@e2e/fixtures/ComfyPage'
|
|
|
|
test.beforeEach(async ({ comfyPage }) => {
|
|
await comfyPage.settings.setSetting('Comfy.UseNewMenu', 'Disabled')
|
|
})
|
|
|
|
const DEPRECATED_NODE_TYPE = 'ImageBatch'
|
|
const API_NODE_TYPE = 'FluxProUltraImageNode'
|
|
|
|
test.describe('Node Badge', { tag: ['@screenshot', '@smoke', '@node'] }, () => {
|
|
test('Can add badge', async ({ comfyPage }) => {
|
|
await comfyPage.page.evaluate(() => {
|
|
const LGraphBadge = window.LGraphBadge!
|
|
const app = window.app as ComfyApp
|
|
const graph = app.graph
|
|
const nodes = graph.nodes
|
|
|
|
for (const node of nodes) {
|
|
node.badges = [new LGraphBadge({ text: 'Test Badge' })]
|
|
}
|
|
|
|
graph.setDirtyCanvas(true, true)
|
|
})
|
|
|
|
await expect(comfyPage.canvas).toHaveScreenshot('node-badge.png')
|
|
})
|
|
|
|
test('Can add multiple badges', async ({ comfyPage }) => {
|
|
await comfyPage.page.evaluate(() => {
|
|
const LGraphBadge = window.LGraphBadge!
|
|
const app = window.app as ComfyApp
|
|
const graph = app.graph
|
|
const nodes = graph.nodes
|
|
|
|
for (const node of nodes) {
|
|
node.badges = [
|
|
new LGraphBadge({ text: 'Test Badge 1' }),
|
|
new LGraphBadge({ text: 'Test Badge 2' })
|
|
]
|
|
}
|
|
|
|
graph.setDirtyCanvas(true, true)
|
|
})
|
|
|
|
await expect(comfyPage.canvas).toHaveScreenshot('node-badge-multiple.png')
|
|
})
|
|
|
|
test('Can add badge left-side', async ({ comfyPage }) => {
|
|
await comfyPage.page.evaluate(() => {
|
|
const LGraphBadge = window.LGraphBadge!
|
|
const app = window.app as ComfyApp
|
|
const graph = app.graph
|
|
const nodes = graph.nodes
|
|
|
|
for (const node of nodes) {
|
|
node.badges = [new LGraphBadge({ text: 'Test Badge' })]
|
|
// @ts-expect-error - Enum value
|
|
node.badgePosition = 'top-left'
|
|
}
|
|
|
|
graph.setDirtyCanvas(true, true)
|
|
})
|
|
|
|
await expect(comfyPage.canvas).toHaveScreenshot('node-badge-left.png')
|
|
})
|
|
})
|
|
|
|
test.describe(
|
|
'Node source badge',
|
|
{ tag: ['@screenshot', '@smoke', '@node'] },
|
|
() => {
|
|
Object.values(NodeBadgeMode).forEach(async (mode) => {
|
|
test(`Shows node badges (${mode})`, async ({ comfyPage }) => {
|
|
// Execution error workflow has both custom node and core node.
|
|
await comfyPage.workflow.loadWorkflow('nodes/execution_error')
|
|
await comfyPage.settings.setSetting(
|
|
'Comfy.NodeBadge.NodeSourceBadgeMode',
|
|
mode
|
|
)
|
|
await comfyPage.settings.setSetting(
|
|
'Comfy.NodeBadge.NodeIdBadgeMode',
|
|
mode
|
|
)
|
|
await expect
|
|
.poll(
|
|
() =>
|
|
comfyPage.settings.getSetting('Comfy.NodeBadge.NodeIdBadgeMode'),
|
|
{ message: 'NodeIdBadgeMode setting should be applied' }
|
|
)
|
|
.toBe(mode)
|
|
await comfyPage.canvasOps.resetView()
|
|
await expect(comfyPage.canvas).toHaveScreenshot(
|
|
`node-badge-${mode}.png`
|
|
)
|
|
})
|
|
})
|
|
}
|
|
)
|
|
|
|
test.describe(
|
|
'Node badge color',
|
|
{ tag: ['@screenshot', '@smoke', '@node'] },
|
|
() => {
|
|
test('Can show node badge with unknown color palette', async ({
|
|
comfyPage
|
|
}) => {
|
|
await comfyPage.settings.setSetting(
|
|
'Comfy.NodeBadge.NodeIdBadgeMode',
|
|
NodeBadgeMode.ShowAll
|
|
)
|
|
await comfyPage.settings.setSetting('Comfy.ColorPalette', 'unknown')
|
|
await expect
|
|
.poll(() => comfyPage.settings.getSetting('Comfy.ColorPalette'), {
|
|
message: 'ColorPalette setting should be applied'
|
|
})
|
|
.toBe('unknown')
|
|
await comfyPage.canvasOps.clickEmptySpace()
|
|
await expect(comfyPage.canvas).toHaveScreenshot(
|
|
'node-badge-unknown-color-palette.png'
|
|
)
|
|
})
|
|
|
|
test('Can show node badge with light color palette', async ({
|
|
comfyPage
|
|
}) => {
|
|
await comfyPage.settings.setSetting(
|
|
'Comfy.NodeBadge.NodeIdBadgeMode',
|
|
NodeBadgeMode.ShowAll
|
|
)
|
|
await comfyPage.settings.setSetting('Comfy.ColorPalette', 'light')
|
|
await expect
|
|
.poll(() => comfyPage.settings.getSetting('Comfy.ColorPalette'), {
|
|
message: 'ColorPalette setting should be applied'
|
|
})
|
|
.toBe('light')
|
|
await comfyPage.canvasOps.clickEmptySpace()
|
|
await expect(comfyPage.canvas).toHaveScreenshot(
|
|
'node-badge-light-color-palette.png'
|
|
)
|
|
})
|
|
}
|
|
)
|
|
|
|
for (const vueEnabled of [false, true] as const) {
|
|
const renderer = vueEnabled ? 'vue' : 'classic'
|
|
const tag = vueEnabled
|
|
? ['@vue-nodes', '@screenshot', '@node']
|
|
: ['@screenshot', '@node']
|
|
|
|
test.describe(`Node lifecycle badge (${renderer})`, { tag }, () => {
|
|
test.beforeEach(async ({ comfyPage }) => {
|
|
await comfyPage.settings.setSetting('Comfy.Graph.CanvasInfo', false)
|
|
})
|
|
|
|
for (const mode of [NodeBadgeMode.ShowAll, NodeBadgeMode.None] as const) {
|
|
test(`renders deprecated node with mode=${mode}`, async ({
|
|
comfyPage
|
|
}) => {
|
|
await comfyPage.settings.setSetting(
|
|
'Comfy.NodeBadge.NodeLifeCycleBadgeMode',
|
|
mode
|
|
)
|
|
await comfyPage.nodeOps.clearGraph()
|
|
await comfyPage.nodeOps.addNode(DEPRECATED_NODE_TYPE, undefined, {
|
|
x: 100,
|
|
y: 100
|
|
})
|
|
await comfyPage.canvasOps.resetView()
|
|
await expect(comfyPage.canvas).toHaveScreenshot(
|
|
`node-lifecycle-${mode}-${renderer}.png`
|
|
)
|
|
})
|
|
}
|
|
})
|
|
|
|
test.describe(`API pricing badge (${renderer})`, { tag }, () => {
|
|
test.beforeEach(async ({ comfyPage }) => {
|
|
await comfyPage.settings.setSetting('Comfy.Graph.CanvasInfo', false)
|
|
await comfyPage.page.evaluate((type) => {
|
|
const registered = window.LiteGraph!.registered_node_types[type] as {
|
|
nodeData?: { price_badge?: unknown }
|
|
}
|
|
if (!registered?.nodeData) throw new Error(`No nodeData for ${type}`)
|
|
registered.nodeData.price_badge = {
|
|
engine: 'jsonata',
|
|
expr: "{'type': 'text', 'text': '99.9 credits/Run'}",
|
|
depends_on: { widgets: [], inputs: [], input_groups: [] }
|
|
}
|
|
}, API_NODE_TYPE)
|
|
})
|
|
|
|
for (const enabled of [true, false] as const) {
|
|
test(`renders api node with showApiPricing=${enabled}`, async ({
|
|
comfyPage
|
|
}) => {
|
|
await comfyPage.settings.setSetting(
|
|
'Comfy.NodeBadge.ShowApiPricing',
|
|
enabled
|
|
)
|
|
await comfyPage.nodeOps.clearGraph()
|
|
await comfyPage.nodeOps.addNode(API_NODE_TYPE, undefined, {
|
|
x: 100,
|
|
y: 100
|
|
})
|
|
await comfyPage.canvasOps.resetView()
|
|
await expect(comfyPage.canvas).toHaveScreenshot(
|
|
`api-pricing-${enabled ? 'on' : 'off'}-${renderer}.png`
|
|
)
|
|
})
|
|
}
|
|
})
|
|
}
|