mirror of
https://github.com/gradio-app/gradio.git
synced 2024-12-15 02:11:15 +08:00
cd3fab3b1f
* tests
* fix race condition
* fix test
* try again
* revert changes
* 🤞
* see failure
* add changeset
* add changeset
* Fix
* Fix
* make apply pass
* try
* check
* remove first
* fix code
* delete changeset
* fix reload test
---------
Co-authored-by: gradio-pr-bot <gradio-pr-bot@users.noreply.github.com>
70 lines
2.5 KiB
TypeScript
70 lines
2.5 KiB
TypeScript
import { test, expect, drag_and_drop_file } from "@self/tootils";
|
|
|
|
test("Video click-to-upload uploads video successfuly. Clear, play, and pause buttons dispatch events correctly. Downloading the file works and has the correct name.", async ({
|
|
page
|
|
}) => {
|
|
await page.getByRole("button", { name: "Upload file" }).click();
|
|
const uploader = await page.locator("input[type=file]");
|
|
await uploader.setInputFiles(["./test/files/file_test.ogg"]);
|
|
|
|
await expect(page.getByLabel("# Change Events")).toHaveValue("1");
|
|
await expect(page.getByLabel("# Upload Events")).toHaveValue("1");
|
|
|
|
await page.getByLabel("Clear").click();
|
|
await expect(page.getByLabel("# Change Events")).toHaveValue("2");
|
|
await page.getByRole("button", { name: "Upload file" }).click();
|
|
|
|
await uploader.setInputFiles(["./test/files/file_test.ogg"]);
|
|
|
|
await expect(page.getByLabel("# Change Events")).toHaveValue("3");
|
|
await expect(page.getByLabel("# Upload Events")).toHaveValue("2");
|
|
|
|
const downloadPromise = page.waitForEvent("download");
|
|
await page.getByLabel("Download").click();
|
|
const download = await downloadPromise;
|
|
await expect(download.suggestedFilename()).toBe("file_test.ogg");
|
|
});
|
|
|
|
test("Video play, pause events work correctly.", async ({ page }) => {
|
|
await page.getByLabel("Upload file").click();
|
|
const uploader = await page.locator("input[type=file]");
|
|
await uploader.setInputFiles(["./test/files/file_test.ogg"]);
|
|
|
|
// Wait change event to trigger
|
|
await expect(page.getByLabel("# Change Events")).toHaveValue("1");
|
|
|
|
await page.getByLabel("play-pause-replay-button").first().click();
|
|
await expect(page.getByLabel("# Play Events")).toHaveValue("1");
|
|
await page.getByLabel("play-pause-replay-button").first().click();
|
|
await expect(page.getByLabel("# Pause Events")).toHaveValue("1");
|
|
});
|
|
|
|
test("Video drag-and-drop uploads a file to the server correctly.", async ({
|
|
page
|
|
}) => {
|
|
await page.getByLabel("Upload file").click();
|
|
await drag_and_drop_file(
|
|
page,
|
|
"input[type=file]",
|
|
"./test/files/file_test.ogg",
|
|
"file_test.ogg",
|
|
"video/*"
|
|
);
|
|
await expect(page.getByLabel("# Change Events")).toHaveValue("1");
|
|
await expect(page.getByLabel("# Upload Events")).toHaveValue("1");
|
|
});
|
|
|
|
test("Video drag-and-drop displays a warning when the file is of the wrong mime type.", async ({
|
|
page
|
|
}) => {
|
|
await page.getByLabel("Upload file").click();
|
|
await drag_and_drop_file(
|
|
page,
|
|
"input[type=file]",
|
|
"./test/files/file_test.ogg",
|
|
"file_test.ogg"
|
|
);
|
|
const toast = page.getByTestId("toast-body");
|
|
expect(toast).toContainText("Warning");
|
|
});
|