mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-05-25 15:15:47 +00:00
Address review feedback: move saveCloseAndReopenInBuilder to builderTestUtils, reuse it in builderReorder.spec.ts, and add unit tests for enterBuilder/exitBuilder pruning, removeSelectedInput, updateInputConfig merge, loadSelections edge cases, and pruneLinearData branches. Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent) Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
141 lines
4.3 KiB
TypeScript
141 lines
4.3 KiB
TypeScript
import { expect } from '@playwright/test'
|
|
|
|
import type { ComfyPage } from '@e2e/fixtures/ComfyPage'
|
|
import type { AppModeHelper } from '@e2e/fixtures/helpers/AppModeHelper'
|
|
import type { NodeReference } from '@e2e/fixtures/utils/litegraphUtils'
|
|
|
|
import { comfyExpect } from '@e2e/fixtures/ComfyPage'
|
|
import { fitToViewInstant } from '@e2e/fixtures/utils/fitToView'
|
|
|
|
interface BuilderSetupResult {
|
|
inputNodeTitle: string
|
|
widgetNames: string[]
|
|
}
|
|
|
|
/**
|
|
* Enter builder on the default workflow and select I/O.
|
|
*
|
|
* Loads the default workflow, optionally transforms it (e.g. convert a node
|
|
* to subgraph), then enters builder mode and selects inputs + outputs.
|
|
*
|
|
* @param comfyPage - The page fixture.
|
|
* @param prepareGraph - Optional callback to transform the graph before
|
|
* entering builder. Receives the KSampler node ref and returns the
|
|
* input node title and widget names to select.
|
|
* Defaults to KSampler with its first widget.
|
|
* Mutually exclusive with widgetNames.
|
|
* @param widgetNames - Widget names to select from the KSampler node.
|
|
* Only used when prepareGraph is not provided.
|
|
* Mutually exclusive with prepareGraph.
|
|
*/
|
|
export async function setupBuilder(
|
|
comfyPage: ComfyPage,
|
|
prepareGraph?: (ksampler: NodeReference) => Promise<BuilderSetupResult>,
|
|
widgetNames?: string[]
|
|
): Promise<void> {
|
|
const { appMode } = comfyPage
|
|
await comfyPage.workflow.loadWorkflow('default')
|
|
|
|
const ksampler = await comfyPage.nodeOps.getNodeRefById('3')
|
|
|
|
const { inputNodeTitle, widgetNames: inputWidgets } = prepareGraph
|
|
? await prepareGraph(ksampler)
|
|
: { inputNodeTitle: 'KSampler', widgetNames: widgetNames ?? ['seed'] }
|
|
|
|
await fitToViewInstant(comfyPage)
|
|
await appMode.enterBuilder()
|
|
await appMode.steps.goToInputs()
|
|
|
|
for (const name of inputWidgets) {
|
|
await appMode.select.selectInputWidget(inputNodeTitle, name)
|
|
}
|
|
|
|
await appMode.steps.goToOutputs()
|
|
await appMode.select.selectOutputNode('Save Image')
|
|
}
|
|
|
|
/**
|
|
* Convert the KSampler to a subgraph, then enter builder with I/O selected.
|
|
*/
|
|
export async function setupSubgraphBuilder(
|
|
comfyPage: ComfyPage
|
|
): Promise<void> {
|
|
await setupBuilder(comfyPage, async (ksampler) => {
|
|
await ksampler.click('title')
|
|
await ksampler.convertToSubgraph()
|
|
await comfyPage.nextFrame()
|
|
|
|
return {
|
|
inputNodeTitle: 'New Subgraph',
|
|
widgetNames: ['seed']
|
|
}
|
|
})
|
|
}
|
|
|
|
/**
|
|
* Open the save-as dialog, fill name + view type, click save,
|
|
* and wait for the success dialog.
|
|
*/
|
|
export async function builderSaveAs(
|
|
appMode: AppModeHelper,
|
|
workflowName: string,
|
|
viewType: 'App' | 'Node graph' = 'App'
|
|
) {
|
|
await appMode.footer.saveAsButton.click()
|
|
await comfyExpect(appMode.saveAs.nameInput).toBeVisible()
|
|
await appMode.saveAs.fillAndSave(workflowName, viewType)
|
|
await comfyExpect(appMode.saveAs.successMessage).toBeVisible()
|
|
}
|
|
|
|
/**
|
|
* Load a different workflow, then reopen the named one from the sidebar.
|
|
* Caller must ensure the page is in graph mode (not builder or app mode)
|
|
* before calling.
|
|
*/
|
|
export async function openWorkflowFromSidebar(
|
|
comfyPage: ComfyPage,
|
|
name: string
|
|
) {
|
|
await comfyPage.workflow.loadWorkflow('default')
|
|
await comfyPage.nextFrame()
|
|
const { workflowsTab } = comfyPage.menu
|
|
await workflowsTab.open()
|
|
await workflowsTab.getPersistedItem(name).dblclick()
|
|
await comfyPage.nextFrame()
|
|
|
|
await expect
|
|
.poll(() => comfyPage.workflow.getActiveWorkflowPath())
|
|
.toContain(name)
|
|
}
|
|
|
|
/** Save the workflow, reopen it, and enter app mode. */
|
|
export async function saveAndReopenInAppMode(
|
|
comfyPage: ComfyPage,
|
|
workflowName: string
|
|
) {
|
|
await comfyPage.menu.topbar.saveWorkflow(workflowName)
|
|
|
|
const { workflowsTab } = comfyPage.menu
|
|
await workflowsTab.open()
|
|
await workflowsTab.getPersistedItem(workflowName).dblclick()
|
|
await comfyPage.nextFrame()
|
|
|
|
await comfyPage.appMode.toggleAppMode()
|
|
}
|
|
|
|
export async function saveCloseAndReopenInBuilder(
|
|
comfyPage: ComfyPage,
|
|
appMode: AppModeHelper,
|
|
workflowName: string
|
|
) {
|
|
await appMode.steps.goToPreview()
|
|
await builderSaveAs(appMode, workflowName)
|
|
await appMode.saveAs.closeButton.click()
|
|
await expect(appMode.saveAs.successDialog).toBeHidden()
|
|
|
|
await appMode.footer.exitBuilder()
|
|
await openWorkflowFromSidebar(comfyPage, workflowName)
|
|
await appMode.enterBuilder()
|
|
await appMode.steps.goToInputs()
|
|
}
|