mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-04-20 06:20:11 +00:00
## Summary Migrate 13 component test files from @vue/test-utils to @testing-library/vue as Phase 1 of incremental VTL adoption. ## Changes - **What**: Rewrite 13 test files (88 tests) to use `render`/`screen` queries, `userEvent` interactions, and `jest-dom` assertions. Add `data-testid` attributes to 6 components for lint-clean icon/element queries. Delete unused `src/utils/test-utils.ts`. - **Dependencies**: `@testing-library/vue`, `@testing-library/user-event`, `@testing-library/jest-dom` (installed in Phase 0) ## Review Focus - `data-testid` additions to component templates are minimal and non-behavioral - PrimeVue passthrough (`pt`) usage in UserAvatar.vue for icon testid - 2 targeted `eslint-disable` in FormRadioGroup.test.ts where PrimeVue places `aria-describedby` on wrapper div, not input ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-10471-test-migrate-13-component-tests-from-VTU-to-VTL-Phase-1-32d6d73d36508159a33ffa285afb4c38) by [Unito](https://www.unito.io) --------- Co-authored-by: Amp <amp@ampcode.com>
186 lines
5.1 KiB
TypeScript
186 lines
5.1 KiB
TypeScript
import { createTestingPinia } from '@pinia/testing'
|
|
import { describe, expect, it, vi } from 'vitest'
|
|
import { nextTick } from 'vue'
|
|
import { createI18n } from 'vue-i18n'
|
|
|
|
import type {
|
|
JobListItem,
|
|
JobStatus
|
|
} from '@/platform/remote/comfyui/jobs/jobTypes'
|
|
import { useCommandStore } from '@/stores/commandStore'
|
|
import {
|
|
TaskItemImpl,
|
|
useQueueSettingsStore,
|
|
useQueueStore
|
|
} from '@/stores/queueStore'
|
|
import { render, screen } from '@testing-library/vue'
|
|
import userEvent from '@testing-library/user-event'
|
|
|
|
import ComfyQueueButton from './ComfyQueueButton.vue'
|
|
|
|
vi.mock('@/platform/distribution/types', () => ({
|
|
isCloud: false
|
|
}))
|
|
|
|
vi.mock('@/platform/telemetry', () => ({
|
|
useTelemetry: () => null
|
|
}))
|
|
|
|
vi.mock('@/workbench/extensions/manager/utils/graphHasMissingNodes', () => ({
|
|
graphHasMissingNodes: () => false
|
|
}))
|
|
|
|
vi.mock('@/scripts/app', () => ({
|
|
app: {
|
|
rootGraph: {}
|
|
}
|
|
}))
|
|
|
|
vi.mock('@/stores/workspaceStore', () => ({
|
|
useWorkspaceStore: () => ({
|
|
shiftDown: false
|
|
})
|
|
}))
|
|
|
|
const BatchCountEditStub = {
|
|
template: '<div data-testid="batch-count-edit" />'
|
|
}
|
|
|
|
const i18n = createI18n({
|
|
legacy: false,
|
|
locale: 'en',
|
|
messages: {
|
|
en: {
|
|
menu: {
|
|
run: 'Run',
|
|
disabledTooltip: 'Disabled tooltip',
|
|
onChange: 'On Change',
|
|
onChangeTooltip: 'On change tooltip',
|
|
instant: 'Instant',
|
|
instantTooltip: 'Instant tooltip',
|
|
stopRunInstant: 'Stop Run (Instant)',
|
|
stopRunInstantTooltip: 'Stop running',
|
|
runWorkflow: 'Run workflow',
|
|
runWorkflowFront: 'Run workflow front',
|
|
runWorkflowDisabled: 'Run workflow disabled'
|
|
}
|
|
}
|
|
}
|
|
})
|
|
|
|
function createTask(id: string, status: JobStatus): TaskItemImpl {
|
|
const job: JobListItem = {
|
|
id,
|
|
status,
|
|
create_time: Date.now(),
|
|
priority: 1
|
|
}
|
|
|
|
return new TaskItemImpl(job)
|
|
}
|
|
|
|
const stubs = {
|
|
BatchCountEdit: BatchCountEditStub,
|
|
DropdownMenuRoot: { template: '<div><slot /></div>' },
|
|
DropdownMenuTrigger: { template: '<div><slot /></div>' },
|
|
DropdownMenuPortal: { template: '<div><slot /></div>' },
|
|
DropdownMenuContent: { template: '<div><slot /></div>' },
|
|
DropdownMenuItem: { template: '<div><slot /></div>' }
|
|
}
|
|
|
|
function renderQueueButton() {
|
|
const pinia = createTestingPinia({ createSpy: vi.fn })
|
|
const user = userEvent.setup()
|
|
|
|
const result = render(ComfyQueueButton, {
|
|
global: {
|
|
plugins: [pinia, i18n],
|
|
directives: {
|
|
tooltip: () => {}
|
|
},
|
|
stubs
|
|
}
|
|
})
|
|
|
|
return { ...result, user }
|
|
}
|
|
|
|
describe('ComfyQueueButton', () => {
|
|
it('renders the batch count control before the run button', () => {
|
|
renderQueueButton()
|
|
const controls = screen.getAllByTestId(/batch-count-edit|queue-button/)
|
|
|
|
expect(controls[0]).toHaveAttribute('data-testid', 'batch-count-edit')
|
|
expect(controls[1]).toHaveAttribute('data-testid', 'queue-button')
|
|
})
|
|
|
|
it('keeps the run instant presentation while idle even with active jobs', async () => {
|
|
renderQueueButton()
|
|
const queueSettingsStore = useQueueSettingsStore()
|
|
const queueStore = useQueueStore()
|
|
|
|
queueSettingsStore.mode = 'instant-idle'
|
|
queueStore.runningTasks = [createTask('run-1', 'in_progress')]
|
|
await nextTick()
|
|
|
|
const queueButton = screen.getByTestId('queue-button')
|
|
|
|
expect(queueButton).toHaveTextContent('Run (Instant)')
|
|
expect(queueButton).toHaveAttribute('data-variant', 'primary')
|
|
})
|
|
|
|
it('switches to stop presentation when instant mode is armed', async () => {
|
|
renderQueueButton()
|
|
const queueSettingsStore = useQueueSettingsStore()
|
|
|
|
queueSettingsStore.mode = 'instant-running'
|
|
await nextTick()
|
|
|
|
const queueButton = screen.getByTestId('queue-button')
|
|
|
|
expect(queueButton).toHaveTextContent('Stop Run (Instant)')
|
|
expect(queueButton).toHaveAttribute('data-variant', 'destructive')
|
|
})
|
|
|
|
it('disarms instant mode without interrupting even when jobs are active', async () => {
|
|
const { user } = renderQueueButton()
|
|
const queueSettingsStore = useQueueSettingsStore()
|
|
const queueStore = useQueueStore()
|
|
const commandStore = useCommandStore()
|
|
|
|
queueSettingsStore.mode = 'instant-running'
|
|
queueStore.runningTasks = [createTask('run-1', 'in_progress')]
|
|
await nextTick()
|
|
|
|
await user.click(screen.getByTestId('queue-button'))
|
|
await nextTick()
|
|
|
|
expect(queueSettingsStore.mode).toBe('instant-idle')
|
|
const queueButton = screen.getByTestId('queue-button')
|
|
expect(queueButton).toHaveTextContent('Run (Instant)')
|
|
expect(queueButton).toHaveAttribute('data-variant', 'primary')
|
|
|
|
expect(commandStore.execute).not.toHaveBeenCalled()
|
|
})
|
|
|
|
it('activates instant running mode when queueing again', async () => {
|
|
const { user } = renderQueueButton()
|
|
const queueSettingsStore = useQueueSettingsStore()
|
|
const commandStore = useCommandStore()
|
|
|
|
queueSettingsStore.mode = 'instant-idle'
|
|
await nextTick()
|
|
|
|
await user.click(screen.getByTestId('queue-button'))
|
|
await nextTick()
|
|
|
|
expect(queueSettingsStore.mode).toBe('instant-running')
|
|
expect(commandStore.execute).toHaveBeenCalledWith('Comfy.QueuePrompt', {
|
|
metadata: {
|
|
subscribe_to_run: false,
|
|
trigger_source: 'button'
|
|
}
|
|
})
|
|
})
|
|
})
|