mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-06 14:01:24 +08:00
71 lines
2.2 KiB
TypeScript
71 lines
2.2 KiB
TypeScript
// Tests browser lifecycle cleanup after CLI and runtime shutdown paths.
|
|
import { beforeEach, describe, expect, it, vi } from "vitest";
|
|
import type { OpenClawConfig } from "./config/types.openclaw.js";
|
|
|
|
const closeTrackedBrowserTabsForSessions = vi.hoisted(() => vi.fn(async () => 0));
|
|
|
|
vi.mock("./plugin-sdk/browser-maintenance.js", () => ({
|
|
closeTrackedBrowserTabsForSessions,
|
|
}));
|
|
|
|
const { cleanupBrowserSessionsForLifecycleEnd } = await import("./browser-lifecycle-cleanup.js");
|
|
|
|
describe("cleanupBrowserSessionsForLifecycleEnd", () => {
|
|
beforeEach(() => {
|
|
vi.clearAllMocks();
|
|
});
|
|
|
|
it("normalizes session keys before closing browser sessions", async () => {
|
|
const onWarn = vi.fn();
|
|
|
|
await expect(
|
|
cleanupBrowserSessionsForLifecycleEnd({
|
|
sessionKeys: ["", " session-a ", "session-a", "session-b"],
|
|
onWarn,
|
|
}),
|
|
).resolves.toBeUndefined();
|
|
|
|
expect(closeTrackedBrowserTabsForSessions).toHaveBeenCalledWith({
|
|
sessionKeys: ["session-a", "session-b"],
|
|
onWarn,
|
|
});
|
|
});
|
|
|
|
it("skips cleanup when root browser support is disabled", async () => {
|
|
await expect(
|
|
cleanupBrowserSessionsForLifecycleEnd({
|
|
cfg: { browser: { enabled: false } } as OpenClawConfig,
|
|
sessionKeys: ["session-a"],
|
|
}),
|
|
).resolves.toBeUndefined();
|
|
|
|
expect(closeTrackedBrowserTabsForSessions).not.toHaveBeenCalled();
|
|
});
|
|
|
|
it("skips cleanup when the browser plugin entry is disabled", async () => {
|
|
await expect(
|
|
cleanupBrowserSessionsForLifecycleEnd({
|
|
cfg: { plugins: { entries: { browser: { enabled: false } } } } as OpenClawConfig,
|
|
sessionKeys: ["session-a"],
|
|
}),
|
|
).resolves.toBeUndefined();
|
|
|
|
expect(closeTrackedBrowserTabsForSessions).not.toHaveBeenCalled();
|
|
});
|
|
|
|
it("swallows browser cleanup failures", async () => {
|
|
const onError = vi.fn();
|
|
const error = new Error("cleanup failed");
|
|
closeTrackedBrowserTabsForSessions.mockRejectedValueOnce(error);
|
|
|
|
await expect(
|
|
cleanupBrowserSessionsForLifecycleEnd({
|
|
sessionKeys: ["session-a"],
|
|
onError,
|
|
}),
|
|
).resolves.toBeUndefined();
|
|
|
|
expect(onError).toHaveBeenCalledWith(error);
|
|
});
|
|
});
|