mirror of
https://github.com/gradio-app/gradio.git
synced 2024-12-03 01:50:59 +08:00
bd2c695328
* py * path * barebones js * add changeset * add changeset * downloadbutton * add changeset * changes * clog * commit * revert' * fix * js * add changeset * cleanup * download * notebooks * stories * change * fix * format * download * Fix updating `icon` parameter (bug resulting from https://github.com/gradio-app/gradio/pull/7528) (#7554) * fetch 2 * fix --------- Co-authored-by: gradio-pr-bot <gradio-pr-bot@users.noreply.github.com>
208 lines
5.5 KiB
TypeScript
208 lines
5.5 KiB
TypeScript
import { test, describe, assert, afterEach } from "vitest";
|
|
import { cleanup, render } from "@gradio/tootils";
|
|
import Chatbot from "./Index.svelte";
|
|
import type { LoadingStatus } from "@gradio/statustracker";
|
|
// import type { FileData } from "@gradio/client";
|
|
|
|
const loading_status: LoadingStatus = {
|
|
eta: 0,
|
|
queue_position: 1,
|
|
queue_size: 1,
|
|
status: "complete",
|
|
scroll_to_output: false,
|
|
visible: true,
|
|
fn_index: 0,
|
|
show_progress: "full"
|
|
};
|
|
|
|
describe("Chatbot", () => {
|
|
afterEach(() => cleanup());
|
|
|
|
test("renders user and bot messages", async () => {
|
|
const { getAllByTestId } = await render(Chatbot, {
|
|
loading_status,
|
|
label: "chatbot",
|
|
value: [["user message one", "bot message one"]],
|
|
latex_delimiters: [{ left: "$$", right: "$$", display: true }]
|
|
});
|
|
|
|
const bot = getAllByTestId("user")[0];
|
|
const user = getAllByTestId("bot")[0];
|
|
|
|
assert.exists(bot);
|
|
assert.exists(user);
|
|
});
|
|
|
|
test("null messages are not visible", async () => {
|
|
const { getByRole, container } = await render(Chatbot, {
|
|
loading_status,
|
|
label: "chatbot",
|
|
value: [[null, null]],
|
|
latex_delimiters: [{ left: "$$", right: "$$", display: true }]
|
|
});
|
|
|
|
const chatbot = getByRole("log");
|
|
|
|
const userButton = container.querySelector(".user button");
|
|
const botButton = container.querySelector(".bot button");
|
|
|
|
assert.notExists(userButton);
|
|
assert.notExists(botButton);
|
|
|
|
assert.isFalse(chatbot.innerHTML.includes("button"));
|
|
});
|
|
|
|
test("empty string messages are visible", async () => {
|
|
const { container } = await render(Chatbot, {
|
|
loading_status,
|
|
label: "chatbot",
|
|
value: [["", ""]],
|
|
latex_delimiters: [{ left: "$$", right: "$$", display: true }]
|
|
});
|
|
|
|
const userButton = container.querySelector(".user button");
|
|
const botButton = container.querySelector(".bot button");
|
|
|
|
assert.exists(userButton);
|
|
assert.exists(botButton);
|
|
});
|
|
|
|
test("renders additional message as they are passed", async () => {
|
|
const { component, getAllByTestId } = await render(Chatbot, {
|
|
loading_status,
|
|
label: "chatbot",
|
|
value: [["user message one", "bot message one"]],
|
|
latex_delimiters: [{ left: "$$", right: "$$", display: true }]
|
|
});
|
|
|
|
await component.$set({
|
|
value: [
|
|
["user message one", "bot message one"],
|
|
["user message two", "bot message two"]
|
|
]
|
|
});
|
|
|
|
const user_2 = getAllByTestId("user");
|
|
const bot_2 = getAllByTestId("bot");
|
|
|
|
assert.equal(user_2.length, 2);
|
|
assert.equal(bot_2.length, 2);
|
|
|
|
assert.exists(user_2[1]);
|
|
assert.exists(bot_2[1]);
|
|
});
|
|
|
|
test("renders image bot and user messages", async () => {
|
|
const { component, getAllByTestId, debug } = await render(Chatbot, {
|
|
loading_status,
|
|
label: "chatbot",
|
|
value: undefined,
|
|
latex_delimiters: []
|
|
});
|
|
|
|
let value: [string | FileData | null, string | FileData | null][] = Array(
|
|
2
|
|
).fill([
|
|
{
|
|
file: {
|
|
path: "https://gradio-builds.s3.amazonaws.com/demo-files/cheetah1.jpg",
|
|
url: "https://gradio-builds.s3.amazonaws.com/demo-files/cheetah1.jpg",
|
|
mime_type: "image/jpeg",
|
|
alt_text: null
|
|
}
|
|
}
|
|
]);
|
|
|
|
await component.$set({
|
|
value: value
|
|
});
|
|
|
|
const image = getAllByTestId("chatbot-image") as HTMLImageElement[];
|
|
debug(image[0]);
|
|
assert.isTrue(image[0].src.includes("cheetah1.jpg"));
|
|
assert.isTrue(image[1].src.includes("cheetah1.jpg"));
|
|
});
|
|
|
|
test("renders video bot and user messages", async () => {
|
|
const { component, getAllByTestId } = await render(Chatbot, {
|
|
loading_status,
|
|
label: "chatbot",
|
|
latex_delimiters: [],
|
|
theme_mode: "dark"
|
|
});
|
|
let value: Array<[string | FileData | null, string | FileData | null]> =
|
|
Array(2).fill([
|
|
{
|
|
file: {
|
|
path: "https://gradio-builds.s3.amazonaws.com/demo-files/video_sample.mp4",
|
|
url: "https://gradio-builds.s3.amazonaws.com/demo-files/video_sample.mp4",
|
|
mime_type: "video/mp4",
|
|
alt_text: null
|
|
}
|
|
}
|
|
]);
|
|
await component.$set({
|
|
value: value
|
|
});
|
|
|
|
const video = getAllByTestId("chatbot-video") as HTMLVideoElement[];
|
|
assert.isTrue(video[0].src.includes("video_sample.mp4"));
|
|
assert.isTrue(video[1].src.includes("video_sample.mp4"));
|
|
});
|
|
|
|
test("renders audio bot and user messages", async () => {
|
|
const { component, getAllByTestId } = await render(Chatbot, {
|
|
loading_status,
|
|
label: "chatbot",
|
|
latex_delimiters: [],
|
|
theme_mode: "dark"
|
|
});
|
|
|
|
let value = Array(2).fill([
|
|
{
|
|
file: {
|
|
path: "https://gradio-builds.s3.amazonaws.com/demo-files/audio_sample.wav",
|
|
url: "https://gradio-builds.s3.amazonaws.com/demo-files/audio_sample.wav",
|
|
mime_type: "audio/wav",
|
|
alt_text: null
|
|
}
|
|
}
|
|
]);
|
|
|
|
await component.$set({
|
|
value: value
|
|
});
|
|
|
|
const audio = getAllByTestId("chatbot-audio") as HTMLAudioElement[];
|
|
assert.isTrue(audio[0].src.includes("audio_sample.wav"));
|
|
assert.isTrue(audio[1].src.includes("audio_sample.wav"));
|
|
});
|
|
|
|
test("renders hyperlinks to file bot and user messages", async () => {
|
|
const { component, getAllByTestId } = await render(Chatbot, {
|
|
loading_status,
|
|
label: "chatbot",
|
|
latex_delimiters: []
|
|
});
|
|
|
|
let value = Array(2).fill([
|
|
{
|
|
file: {
|
|
path: "https://gradio-builds.s3.amazonaws.com/demo-files/titanic.csv",
|
|
url: "https://gradio-builds.s3.amazonaws.com/demo-files/titanic.csv",
|
|
mime_type: "text/csv",
|
|
alt_text: null
|
|
}
|
|
}
|
|
]);
|
|
|
|
await component.$set({
|
|
value: value
|
|
});
|
|
|
|
const file_link = getAllByTestId("chatbot-file") as HTMLAnchorElement[];
|
|
assert.isTrue(file_link[0].href.includes("titanic.csv"));
|
|
assert.isTrue(file_link[0].href.includes("titanic.csv"));
|
|
});
|
|
});
|