mirror of
https://github.com/moltbot/moltbot.git
synced 2026-05-16 18:34:18 +00:00
39 lines
1.1 KiB
TypeScript
39 lines
1.1 KiB
TypeScript
import { execFileSync } from "node:child_process";
|
|
import path from "node:path";
|
|
import { pathToFileURL } from "node:url";
|
|
import { describe, expect, it } from "vitest";
|
|
|
|
describe("plugin SDK fetch runtime", () => {
|
|
it("does not initialize the undici global dispatcher on import", () => {
|
|
const moduleUrl = pathToFileURL(path.resolve("src/plugin-sdk/fetch-runtime.ts")).href;
|
|
const source = `
|
|
const dispatcherKey = Symbol.for("undici.globalDispatcher.1");
|
|
await import(${JSON.stringify(moduleUrl)});
|
|
if (globalThis[dispatcherKey] !== undefined) {
|
|
throw new Error("undici global dispatcher was initialized");
|
|
}
|
|
console.log("ok");
|
|
`;
|
|
const env = { ...process.env };
|
|
for (const key of [
|
|
"HTTP_PROXY",
|
|
"HTTPS_PROXY",
|
|
"ALL_PROXY",
|
|
"http_proxy",
|
|
"https_proxy",
|
|
"all_proxy",
|
|
"OPENCLAW_DEBUG_PROXY_ENABLED",
|
|
]) {
|
|
delete env[key];
|
|
}
|
|
|
|
const output = execFileSync(
|
|
process.execPath,
|
|
["--import", "tsx", "--input-type=module", "--eval", source],
|
|
{ cwd: process.cwd(), encoding: "utf8", env },
|
|
);
|
|
|
|
expect(output.trim()).toBe("ok");
|
|
});
|
|
});
|