mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-18 16:41:45 -06:00
3cdf888b76
* fix(tooling): bound tsgo core test memory * perf(tooling): reuse bounded tsgo test state * fix(tooling): preserve bounded tsgo aggregate coverage * fix(tooling): satisfy rebased lint checks * test(sqlite): stabilize publication replacement fault * fix(tooling): guard targeted tsgo declarations * fix(tooling): guard inherited package test roots * fix(tooling): guard shared test declaration roots * test(gateway): synchronize staged recovery proof --------- Co-authored-by: Jesse Merhi <jesse-merhi@users.noreply.github.com>
279 lines
8.5 KiB
TypeScript
279 lines
8.5 KiB
TypeScript
// Detects sparse-checkout gaps before tsgo runs core TypeScript projects.
|
|
import { spawnSync } from "node:child_process";
|
|
import fs from "node:fs";
|
|
import path from "node:path";
|
|
import { readFlagValue } from "./arg-utils.mts";
|
|
import { createManagedCommandInvocation } from "./managed-child-process.mts";
|
|
import {
|
|
TSGO_CORE_TEST_SHARDS,
|
|
TSGO_TARGETED_TEST_SHARED_SHARDS,
|
|
} from "./tsgo-core-test-shards.mts";
|
|
|
|
const MANIFEST_TEST_SPARSE_ROOTS = new Map(
|
|
[...TSGO_CORE_TEST_SHARDS, ...TSGO_TARGETED_TEST_SHARED_SHARDS].flatMap((shard) =>
|
|
"sparseRoots" in shard ? ([[path.basename(shard.config), shard.sparseRoots]] as const) : [],
|
|
),
|
|
);
|
|
const CORE_TEST_CONFIGS = new Set([
|
|
"tsconfig.core.test.json",
|
|
...TSGO_CORE_TEST_SHARDS.map((shard) => path.basename(shard.config)).filter(
|
|
(config) => !MANIFEST_TEST_SPARSE_ROOTS.has(config),
|
|
),
|
|
]);
|
|
|
|
const CORE_PROD_CONFIGS = new Set(["tsconfig.core.json"]);
|
|
const UI_PROD_CONFIGS = new Set(["tsconfig.ui.json"]);
|
|
const GUARDED_CONFIGS = new Set([
|
|
...CORE_PROD_CONFIGS,
|
|
...UI_PROD_CONFIGS,
|
|
...CORE_TEST_CONFIGS,
|
|
...MANIFEST_TEST_SPARSE_ROOTS.keys(),
|
|
]);
|
|
const TSGO_SPARSE_SKIP_ENV_KEY = "OPENCLAW_TSGO_SPARSE_SKIP";
|
|
const CORE_PROD_SPARSE_ROOTS = ["packages"];
|
|
const UI_PROD_SPARSE_ROOTS = ["packages", "src", "ui/config", "ui/src"];
|
|
const CORE_TEST_SPARSE_ROOTS = ["packages", "ui/config", "ui/src"];
|
|
|
|
const CORE_PROD_REQUIRED_PATHS = [
|
|
{
|
|
path: "scripts/lib/bundled-runtime-sidecar-paths.json",
|
|
whenPresent: "src/plugins/runtime-sidecar-paths.ts",
|
|
},
|
|
{
|
|
path: "scripts/lib/official-external-channel-catalog.json",
|
|
whenPresent: "src/channels/plugins/catalog.ts",
|
|
},
|
|
{
|
|
path: "scripts/lib/official-external-plugin-catalog.json",
|
|
whenPresent: "src/plugins/official-external-plugin-catalog.ts",
|
|
},
|
|
{
|
|
path: "scripts/lib/official-external-provider-catalog.json",
|
|
whenPresent: "src/plugins/official-external-plugin-catalog.ts",
|
|
},
|
|
{
|
|
path: "scripts/lib/recommended-tool-installs.json",
|
|
whenPresent: "src/plugins/recommended-tool-installs.ts",
|
|
},
|
|
{
|
|
path: "scripts/lib/plugin-sdk-entrypoints.json",
|
|
whenPresent: "scripts/lib/plugin-sdk-entries.mts",
|
|
},
|
|
];
|
|
|
|
const UI_PROD_REQUIRED_PATHS = [
|
|
{
|
|
path: "apps/shared/OpenClawKit/Sources/OpenClawKit/Resources/tool-display.json",
|
|
whenPresent: "ui/src/lib/chat/tool-display.ts",
|
|
},
|
|
];
|
|
|
|
const CORE_TEST_REQUIRED_PATHS = [
|
|
"packages/plugin-package-contract/src/index.ts",
|
|
"ui/config/control-ui-chunking.ts",
|
|
"ui/src/i18n/lib/registry.ts",
|
|
"ui/src/i18n/lib/types.ts",
|
|
"ui/src/app/settings.ts",
|
|
"ui/src/api/gateway.ts",
|
|
];
|
|
|
|
type FileExists = typeof fs.existsSync;
|
|
type RequiredPath = (typeof CORE_PROD_REQUIRED_PATHS)[number];
|
|
type SparseGuardOptions = {
|
|
cwd?: string;
|
|
fileExists?: FileExists;
|
|
isSparseCheckoutEnabled?: (options: { cwd: string }) => boolean;
|
|
sparseCheckoutPatterns?: string[];
|
|
};
|
|
|
|
/**
|
|
* Reports whether the caller explicitly opted out of sparse tsgo guard errors.
|
|
*/
|
|
export function shouldSkipSparseTsgoGuardError(env: NodeJS.ProcessEnv = process.env) {
|
|
const value = env[TSGO_SPARSE_SKIP_ENV_KEY]?.trim().toLowerCase();
|
|
return value === "1" || value === "true";
|
|
}
|
|
|
|
/**
|
|
* Creates an environment that suppresses recursive sparse tsgo guard checks.
|
|
*/
|
|
export function createSparseTsgoSkipEnv(baseEnv: NodeJS.ProcessEnv = process.env) {
|
|
return {
|
|
...baseEnv,
|
|
[TSGO_SPARSE_SKIP_ENV_KEY]: baseEnv[TSGO_SPARSE_SKIP_ENV_KEY]?.trim() || "1",
|
|
};
|
|
}
|
|
|
|
/**
|
|
* Builds the sparse-checkout diagnostic for core tsgo projects, when needed.
|
|
*/
|
|
export function getSparseTsgoGuardError(
|
|
args: readonly string[],
|
|
{
|
|
cwd = process.cwd(),
|
|
fileExists = fs.existsSync,
|
|
isSparseCheckoutEnabled,
|
|
sparseCheckoutPatterns,
|
|
}: SparseGuardOptions = {},
|
|
) {
|
|
const projectNames = readProjectNames(args);
|
|
if (projectNames.length === 0 || isMetadataOnlyCommand(args)) {
|
|
return null;
|
|
}
|
|
|
|
const sparseEnabled =
|
|
isSparseCheckoutEnabled?.({ cwd }) ?? getGitBooleanConfig("core.sparseCheckout", { cwd });
|
|
if (!sparseEnabled) {
|
|
return null;
|
|
}
|
|
|
|
const sparsePatterns = sparseCheckoutPatterns ?? getSparseCheckoutPatterns({ cwd });
|
|
const missingPaths = [
|
|
...new Set(
|
|
projectNames
|
|
.flatMap(getRequiredSparseRootsForProject)
|
|
.filter((relativePath) =>
|
|
sparsePatterns ? !isSparseRootCovered(relativePath, sparsePatterns) : false,
|
|
),
|
|
),
|
|
...new Set(
|
|
projectNames
|
|
.flatMap((projectName) => getRequiredPathsForProject(projectName, cwd, fileExists))
|
|
.filter((relativePath) => !fileExists(path.join(cwd, relativePath))),
|
|
),
|
|
];
|
|
if (missingPaths.length === 0) {
|
|
return null;
|
|
}
|
|
|
|
return [
|
|
`${projectNames.join(", ")} cannot be typechecked from this sparse checkout because tracked project inputs are missing or only partially included:`,
|
|
...missingPaths.map((relativePath) => `- ${relativePath}`),
|
|
"Expand this worktree's sparse checkout to include those paths, or rerun in a full worktree.",
|
|
].join("\n");
|
|
}
|
|
|
|
function getRequiredSparseRootsForProject(projectName: string) {
|
|
const manifestTestRoots = MANIFEST_TEST_SPARSE_ROOTS.get(projectName);
|
|
if (manifestTestRoots) {
|
|
return manifestTestRoots;
|
|
}
|
|
if (CORE_PROD_CONFIGS.has(projectName)) {
|
|
return CORE_PROD_SPARSE_ROOTS;
|
|
}
|
|
if (UI_PROD_CONFIGS.has(projectName)) {
|
|
return UI_PROD_SPARSE_ROOTS;
|
|
}
|
|
if (CORE_TEST_CONFIGS.has(projectName)) {
|
|
return CORE_TEST_SPARSE_ROOTS;
|
|
}
|
|
return [];
|
|
}
|
|
|
|
function getRequiredPathsForProject(projectName: string, cwd: string, fileExists: FileExists) {
|
|
const requiredPaths: string[] = [];
|
|
if (CORE_PROD_CONFIGS.has(projectName)) {
|
|
requiredPaths.push(...conditionalRequiredPaths(CORE_PROD_REQUIRED_PATHS, cwd, fileExists));
|
|
}
|
|
if (UI_PROD_CONFIGS.has(projectName)) {
|
|
requiredPaths.push(...conditionalRequiredPaths(UI_PROD_REQUIRED_PATHS, cwd, fileExists));
|
|
}
|
|
if (CORE_TEST_CONFIGS.has(projectName)) {
|
|
requiredPaths.push(...CORE_TEST_REQUIRED_PATHS);
|
|
}
|
|
return [...new Set(requiredPaths)].toSorted((left, right) => left.localeCompare(right));
|
|
}
|
|
|
|
function conditionalRequiredPaths(entries: RequiredPath[], cwd: string, fileExists: FileExists) {
|
|
return entries
|
|
.filter((entry) => fileExists(path.join(cwd, entry.whenPresent)))
|
|
.map((entry) => entry.path);
|
|
}
|
|
|
|
function getGitBooleanConfig(name: string, { cwd }: { cwd: string }) {
|
|
const git = createManagedCommandInvocation({
|
|
args: ["config", "--get", "--bool", name],
|
|
bin: "git",
|
|
});
|
|
const result = spawnSync(git.command, git.args, {
|
|
cwd,
|
|
encoding: "utf8",
|
|
stdio: ["ignore", "pipe", "pipe"],
|
|
shell: git.shell,
|
|
windowsVerbatimArguments: git.windowsVerbatimArguments,
|
|
});
|
|
|
|
if (result.error || (result.status ?? 1) !== 0) {
|
|
return false;
|
|
}
|
|
|
|
return (result.stdout ?? "").trim() === "true";
|
|
}
|
|
|
|
function getSparseCheckoutPatterns({ cwd }: { cwd: string }) {
|
|
const git = createManagedCommandInvocation({
|
|
args: ["sparse-checkout", "list"],
|
|
bin: "git",
|
|
});
|
|
const result = spawnSync(git.command, git.args, {
|
|
cwd,
|
|
encoding: "utf8",
|
|
stdio: ["ignore", "pipe", "pipe"],
|
|
shell: git.shell,
|
|
windowsVerbatimArguments: git.windowsVerbatimArguments,
|
|
});
|
|
|
|
if (result.error || (result.status ?? 1) !== 0) {
|
|
return null;
|
|
}
|
|
|
|
return (result.stdout ?? "")
|
|
.split(/\r?\n/)
|
|
.map((line) => line.trim())
|
|
.filter(Boolean);
|
|
}
|
|
|
|
function isSparseRootCovered(relativeRoot: string, patterns: string[]) {
|
|
const root = normalizeSparsePattern(relativeRoot);
|
|
return patterns.some((pattern) => {
|
|
if (pattern.startsWith("!")) {
|
|
return false;
|
|
}
|
|
|
|
const normalized = normalizeSparsePattern(pattern);
|
|
return normalized === root || (normalized.length > 0 && root.startsWith(`${normalized}/`));
|
|
});
|
|
}
|
|
|
|
function normalizeSparsePattern(pattern: string) {
|
|
return pattern
|
|
.trim()
|
|
.replaceAll("\\", "/")
|
|
.replace(/^!/, "")
|
|
.replace(/^\/+/, "")
|
|
.replace(/\/\*\*$/, "")
|
|
.replace(/\/+$/, "");
|
|
}
|
|
|
|
function readProjectNames(args: readonly string[]) {
|
|
const projectPath = readFlagValue(args, "-p") ?? readFlagValue(args, "--project");
|
|
const candidates = projectPath
|
|
? [projectPath]
|
|
: args.some((arg) => arg === "-b" || arg === "--build")
|
|
? args.filter((arg) => !arg.startsWith("-"))
|
|
: [];
|
|
return [
|
|
...new Set(candidates.map((candidate) => path.basename(candidate)).filter(isGuardedConfig)),
|
|
];
|
|
}
|
|
|
|
function isGuardedConfig(config: string) {
|
|
return GUARDED_CONFIGS.has(config);
|
|
}
|
|
|
|
function isMetadataOnlyCommand(args: readonly string[]) {
|
|
return args.some((arg) =>
|
|
["--help", "-h", "--version", "-v", "--init", "--showConfig"].includes(arg),
|
|
);
|
|
}
|