mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-04-20 14:30:41 +00:00
## Summary Adds Playwright E2E tests for the SignIn dialog component and its sub-forms. ## Tests added - Dialog opens from login button in topbar - Sign In form is the default view with email/password fields - Toggle between Sign In and Sign Up forms - API Key form navigation (forward and back) - Terms of Service and Privacy Policy links present - Form field presence verification - Dialog close behavior (close button and Escape key) - Forgot password link presence - 'Or continue with' divider and API key button ## Notes - Tests focus on UI navigation and element presence (no real Firebase auth in test env) - Dialog opened via `extensionManager.dialog.showSignInDialog()` API - All selectors use stable IDs from the component source (`#comfy-org-sign-in-email`, etc.) ## Task Part of Test Coverage Q2 Overhaul (DLG-04). ## Conventions - Uses Vue nodes with new menu enabled (`Comfy.UseNewMenu: 'Top'`) - Tests read as user stories - No full-page screenshots - Proper waits, no sleeps ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-10587-test-add-SignIn-dialog-E2E-tests-DLG-04-3306d73d3650815db171f8c5228e2cf3) by [Unito](https://www.unito.io) --------- Co-authored-by: GitHub Action <action@github.com>
95 lines
3.1 KiB
TypeScript
95 lines
3.1 KiB
TypeScript
import { expect } from '@playwright/test'
|
|
|
|
import { comfyPageFixture as test } from '../../fixtures/ComfyPage'
|
|
import { SignInDialog } from '../../fixtures/components/SignInDialog'
|
|
|
|
test.describe('Sign In dialog', { tag: '@ui' }, () => {
|
|
let dialog: SignInDialog
|
|
|
|
test.beforeEach(async ({ comfyPage }) => {
|
|
await comfyPage.settings.setSetting('Comfy.UseNewMenu', 'Top')
|
|
dialog = new SignInDialog(comfyPage.page)
|
|
await dialog.open()
|
|
})
|
|
|
|
test('Should open and show the sign-in form by default', async () => {
|
|
await expect(
|
|
dialog.root.getByRole('heading', { name: 'Log in to your account' })
|
|
).toBeVisible()
|
|
await expect(dialog.emailInput).toBeVisible()
|
|
await expect(dialog.passwordInput).toBeVisible()
|
|
await expect(dialog.signInButton).toBeVisible()
|
|
})
|
|
|
|
test('Should toggle from sign-in to sign-up form', async () => {
|
|
await dialog.signUpLink.click()
|
|
|
|
await expect(
|
|
dialog.root.getByRole('heading', { name: 'Create an account' })
|
|
).toBeVisible()
|
|
await expect(dialog.signUpEmailInput).toBeVisible()
|
|
await expect(dialog.signUpPasswordInput).toBeVisible()
|
|
await expect(dialog.signUpConfirmPasswordInput).toBeVisible()
|
|
await expect(dialog.signUpButton).toBeVisible()
|
|
})
|
|
|
|
test('Should toggle back from sign-up to sign-in form', async () => {
|
|
await dialog.signUpLink.click()
|
|
await expect(
|
|
dialog.root.getByRole('heading', { name: 'Create an account' })
|
|
).toBeVisible()
|
|
|
|
await dialog.signInLink.click()
|
|
await expect(
|
|
dialog.root.getByRole('heading', { name: 'Log in to your account' })
|
|
).toBeVisible()
|
|
await expect(dialog.emailInput).toBeVisible()
|
|
await expect(dialog.passwordInput).toBeVisible()
|
|
})
|
|
|
|
test('Should navigate to the API Key form and back', async () => {
|
|
await dialog.apiKeyButton.click()
|
|
|
|
await expect(dialog.apiKeyHeading).toBeVisible()
|
|
await expect(dialog.apiKeyInput).toBeVisible()
|
|
|
|
await dialog.backButton.click()
|
|
await expect(
|
|
dialog.root.getByRole('heading', { name: 'Log in to your account' })
|
|
).toBeVisible()
|
|
})
|
|
|
|
test('Should display Terms of Service and Privacy Policy links', async () => {
|
|
await expect(dialog.termsLink).toBeVisible()
|
|
await expect(dialog.termsLink).toHaveAttribute(
|
|
'href',
|
|
'https://www.comfy.org/terms-of-service'
|
|
)
|
|
|
|
await expect(dialog.privacyLink).toBeVisible()
|
|
await expect(dialog.privacyLink).toHaveAttribute(
|
|
'href',
|
|
'https://www.comfy.org/privacy'
|
|
)
|
|
})
|
|
|
|
test('Should display the "Or continue with" divider and API key button', async () => {
|
|
await expect(dialog.dividerText).toBeVisible()
|
|
await expect(dialog.apiKeyButton).toBeVisible()
|
|
})
|
|
|
|
test('Should show forgot password link on sign-in form', async () => {
|
|
await expect(dialog.forgotPasswordLink).toBeVisible()
|
|
})
|
|
|
|
test('Should close dialog via close button', async () => {
|
|
await dialog.close()
|
|
await expect(dialog.root).toBeHidden()
|
|
})
|
|
|
|
test('Should close dialog via Escape key', async ({ comfyPage }) => {
|
|
await comfyPage.page.keyboard.press('Escape')
|
|
await expect(dialog.root).toBeHidden()
|
|
})
|
|
})
|