gradio/js/video/Video.test.ts
pngwn fe057300f0
delegate gradio events via a custom event dispatcher (#5279)
* delegate gradio events via a custom event dispatcher

* improve md perf + share code

* fix df markdown

* prevent model3d from rerending too frequently

* tweaks

* fix more event bugs with video

* add changeset

* optimise handle mount

* does this do anything

* fix

* remove old dispatches

* fix dropdown position

* oops

* fixes

* fix tests

* fix types

* format

* fix markdown code

* add changeset

* fix typecheck

* fix typecheck

* fix demos

* notebooks

* fix tests

* changer

* maybe this

* fixes

* add changeset

* fix chatbot alignment mobile

* fix chantbot

* add changeset

* changeset

* changeset

* storybook

---------

Co-authored-by: gradio-pr-bot <gradio-pr-bot@users.noreply.github.com>
Co-authored-by: Abubakar Abid <abubakar@huggingface.co>
2023-08-23 21:48:10 +01:00

286 lines
7.1 KiB
TypeScript

import {
test,
describe,
assert,
afterEach,
vi,
beforeAll,
beforeEach,
expect
} from "vitest";
import { spy, spyOn } from "tinyspy";
import { cleanup, render } from "@gradio/tootils";
import { setupi18n } from "../app/src/i18n";
import InteractiveVideo from "./interactive";
import StaticVideo from "./static";
import type { LoadingStatus } from "@gradio/statustracker";
const loading_status = {
eta: 0,
queue_position: 1,
queue_size: 1,
status: "complete" as LoadingStatus["status"],
scroll_to_output: false,
visible: true,
fn_index: 0,
show_progress: "full" as LoadingStatus["show_progress"]
};
describe("Video", () => {
beforeAll(() => {
window.HTMLMediaElement.prototype.play = vi.fn();
window.HTMLMediaElement.prototype.pause = vi.fn();
});
beforeEach(setupi18n);
afterEach(() => cleanup());
test("renders provided value and label", async () => {
const { getByTestId, queryAllByText } = await render(InteractiveVideo, {
show_label: true,
loading_status,
value: [
{
name: "https://gradio-builds.s3.amazonaws.com/demo-files/audio_sample.wav",
data: null,
is_file: true
}
],
label: "Test Label",
root: "foo",
root_url: null,
streaming: false,
pending: false,
name: "bar",
source: "upload"
});
let vid = getByTestId("Test Label-player") as HTMLVideoElement;
assert.equal(
vid.src,
"https://gradio-builds.s3.amazonaws.com/demo-files/audio_sample.wav"
);
assert.equal(queryAllByText("Test Label").length, 1);
});
test("hides label", async () => {
const { queryAllByText } = await render(InteractiveVideo, {
show_label: false,
loading_status,
value: {
name: "https://gradio-builds.s3.amazonaws.com/demo-files/audio_sample.wav",
data: null,
is_file: true
},
label: "Video Component",
root: "foo",
root_url: null,
streaming: false,
pending: false,
name: "bar",
source: "upload"
});
assert.equal(queryAllByText("Video Component").length, 1);
});
test("static Video sets value", async () => {
const { getByTestId } = await render(StaticVideo, {
show_label: true,
loading_status,
value: [
{
name: "https://gradio-builds.s3.amazonaws.com/demo-files/audio_sample.wav",
data: null,
is_file: true
}
],
root: "foo",
root_url: null,
streaming: false,
pending: false,
name: "bar",
source: "upload"
});
let vid = getByTestId("test-player") as HTMLVideoElement;
assert.equal(
vid.src,
"https://gradio-builds.s3.amazonaws.com/demo-files/audio_sample.wav"
);
});
test("when autoplay is true `media.play` should be called in static mode", async () => {
const { getByTestId } = await render(StaticVideo, {
show_label: true,
loading_status,
mode: "static",
value: [
{
name: "https://gradio-builds.s3.amazonaws.com/demo-files/audio_sample.wav",
data: null,
is_file: true
}
],
root: "foo",
root_url: null,
streaming: false,
pending: false,
source: "upload",
autoplay: true
});
const startButton = getByTestId("test-player") as HTMLVideoElement;
const fn = spyOn(startButton, "play");
startButton.dispatchEvent(new Event("loadeddata"));
assert.equal(fn.callCount, 1);
});
test("when autoplay is true `media.play` should be called in dynamic mode", async () => {
const { getByTestId } = await render(InteractiveVideo, {
show_label: true,
loading_status,
value: [
{
name: "https://gradio-builds.s3.amazonaws.com/demo-files/audio_sample.wav",
data: null,
is_file: true
}
],
root: "foo",
root_url: null,
streaming: false,
pending: false,
source: "upload",
autoplay: true
});
const startButton = getByTestId("test-player") as HTMLVideoElement;
const fn = spyOn(startButton, "play");
startButton.dispatchEvent(new Event("loadeddata"));
assert.equal(fn.callCount, 1);
});
test("when autoplay is true `media.play` should be called in static mode when the Video data is updated", async () => {
const { component, getByTestId } = await render(StaticVideo, {
show_label: true,
loading_status,
mode: "static",
value: [
{
name: "https://gradio-builds.s3.amazonaws.com/demo-files/audio_sample.wav",
data: null,
is_file: true
}
],
root: "foo",
root_url: null,
streaming: false,
pending: false,
source: "upload",
autoplay: true
});
const startButton = getByTestId("test-player") as HTMLVideoElement;
const fn = spyOn(startButton, "play");
startButton.dispatchEvent(new Event("loadeddata"));
component.$set({
value: [
{
name: "https://gradio-builds.s3.amazonaws.com/demo-files/audio_sample.wav",
data: null,
is_file: true
}
]
});
startButton.dispatchEvent(new Event("loadeddata"));
assert.equal(fn.callCount, 2);
});
test("when autoplay is true `media.play` should be called in dynamic mode when the Video data is updated", async () => {
const { component, getByTestId } = await render(InteractiveVideo, {
show_label: true,
loading_status,
mode: "dynamic",
value: [
{
name: "https://gradio-builds.s3.amazonaws.com/demo-files/audio_sample.wav",
data: null,
is_file: true
}
],
root: "foo",
root_url: null,
streaming: false,
pending: false,
source: "upload",
autoplay: true
});
const startButton = getByTestId("test-player") as HTMLVideoElement;
const fn = spyOn(startButton, "play");
startButton.dispatchEvent(new Event("loadeddata"));
component.$set({
value: [
{
name: "https://gradio-builds.s3.amazonaws.com/demo-files/audio_sample.wav",
data: null,
is_file: true
}
]
});
startButton.dispatchEvent(new Event("loadeddata"));
assert.equal(fn.callCount, 2);
});
test("renders video and download button", async () => {
const data = [
{
data: null,
name: "https://raw.githubusercontent.com/gradio-app/gradio/main/gradio/demo/video_component/files/a.mp4",
is_file: true
}
];
const results = await render(StaticVideo, {
mode: "static",
label: "video",
show_label: true,
value: data,
root: "foo"
});
const downloadButton = results.getAllByTestId("download-div")[0];
expect(
downloadButton.getElementsByTagName("a")[0].getAttribute("href")
).toBe(data[0].name);
expect(
downloadButton.getElementsByTagName("button").length
).toBeGreaterThan(0);
});
test("video change event trigger fires when value is changed and only fires once", async () => {
const { component, listen } = await render(InteractiveVideo, {
show_label: true,
loading_status,
mode: "dynamic",
value: [
{
name: "https://raw.githubusercontent.com/gradio-app/gradio/main/gradio/demo/video_component/files/a.mp4",
data: null,
is_file: true
}
],
root: "foo",
root_url: null,
streaming: false,
pending: false,
source: "upload",
autoplay: true
});
const mock = listen("change");
(component.value = [
{
name: "https://raw.githubusercontent.com/gradio-app/gradio/main/gradio/demo/video_component/files/b.mp4",
data: null,
is_file: true
}
]),
assert.equal(mock.callCount, 1);
});
});