mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-09 13:17:39 +00:00
135 lines
3.9 KiB
TypeScript
135 lines
3.9 KiB
TypeScript
import { describe, expect, it, vi } from "vitest";
|
|
import {
|
|
installPwToolsCoreTestHooks,
|
|
setPwToolsCoreCurrentPage,
|
|
} from "./pw-tools-core.test-harness.js";
|
|
|
|
installPwToolsCoreTestHooks();
|
|
const mod = await import("./pw-tools-core.js");
|
|
|
|
describe("pw-tools-core", () => {
|
|
it("last file-chooser arm wins", async () => {
|
|
let resolve1: ((value: unknown) => void) | null = null;
|
|
let resolve2: ((value: unknown) => void) | null = null;
|
|
|
|
const fc1 = { setFiles: vi.fn(async () => {}) };
|
|
const fc2 = { setFiles: vi.fn(async () => {}) };
|
|
|
|
const waitForEvent = vi
|
|
.fn()
|
|
.mockImplementationOnce(
|
|
() =>
|
|
new Promise((r) => {
|
|
resolve1 = r;
|
|
}),
|
|
)
|
|
.mockImplementationOnce(
|
|
() =>
|
|
new Promise((r) => {
|
|
resolve2 = r;
|
|
}),
|
|
);
|
|
|
|
setPwToolsCoreCurrentPage({
|
|
waitForEvent,
|
|
keyboard: { press: vi.fn(async () => {}) },
|
|
});
|
|
|
|
await mod.armFileUploadViaPlaywright({
|
|
cdpUrl: "http://127.0.0.1:18792",
|
|
paths: ["/tmp/1"],
|
|
});
|
|
await mod.armFileUploadViaPlaywright({
|
|
cdpUrl: "http://127.0.0.1:18792",
|
|
paths: ["/tmp/2"],
|
|
});
|
|
|
|
if (!resolve1 || !resolve2) {
|
|
throw new Error("file chooser handlers were not registered");
|
|
}
|
|
(resolve1 as (value: unknown) => void)(fc1);
|
|
(resolve2 as (value: unknown) => void)(fc2);
|
|
await Promise.resolve();
|
|
|
|
expect(fc1.setFiles).not.toHaveBeenCalled();
|
|
expect(fc2.setFiles).toHaveBeenCalledWith(["/tmp/2"]);
|
|
});
|
|
it("arms the next dialog and accepts/dismisses (default timeout)", async () => {
|
|
const accept = vi.fn(async () => {});
|
|
const dismiss = vi.fn(async () => {});
|
|
const dialog = { accept, dismiss };
|
|
const waitForEvent = vi.fn(async () => dialog);
|
|
setPwToolsCoreCurrentPage({
|
|
waitForEvent,
|
|
});
|
|
|
|
await mod.armDialogViaPlaywright({
|
|
cdpUrl: "http://127.0.0.1:18792",
|
|
accept: true,
|
|
promptText: "x",
|
|
});
|
|
await Promise.resolve();
|
|
|
|
expect(waitForEvent).toHaveBeenCalledWith("dialog", { timeout: 120_000 });
|
|
expect(accept).toHaveBeenCalledWith("x");
|
|
expect(dismiss).not.toHaveBeenCalled();
|
|
|
|
accept.mockClear();
|
|
dismiss.mockClear();
|
|
waitForEvent.mockClear();
|
|
|
|
await mod.armDialogViaPlaywright({
|
|
cdpUrl: "http://127.0.0.1:18792",
|
|
accept: false,
|
|
});
|
|
await Promise.resolve();
|
|
|
|
expect(waitForEvent).toHaveBeenCalledWith("dialog", { timeout: 120_000 });
|
|
expect(dismiss).toHaveBeenCalled();
|
|
expect(accept).not.toHaveBeenCalled();
|
|
});
|
|
it("waits for selector, url, load state, and function", async () => {
|
|
const waitForSelector = vi.fn(async () => {});
|
|
const waitForURL = vi.fn(async () => {});
|
|
const waitForLoadState = vi.fn(async () => {});
|
|
const waitForFunction = vi.fn(async () => {});
|
|
const waitForTimeout = vi.fn(async () => {});
|
|
|
|
const page = {
|
|
locator: vi.fn(() => ({
|
|
first: () => ({ waitFor: waitForSelector }),
|
|
})),
|
|
waitForURL,
|
|
waitForLoadState,
|
|
waitForFunction,
|
|
waitForTimeout,
|
|
getByText: vi.fn(() => ({ first: () => ({ waitFor: vi.fn() }) })),
|
|
};
|
|
setPwToolsCoreCurrentPage(page);
|
|
|
|
await mod.waitForViaPlaywright({
|
|
cdpUrl: "http://127.0.0.1:18792",
|
|
selector: "#main",
|
|
url: "**/dash",
|
|
loadState: "networkidle",
|
|
fn: "window.ready===true",
|
|
timeoutMs: 1234,
|
|
timeMs: 50,
|
|
});
|
|
|
|
expect(waitForTimeout).toHaveBeenCalledWith(50);
|
|
expect(page.locator as ReturnType<typeof vi.fn>).toHaveBeenCalledWith("#main");
|
|
expect(waitForSelector).toHaveBeenCalledWith({
|
|
state: "visible",
|
|
timeout: 1234,
|
|
});
|
|
expect(waitForURL).toHaveBeenCalledWith("**/dash", { timeout: 1234 });
|
|
expect(waitForLoadState).toHaveBeenCalledWith("networkidle", {
|
|
timeout: 1234,
|
|
});
|
|
expect(waitForFunction).toHaveBeenCalledWith("window.ready===true", {
|
|
timeout: 1234,
|
|
});
|
|
});
|
|
});
|