mirror of
https://github.com/DayuanJiang/next-ai-draw-io.git
synced 2026-01-08 01:02:29 +08:00
- Add tests/e2e/lib/fixtures.ts with shared test helpers - Add tests/e2e/fixtures/diagrams.ts with XML test data - Add expectBeforeAndAfterReload() helper for persistence tests - Add test.step() for better test reporting in complex tests - Consolidate mock helpers into fixtures module - Reduce code duplication across 17 test files
102 lines
3.5 KiB
TypeScript
102 lines
3.5 KiB
TypeScript
import {
|
|
expect,
|
|
expectBeforeAndAfterReload,
|
|
getChatInput,
|
|
getIframe,
|
|
openSettings,
|
|
sleep,
|
|
test,
|
|
} from "./lib/fixtures"
|
|
|
|
test.describe("Language Switching", () => {
|
|
test("loads English by default", async ({ page }) => {
|
|
await page.goto("/", { waitUntil: "networkidle" })
|
|
await getIframe(page).waitFor({ state: "visible", timeout: 30000 })
|
|
|
|
const chatInput = getChatInput(page)
|
|
await expect(chatInput).toBeVisible({ timeout: 10000 })
|
|
|
|
await expect(page.locator('button:has-text("Send")')).toBeVisible()
|
|
})
|
|
|
|
test("can switch to Japanese", async ({ page }) => {
|
|
await page.goto("/", { waitUntil: "networkidle" })
|
|
await getIframe(page).waitFor({ state: "visible", timeout: 30000 })
|
|
|
|
await test.step("open settings and select Japanese", async () => {
|
|
await openSettings(page)
|
|
const languageSelector = page.locator('button:has-text("English")')
|
|
await languageSelector.first().click()
|
|
await page.locator('text="日本語"').click()
|
|
})
|
|
|
|
await test.step("verify UI is in Japanese", async () => {
|
|
await expect(page.locator('button:has-text("送信")')).toBeVisible({
|
|
timeout: 5000,
|
|
})
|
|
})
|
|
})
|
|
|
|
test("can switch to Chinese", async ({ page }) => {
|
|
await page.goto("/", { waitUntil: "networkidle" })
|
|
await getIframe(page).waitFor({ state: "visible", timeout: 30000 })
|
|
|
|
await test.step("open settings and select Chinese", async () => {
|
|
await openSettings(page)
|
|
const languageSelector = page.locator('button:has-text("English")')
|
|
await languageSelector.first().click()
|
|
await page.locator('text="中文"').click()
|
|
})
|
|
|
|
await test.step("verify UI is in Chinese", async () => {
|
|
await expect(page.locator('button:has-text("发送")')).toBeVisible({
|
|
timeout: 5000,
|
|
})
|
|
})
|
|
})
|
|
|
|
test("language persists after reload", async ({ page }) => {
|
|
await page.goto("/", { waitUntil: "networkidle" })
|
|
await getIframe(page).waitFor({ state: "visible", timeout: 30000 })
|
|
|
|
await test.step("switch to Japanese", async () => {
|
|
await openSettings(page)
|
|
const languageSelector = page.locator('button:has-text("English")')
|
|
await languageSelector.first().click()
|
|
await page.locator('text="日本語"').click()
|
|
await page.keyboard.press("Escape")
|
|
await sleep(500)
|
|
})
|
|
|
|
await expectBeforeAndAfterReload(
|
|
page,
|
|
"Japanese language setting",
|
|
async () => {
|
|
await expect(
|
|
page.locator('button:has-text("送信")'),
|
|
).toBeVisible({
|
|
timeout: 10000,
|
|
})
|
|
},
|
|
)
|
|
})
|
|
|
|
test("Japanese locale URL works", async ({ page }) => {
|
|
await page.goto("/ja", { waitUntil: "networkidle" })
|
|
await getIframe(page).waitFor({ state: "visible", timeout: 30000 })
|
|
|
|
await expect(page.locator('button:has-text("送信")')).toBeVisible({
|
|
timeout: 10000,
|
|
})
|
|
})
|
|
|
|
test("Chinese locale URL works", async ({ page }) => {
|
|
await page.goto("/zh", { waitUntil: "networkidle" })
|
|
await getIframe(page).waitFor({ state: "visible", timeout: 30000 })
|
|
|
|
await expect(page.locator('button:has-text("发送")')).toBeVisible({
|
|
timeout: 10000,
|
|
})
|
|
})
|
|
})
|