mirror of
https://github.com/gradio-app/gradio.git
synced 2025-01-12 10:34:32 +08:00
755157f99c
* Add code * Copy files * I think its working * Tidy up * add changeset * do not change demos * test * Don't copy files * Add code * lint * Add reload mode e2e test * Reload mode test * add changeset * add changeset * Use NO_RELOAD * add no reload to docs * add changeset * Fix docs * handle else statements. No need to edit string * Fix typos * Use compile * Do not use unparse * notebook * Documentation comments * Fix top-package import without having to delete all modules * Revert demo calculator * Typo guides * Fix website --------- Co-authored-by: gradio-pr-bot <gradio-pr-bot@users.noreply.github.com> Co-authored-by: aliabd <ali.si3luwa@gmail.com> Co-authored-by: Abubakar Abid <abubakar@huggingface.co>
85 lines
2.0 KiB
TypeScript
85 lines
2.0 KiB
TypeScript
import { test, expect } from "@playwright/test";
|
|
import { spawnSync } from "node:child_process";
|
|
import { launch_app_background, kill_process } from "./utils";
|
|
import { join } from "path";
|
|
|
|
let _process;
|
|
|
|
test.beforeAll(() => {
|
|
const demo = `
|
|
import gradio as gr
|
|
|
|
def greet(name):
|
|
return "Hello " + name + "!"
|
|
|
|
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
|
|
|
|
if __name__ == "__main__":
|
|
demo.launch()
|
|
`;
|
|
// write contents of demo to a local 'run.py' file
|
|
spawnSync(`echo '${demo}' > ${join(process.cwd(), "run.py")}`, {
|
|
shell: true,
|
|
stdio: "pipe",
|
|
env: {
|
|
...process.env,
|
|
PYTHONUNBUFFERED: "true"
|
|
}
|
|
});
|
|
});
|
|
|
|
test.afterAll(() => {
|
|
if (_process) kill_process(_process);
|
|
spawnSync(`rm ${join(process.cwd(), "run.py")}`, {
|
|
shell: true,
|
|
stdio: "pipe",
|
|
env: {
|
|
...process.env,
|
|
PYTHONUNBUFFERED: "true"
|
|
}
|
|
});
|
|
});
|
|
|
|
test("gradio dev mode correctly reloads the page", async ({ page }) => {
|
|
test.setTimeout(20 * 1000);
|
|
|
|
try {
|
|
const port = 7880;
|
|
const { _process: server_process } = await launch_app_background(
|
|
`GRADIO_SERVER_PORT=${port} gradio ${join(process.cwd(), "run.py")}`,
|
|
process.cwd()
|
|
);
|
|
_process = server_process;
|
|
console.log("Connected to port", port);
|
|
const demo = `
|
|
import gradio as gr
|
|
|
|
def greet(name):
|
|
return "Hello " + name + "!"
|
|
|
|
demo = gr.Interface(fn=greet, inputs=gr.Textbox(label="x"), outputs=gr.Textbox(label="foo"))
|
|
|
|
if __name__ == "__main__":
|
|
demo.launch()
|
|
`;
|
|
// write contents of demo to a local 'run.py' file
|
|
await page.goto(`http://localhost:${port}`);
|
|
spawnSync(`echo '${demo}' > ${join(process.cwd(), "run.py")}`, {
|
|
shell: true,
|
|
stdio: "pipe",
|
|
env: {
|
|
...process.env,
|
|
PYTHONUNBUFFERED: "true"
|
|
}
|
|
});
|
|
//await page.reload();
|
|
|
|
await page.getByLabel("x").fill("Maria");
|
|
await page.getByRole("button", { name: "Submit" }).click();
|
|
|
|
await expect(page.getByLabel("foo")).toHaveValue("Hello Maria!");
|
|
} finally {
|
|
if (_process) kill_process(_process);
|
|
}
|
|
});
|