Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

アクセントの読み変更時のE2Eテストを追加 #2420

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions tests/e2e/browser/アクセント.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,21 @@ test("アクセント分割したらアクセント区間が増える", async ({
await page.waitForTimeout(500);
expect(await page.locator(".mora-table").count()).toBe(2);
});

test("アクセントの読み部分をクリックすると読みを変更できる", async ({
page,
}) => {
await navigateToMain(page);

await page.getByRole("textbox", { name: "1行目" }).click();
await page.getByRole("textbox", { name: "1行目" }).fill("テストです");
await page.getByRole("textbox", { name: "1行目" }).press("Enter");
await page.waitForTimeout(500);

await expect(page.locator(".text-cell").first()).toBeVisible();
await page.locator(".text-cell").first().click();
const qMenu = page.locator(".q-menu > label > div > div > div");
expect(await qMenu.first().inputValue()).toBe("テストデス");
await qMenu.fill("テストテスト");
expect(await qMenu.first().inputValue()).toBe("テストテスト");
});
1 change: 1 addition & 0 deletions tests/e2e/browser/音声パラメータ.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ test("音声パラメータ引き継ぎの設定", async ({ page }) => {
// パラメータを引き継がないことの確認
await page.locator(".audio-cell input").first().click();
await page.getByRole("button").filter({ hasText: "add" }).click();
await page.waitForTimeout(100);
Copy link
Contributor Author

@jdkfx jdkfx Dec 18, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

テストを追加したことにより、この処理がないと既存の通っていたテストが通らなくなる。
理由は不明。

  1) [browser] › browser/音声パラメータ.spec.ts:12:5 › 音声パラメータ引き継ぎの設定 ─────────────────────────────────────

    Error: expect(received).toBe(expected) // Object.is equality

    Expected: "1.00"
    Received: "0.50"

       7 | async function validateValue(locator: Locator, expectedValue: string) {
       8 |   const value = await locator.evaluate((e: HTMLInputElement) => e.value);
    >  9 |   expect(value).toBe(expectedValue);
         |                 ^
      10 | }
      11 |
      12 | test("音声パラメータ引き継ぎの設定", async ({ page }) => {

        at validateValue (/Users/jdkfx/Desktop/workspace/voicevox/tests/e2e/browser/音声パラメータ.spec.ts:9:17)
        at /Users/jdkfx/Desktop/workspace/voicevox/tests/e2e/browser/音声パラメータ.spec.ts:37:3

    attachment #1: video (video/webm) ──────────────────────────────────────────────────────────────
    test-results/音声パラメータ-音声パラメータ引き継ぎの設定-browser/video.webm
    ────────────────────────────────────────────────────────────────────────────────────────────────

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

flakyになりやすいから、waitForTimeoutではない方法を使った方がいいかも。
https://zenn.dev/cureapp/articles/73cd66a37cc9e8

Copy link
Member

@Hiroshiba Hiroshiba Dec 20, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

flakyになりやすいから、waitForTimeoutではない方法を使った方がいいかも。

同感です!
ちょっとe2eにまだ慣れてないときのコードが多くwaitForTimeoutが点在していますが本当は使わないのがベストなはず。

ここの原因は・・・・ちょっと不正確かもですが、そもそもここはエンジンへのリクエストを送信して返ってくるまで待機してるかもですね・・・。
(テストを追加したことによりテストが並列実行されてエンジンが一瞬詰まる、みたいなのとかが起こる)

ちょっと良い解決策が思いつかないので、これ系はまだしばらくwaitForTimeoutのまま行かないとかもです 😇

await validateValue(inputTag, "1.00");

// スライダーからパラメータの変更ができるかどうかを確認
Expand Down
Loading