mirror of
https://github.com/gradio-app/gradio.git
synced 2025-03-13 11:57:29 +08:00
* move files * commit the rest of the files * fix lockfile * fix workflow * fix type errors * fix tests * only run ci when certain files change * run correct test command in ci * version * fix pypi script --------- Co-authored-by: Abubakar Abid <abubakar@huggingface.co>
49 lines
1.2 KiB
TypeScript
49 lines
1.2 KiB
TypeScript
import { test, expect, Page } from "@playwright/test";
|
|
import { mock_theme, wait_for_page } from "./utils";
|
|
|
|
function mock_demo(page: Page, demo: string) {
|
|
return page.route("**/config", (route) => {
|
|
return route.fulfill({
|
|
headers: {
|
|
"Access-Control-Allow-Origin": "*"
|
|
},
|
|
path: `../../demo/${demo}/config.json`
|
|
});
|
|
});
|
|
}
|
|
|
|
function mock_api(page: Page, body: Array<unknown>) {
|
|
return page.route("**/run/predict", (route) => {
|
|
const id = JSON.parse(route.request().postData()!).fn_index;
|
|
return route.fulfill({
|
|
headers: {
|
|
"Access-Control-Allow-Origin": "*"
|
|
},
|
|
body: JSON.stringify({
|
|
data: body[id]
|
|
})
|
|
});
|
|
});
|
|
}
|
|
|
|
test("renders the correct elements", async ({ page }) => {
|
|
await mock_demo(page, "blocks_inputs");
|
|
await mock_api(page, [["hi dawood"]]);
|
|
await mock_theme(page);
|
|
await wait_for_page(page);
|
|
|
|
const textboxes = await page.getByLabel("Input");
|
|
|
|
const textboxOne = await textboxes.first();
|
|
const textboxTwo = await textboxes.last();
|
|
|
|
await textboxOne.fill("hi");
|
|
await textboxTwo.fill("dawood");
|
|
await Promise.all([
|
|
page.click('text="Submit"'),
|
|
page.waitForResponse("**/run/predict")
|
|
]);
|
|
|
|
await expect(await page.getByLabel("Output")).toHaveValue("hi dawood");
|
|
});
|