mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-15 17:46:09 +00:00
* chore(types): add declaration files for scripts/lib and scripts/e2e modules
* chore(types): add declaration files for top-level script modules (a-m)
* chore(types): add declaration files for top-level script modules (n-z)
* test: use a non-secret-shaped gateway token fixture
* test: type ci workflow guard helpers for the root test lane
* chore(tooling): typecheck root test/** with a dedicated tsgo lane
- test/tsconfig/tsconfig.test.root.json: root-test program (strict unused checks,
fixtures excluded; two Docker E2E clients that import built dist/** stay out,
same rationale as the scripts/e2e exclusion in tsconfig.scripts.json)
- tsgo:test:root wired into tsgo:test, check:test-types, scripts/check.mjs, and
the ci.yml test-types shard, mirroring the tsgo:scripts lane (#104348)
- changed-lane routing: test/**/*.ts (excluding fixtures) and the lane tsconfig
now trigger 'typecheck test root' in check:changed; previously test/ paths ran
lint only, so harness type errors surfaced first in CI (#104287 envDir case)
- burn down all 1071 latent type errors in the program: precise param/local
types across test/scripts, test/vitest, test/e2e, and transitive scripts/e2e
program members; 205 sibling .d.mts declaration files for imported .mjs
modules (committed separately); zero any, zero ts-expect-error
- resolve the pre-existing testing star-export ambiguity in
scripts/e2e/parallels/common.ts with an explicit re-export
Closes #104388
* chore(types): correct declaration fidelity per structured review
- re-derive 51 .d.mts files from implementation data flow instead of
initializers: fix a wrong never return (runTestProjectsDelegation returns
the child), add encoding-sensitive exec/spawn overloads (plain-gh), restore
the full release profile union, make parsed paths string | null, add missing
parseArgs fields via help/non-help unions, add a missing sibling declaration
(budget-number-args), drop 15 unused lint directives
- precise install-record/tuple typing removes the type-aware oxlint
regressions the first declarations caused in scripts/e2e implementations
- route .mts declaration edits under test/ to the testRoot lane and reference
the test-root project from tsconfig.projects.json so tsgo:all covers it
(closes both review findings against the lane wiring)
* chore(scripts): keep telegram runner dist typing structural for the boundary guard
* chore(types): declare runtime pack and gateway readiness exports added on main
* test: pin the importTargetPlan form of the plugin-contract plan import
The guard expectation still referenced the raw await import( form that
7ae5996bb3 (#103975) replaced with the importTargetPlan fallback helper;
the assertion fails on current main.
369 lines
14 KiB
TypeScript
369 lines
14 KiB
TypeScript
// Test environment tests validate shared env setup helpers.
|
|
import fs from "node:fs";
|
|
import path from "node:path";
|
|
import { importFreshModule } from "openclaw/plugin-sdk/test-fixtures";
|
|
import { afterEach, describe, expect, it, vi } from "vitest";
|
|
import { deleteTestEnvValue, setTestEnvValue } from "../src/test-utils/env.js";
|
|
import { cleanupTempDirs, makeTempDir } from "./helpers/temp-dir.js";
|
|
import { installTestEnv } from "./test-env.js";
|
|
|
|
const ORIGINAL_ENV = { ...process.env };
|
|
|
|
const tempDirs = new Set<string>();
|
|
const cleanupFns: Array<() => void> = [];
|
|
|
|
function restoreProcessEnv(): void {
|
|
for (const key of Object.keys(process.env)) {
|
|
if (!(key in ORIGINAL_ENV)) {
|
|
deleteTestEnvValue(key);
|
|
}
|
|
}
|
|
for (const [key, value] of Object.entries(ORIGINAL_ENV)) {
|
|
if (value === undefined) {
|
|
deleteTestEnvValue(key);
|
|
} else {
|
|
setTestEnvValue(key, value);
|
|
}
|
|
}
|
|
}
|
|
|
|
function writeFile(targetPath: string, content: string): void {
|
|
fs.mkdirSync(path.dirname(targetPath), { recursive: true });
|
|
fs.writeFileSync(targetPath, content, "utf8");
|
|
}
|
|
|
|
function createTempHome(): string {
|
|
return makeTempDir(tempDirs, "openclaw-test-env-real-home-");
|
|
}
|
|
|
|
function requireRecord(
|
|
value: Record<string, unknown> | undefined,
|
|
label: string,
|
|
): Record<string, unknown> {
|
|
if (!value) {
|
|
throw new Error(`expected copied ${label} config`);
|
|
}
|
|
return value;
|
|
}
|
|
|
|
function requireTelegramStreaming(
|
|
value:
|
|
| {
|
|
mode?: string;
|
|
chunkMode?: string;
|
|
block?: { enabled?: boolean };
|
|
preview?: { chunk?: { minChars?: number } };
|
|
}
|
|
| undefined,
|
|
) {
|
|
if (!value) {
|
|
throw new Error("expected copied telegram streaming config");
|
|
}
|
|
return value;
|
|
}
|
|
|
|
afterEach(() => {
|
|
while (cleanupFns.length > 0) {
|
|
cleanupFns.pop()?.();
|
|
}
|
|
restoreProcessEnv();
|
|
cleanupTempDirs(tempDirs);
|
|
});
|
|
|
|
describe("installTestEnv", () => {
|
|
it("keeps live tests on a temp HOME while copying config and auth state", () => {
|
|
const realHome = createTempHome();
|
|
const priorIsolatedHome = createTempHome();
|
|
writeFile(path.join(realHome, ".profile"), "export TEST_PROFILE_ONLY=from-profile\n");
|
|
writeFile(
|
|
path.join(realHome, "custom-openclaw.json5"),
|
|
`{
|
|
// Preserve provider config, strip host-bound paths.
|
|
agents: {
|
|
defaults: {
|
|
workspace: "/Users/peter/Projects",
|
|
agentDir: "/Users/peter/.openclaw/agents/main/agent",
|
|
},
|
|
list: [
|
|
{
|
|
id: "dev",
|
|
workspace: "/Users/peter/dev-workspace",
|
|
agentDir: "/Users/peter/.openclaw/agents/dev/agent",
|
|
},
|
|
],
|
|
},
|
|
models: {
|
|
providers: {
|
|
custom: { baseUrl: "https://example.test/v1" },
|
|
},
|
|
},
|
|
channels: {
|
|
telegram: {
|
|
streaming: {
|
|
mode: "block",
|
|
chunkMode: "newline",
|
|
block: {
|
|
enabled: true,
|
|
},
|
|
preview: {
|
|
chunk: {
|
|
minChars: 120,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}`,
|
|
);
|
|
writeFile(path.join(realHome, ".openclaw", "credentials", "token.txt"), "secret\n");
|
|
writeFile(
|
|
path.join(realHome, ".openclaw", "external-plugins", "glueclaw", "openclaw.plugin.json"),
|
|
'{"id":"glueclaw"}\n',
|
|
);
|
|
writeFile(
|
|
path.join(realHome, ".openclaw", "agents", "main", "agent", "auth-profiles.json"),
|
|
JSON.stringify({ version: 1, profiles: { default: { provider: "openai" } } }, null, 2),
|
|
);
|
|
writeFile(path.join(realHome, ".claude", ".credentials.json"), '{"accessToken":"token"}\n');
|
|
writeFile(path.join(realHome, ".claude", "projects", "old-session.jsonl"), "session\n");
|
|
fs.mkdirSync(path.join(realHome, ".claude", "settings.local.json"), { recursive: true });
|
|
writeFile(path.join(realHome, ".codex", "auth.json"), '{"OPENAI_API_KEY":"token"}\n');
|
|
writeFile(path.join(realHome, ".codex", "config.toml"), 'model = "gpt-5.4"\n');
|
|
writeFile(
|
|
path.join(realHome, ".codex", "sessions", "2026", "02", "26", "rollout.jsonl"),
|
|
"session\n",
|
|
);
|
|
writeFile(path.join(realHome, ".gemini", "oauth_creds.json"), '{"token":"gemini"}\n');
|
|
writeFile(path.join(realHome, ".gemini", "settings.json"), '{"theme":"dark"}\n');
|
|
writeFile(path.join(realHome, ".gemini", "commands", "Cache", "review.toml"), "prompt\n");
|
|
writeFile(path.join(realHome, ".minimax", "Cache", "credentials.json"), "minimax\n");
|
|
writeFile(
|
|
path.join(
|
|
realHome,
|
|
".gemini",
|
|
"antigravity-browser-profile",
|
|
"Default",
|
|
"Cache",
|
|
"Cache_Data",
|
|
"blob",
|
|
),
|
|
"cached-browser-bytes\n",
|
|
);
|
|
writeFile(
|
|
path.join(realHome, ".gemini", "antigravity", "browser_recordings", "session.webm"),
|
|
"recording\n",
|
|
);
|
|
writeFile(
|
|
path.join(realHome, ".gemini", "cli-browser-profile", "Default", "History"),
|
|
"browser-history\n",
|
|
);
|
|
writeFile(path.join(realHome, ".gemini", "GPUCache", "data.bin"), "gpu-cache\n");
|
|
writeFile(
|
|
path.join(realHome, ".gemini", "Service Worker", "CacheStorage", "cache.bin"),
|
|
"worker-cache\n",
|
|
);
|
|
|
|
setTestEnvValue("HOME", realHome);
|
|
setTestEnvValue("USERPROFILE", realHome);
|
|
setTestEnvValue("OPENCLAW_LIVE_TEST", "1");
|
|
setTestEnvValue("OPENCLAW_LIVE_TEST_QUIET", "1");
|
|
setTestEnvValue("OPENCLAW_CONFIG_PATH", "~/custom-openclaw.json5");
|
|
setTestEnvValue("OPENCLAW_TEST_HOME", priorIsolatedHome);
|
|
setTestEnvValue("OPENCLAW_STATE_DIR", path.join(priorIsolatedHome, ".openclaw"));
|
|
|
|
const testEnv = installTestEnv();
|
|
cleanupFns.push(testEnv.cleanup);
|
|
|
|
expect(testEnv.tempHome).not.toBe(realHome);
|
|
expect(process.env.HOME).toBe(testEnv.tempHome);
|
|
expect(process.env.OPENCLAW_TEST_HOME).toBe(testEnv.tempHome);
|
|
expect(process.env.TEST_PROFILE_ONLY).toBe("from-profile");
|
|
|
|
const copiedConfigPath = path.join(testEnv.tempHome, ".openclaw", "openclaw.json");
|
|
const copiedConfig = JSON.parse(fs.readFileSync(copiedConfigPath, "utf8")) as {
|
|
agents?: {
|
|
defaults?: Record<string, unknown>;
|
|
list?: Array<Record<string, unknown>>;
|
|
};
|
|
models?: { providers?: Record<string, unknown> };
|
|
channels?: {
|
|
telegram?: {
|
|
streaming?: {
|
|
mode?: string;
|
|
chunkMode?: string;
|
|
block?: { enabled?: boolean };
|
|
preview?: { chunk?: { minChars?: number } };
|
|
};
|
|
};
|
|
};
|
|
};
|
|
const providers = requireRecord(copiedConfig.models?.providers, "model providers");
|
|
expect(providers.custom).toEqual({ baseUrl: "https://example.test/v1" });
|
|
|
|
const agentDefaults = requireRecord(copiedConfig.agents?.defaults, "agent defaults");
|
|
const agentConfig = requireRecord(copiedConfig.agents?.list?.[0], "agent");
|
|
expect(agentDefaults.workspace).toBeUndefined();
|
|
expect(agentDefaults.agentDir).toBeUndefined();
|
|
expect(agentConfig.workspace).toBeUndefined();
|
|
expect(agentConfig.agentDir).toBeUndefined();
|
|
|
|
const telegramStreaming = requireTelegramStreaming(copiedConfig.channels?.telegram?.streaming);
|
|
expect(telegramStreaming).toEqual({
|
|
mode: "block",
|
|
chunkMode: "newline",
|
|
block: { enabled: true },
|
|
preview: { chunk: { minChars: 120 } },
|
|
});
|
|
|
|
expect(
|
|
fs.existsSync(path.join(testEnv.tempHome, ".openclaw", "credentials", "token.txt")),
|
|
).toBe(true);
|
|
expect(
|
|
fs.existsSync(
|
|
path.join(
|
|
testEnv.tempHome,
|
|
".openclaw",
|
|
"external-plugins",
|
|
"glueclaw",
|
|
"openclaw.plugin.json",
|
|
),
|
|
),
|
|
).toBe(true);
|
|
expect(
|
|
fs.existsSync(
|
|
path.join(testEnv.tempHome, ".openclaw", "agents", "main", "agent", "auth-profiles.json"),
|
|
),
|
|
).toBe(true);
|
|
expect(fs.existsSync(path.join(testEnv.tempHome, ".claude", ".credentials.json"))).toBe(true);
|
|
expect(fs.existsSync(path.join(testEnv.tempHome, ".claude", "projects"))).toBe(false);
|
|
expect(fs.existsSync(path.join(testEnv.tempHome, ".claude", "settings.local.json"))).toBe(
|
|
false,
|
|
);
|
|
expect(fs.existsSync(path.join(testEnv.tempHome, ".codex", "auth.json"))).toBe(true);
|
|
expect(fs.existsSync(path.join(testEnv.tempHome, ".codex", "config.toml"))).toBe(true);
|
|
expect(fs.existsSync(path.join(testEnv.tempHome, ".codex", "sessions"))).toBe(false);
|
|
expect(fs.existsSync(path.join(testEnv.tempHome, ".gemini", "oauth_creds.json"))).toBe(true);
|
|
expect(fs.existsSync(path.join(testEnv.tempHome, ".gemini", "settings.json"))).toBe(true);
|
|
expect(
|
|
fs.existsSync(path.join(testEnv.tempHome, ".gemini", "commands", "Cache", "review.toml")),
|
|
).toBe(true);
|
|
expect(
|
|
fs.existsSync(path.join(testEnv.tempHome, ".minimax", "Cache", "credentials.json")),
|
|
).toBe(true);
|
|
expect(
|
|
fs.existsSync(path.join(testEnv.tempHome, ".gemini", "antigravity-browser-profile")),
|
|
).toBe(false);
|
|
expect(
|
|
fs.existsSync(path.join(testEnv.tempHome, ".gemini", "antigravity", "browser_recordings")),
|
|
).toBe(false);
|
|
expect(fs.existsSync(path.join(testEnv.tempHome, ".gemini", "cli-browser-profile"))).toBe(
|
|
false,
|
|
);
|
|
expect(fs.existsSync(path.join(testEnv.tempHome, ".gemini", "GPUCache"))).toBe(false);
|
|
expect(
|
|
fs.existsSync(path.join(testEnv.tempHome, ".gemini", "Service Worker", "CacheStorage")),
|
|
).toBe(false);
|
|
});
|
|
|
|
it("allows explicit live runs against the real HOME", () => {
|
|
const realHome = createTempHome();
|
|
writeFile(path.join(realHome, ".profile"), "export TEST_PROFILE_ONLY=from-profile\n");
|
|
|
|
setTestEnvValue("HOME", realHome);
|
|
setTestEnvValue("USERPROFILE", realHome);
|
|
setTestEnvValue("OPENCLAW_LIVE_TEST", "1");
|
|
setTestEnvValue("OPENCLAW_LIVE_USE_REAL_HOME", "1");
|
|
setTestEnvValue("OPENCLAW_LIVE_TEST_QUIET", "1");
|
|
|
|
const testEnv = installTestEnv();
|
|
|
|
expect(testEnv.tempHome).toBe(realHome);
|
|
expect(process.env.HOME).toBe(realHome);
|
|
expect(process.env.TEST_PROFILE_ONLY).toBe("from-profile");
|
|
});
|
|
|
|
it("keeps hermetic mode isolated when live flags request the real HOME", () => {
|
|
const realHome = createTempHome();
|
|
writeFile(path.join(realHome, ".profile"), "export TEST_PROFILE_ONLY=from-profile\n");
|
|
writeFile(path.join(realHome, ".openclaw", "openclaw.json"), '{"live":true}\n');
|
|
writeFile(path.join(realHome, ".openclaw", "credentials", "token.txt"), "secret\n");
|
|
|
|
setTestEnvValue("HOME", realHome);
|
|
setTestEnvValue("USERPROFILE", realHome);
|
|
setTestEnvValue("LIVE", "1");
|
|
setTestEnvValue("OPENCLAW_LIVE_TEST", "1");
|
|
setTestEnvValue("OPENCLAW_LIVE_GATEWAY", "1");
|
|
setTestEnvValue("OPENCLAW_LIVE_USE_REAL_HOME", "1");
|
|
const callerPluginDir = path.join(realHome, "caller-plugins");
|
|
setTestEnvValue("OPENCLAW_BUNDLED_PLUGINS_DIR", callerPluginDir);
|
|
setTestEnvValue("OPENCLAW_TEST_TRUST_BUNDLED_PLUGINS_DIR", "1");
|
|
setTestEnvValue("OPENCLAW_DISABLE_BUNDLED_PLUGINS", "1");
|
|
setTestEnvValue("OPENCLAW_HOME", realHome);
|
|
|
|
const testEnv = installTestEnv({ mode: "hermetic" });
|
|
cleanupFns.push(testEnv.cleanup);
|
|
|
|
expect(testEnv.tempHome).not.toBe(realHome);
|
|
expect(process.env.HOME).toBe(testEnv.tempHome);
|
|
expect(process.env.TEST_PROFILE_ONLY).toBeUndefined();
|
|
expect(process.env.LIVE).toBeUndefined();
|
|
expect(process.env.OPENCLAW_LIVE_TEST).toBeUndefined();
|
|
expect(process.env.OPENCLAW_LIVE_GATEWAY).toBeUndefined();
|
|
expect(process.env.OPENCLAW_LIVE_USE_REAL_HOME).toBeUndefined();
|
|
expect(process.env.OPENCLAW_BUNDLED_PLUGINS_DIR).not.toBe(callerPluginDir);
|
|
expect(path.basename(process.env.OPENCLAW_BUNDLED_PLUGINS_DIR ?? "")).toBe("extensions");
|
|
expect(process.env.OPENCLAW_TEST_TRUST_BUNDLED_PLUGINS_DIR).toBe("1");
|
|
expect(process.env.OPENCLAW_DISABLE_BUNDLED_PLUGINS).toBeUndefined();
|
|
expect(process.env.OPENCLAW_HOME).toBeUndefined();
|
|
expect(fs.existsSync(path.join(testEnv.tempHome, ".openclaw", "openclaw.json"))).toBe(false);
|
|
expect(
|
|
fs.existsSync(path.join(testEnv.tempHome, ".openclaw", "credentials", "token.txt")),
|
|
).toBe(false);
|
|
});
|
|
|
|
it("does not load ~/.profile for normal isolated test runs", () => {
|
|
const realHome = createTempHome();
|
|
writeFile(path.join(realHome, ".profile"), "export TEST_PROFILE_ONLY=from-profile\n");
|
|
|
|
setTestEnvValue("HOME", realHome);
|
|
setTestEnvValue("USERPROFILE", realHome);
|
|
deleteTestEnvValue("LIVE");
|
|
deleteTestEnvValue("OPENCLAW_LIVE_TEST");
|
|
deleteTestEnvValue("OPENCLAW_LIVE_GATEWAY");
|
|
deleteTestEnvValue("OPENCLAW_LIVE_USE_REAL_HOME");
|
|
deleteTestEnvValue("OPENCLAW_LIVE_TEST_QUIET");
|
|
|
|
const testEnv = installTestEnv();
|
|
cleanupFns.push(testEnv.cleanup);
|
|
|
|
expect(testEnv.tempHome).not.toBe(realHome);
|
|
expect(process.env.TEST_PROFILE_ONLY).toBeUndefined();
|
|
});
|
|
|
|
it("falls back to parsing ~/.profile when bash is unavailable", async () => {
|
|
const realHome = createTempHome();
|
|
writeFile(path.join(realHome, ".profile"), "export TEST_PROFILE_ONLY=from-profile\n");
|
|
|
|
setTestEnvValue("HOME", realHome);
|
|
setTestEnvValue("USERPROFILE", realHome);
|
|
setTestEnvValue("OPENCLAW_LIVE_TEST", "1");
|
|
setTestEnvValue("OPENCLAW_LIVE_USE_REAL_HOME", "1");
|
|
setTestEnvValue("OPENCLAW_LIVE_TEST_QUIET", "1");
|
|
|
|
vi.doMock("node:child_process", () => ({
|
|
execFileSync: () => {
|
|
throw Object.assign(new Error("bash missing"), { code: "ENOENT" });
|
|
},
|
|
}));
|
|
|
|
const { installTestEnv: installFreshTestEnv } = await importFreshModule<
|
|
typeof import("./test-env.js")
|
|
>(import.meta.url, "./test-env.js?scope=profile-fallback");
|
|
|
|
const testEnv = installFreshTestEnv();
|
|
|
|
expect(testEnv.tempHome).toBe(realHome);
|
|
expect(process.env.TEST_PROFILE_ONLY).toBe("from-profile");
|
|
});
|
|
});
|