mirror of https://github.com/openclaw/openclaw.git
124 lines
3.4 KiB
TypeScript
124 lines
3.4 KiB
TypeScript
import { describe, expect, it, vi } from "vitest";
|
|
import { noteChromeMcpBrowserReadiness } from "./doctor-browser.js";
|
|
|
|
describe("doctor browser readiness", () => {
|
|
it("does nothing when Chrome MCP is not configured", async () => {
|
|
const noteFn = vi.fn();
|
|
await noteChromeMcpBrowserReadiness(
|
|
{
|
|
browser: {
|
|
profiles: {
|
|
openclaw: { color: "#FF4500" },
|
|
},
|
|
},
|
|
},
|
|
{
|
|
noteFn,
|
|
},
|
|
);
|
|
expect(noteFn).not.toHaveBeenCalled();
|
|
});
|
|
|
|
it("warns when Chrome MCP is configured but Chrome is missing", async () => {
|
|
const noteFn = vi.fn();
|
|
await noteChromeMcpBrowserReadiness(
|
|
{
|
|
browser: {
|
|
defaultProfile: "user",
|
|
},
|
|
},
|
|
{
|
|
noteFn,
|
|
platform: "darwin",
|
|
resolveChromeExecutable: () => null,
|
|
},
|
|
);
|
|
|
|
expect(noteFn).toHaveBeenCalledTimes(1);
|
|
expect(String(noteFn.mock.calls[0]?.[0])).toContain("Google Chrome was not found");
|
|
expect(String(noteFn.mock.calls[0]?.[0])).toContain("brave://inspect/#remote-debugging");
|
|
});
|
|
|
|
it("warns when detected Chrome is too old for Chrome MCP", async () => {
|
|
const noteFn = vi.fn();
|
|
await noteChromeMcpBrowserReadiness(
|
|
{
|
|
browser: {
|
|
profiles: {
|
|
chromeLive: {
|
|
driver: "existing-session",
|
|
color: "#00AA00",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
noteFn,
|
|
platform: "linux",
|
|
resolveChromeExecutable: () => ({ path: "/usr/bin/google-chrome" }),
|
|
readVersion: () => "Google Chrome 143.0.7499.4",
|
|
},
|
|
);
|
|
|
|
expect(noteFn).toHaveBeenCalledTimes(1);
|
|
expect(String(noteFn.mock.calls[0]?.[0])).toContain("too old");
|
|
expect(String(noteFn.mock.calls[0]?.[0])).toContain("Chrome 144+");
|
|
});
|
|
|
|
it("reports the detected Chrome version for existing-session profiles", async () => {
|
|
const noteFn = vi.fn();
|
|
await noteChromeMcpBrowserReadiness(
|
|
{
|
|
browser: {
|
|
profiles: {
|
|
chromeLive: {
|
|
driver: "existing-session",
|
|
color: "#00AA00",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
noteFn,
|
|
platform: "win32",
|
|
resolveChromeExecutable: () => ({
|
|
path: "C:\\Program Files\\Google\\Chrome\\Application\\chrome.exe",
|
|
}),
|
|
readVersion: () => "Google Chrome 144.0.7534.0",
|
|
},
|
|
);
|
|
|
|
expect(noteFn).toHaveBeenCalledTimes(1);
|
|
expect(String(noteFn.mock.calls[0]?.[0])).toContain(
|
|
"Detected Chrome Google Chrome 144.0.7534.0",
|
|
);
|
|
});
|
|
|
|
it("skips Chrome auto-detection when profiles use explicit userDataDir", async () => {
|
|
const noteFn = vi.fn();
|
|
await noteChromeMcpBrowserReadiness(
|
|
{
|
|
browser: {
|
|
profiles: {
|
|
braveLive: {
|
|
driver: "existing-session",
|
|
userDataDir: "/Users/test/Library/Application Support/BraveSoftware/Brave-Browser",
|
|
color: "#FB542B",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
noteFn,
|
|
resolveChromeExecutable: () => {
|
|
throw new Error("should not look up Chrome");
|
|
},
|
|
},
|
|
);
|
|
|
|
expect(noteFn).toHaveBeenCalledTimes(1);
|
|
expect(String(noteFn.mock.calls[0]?.[0])).toContain("explicit Chromium user data directory");
|
|
expect(String(noteFn.mock.calls[0]?.[0])).toContain("brave://inspect/#remote-debugging");
|
|
});
|
|
});
|