mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-15 05:36:10 +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.
198 lines
5.7 KiB
TypeScript
198 lines
5.7 KiB
TypeScript
// Check Dependency Pins tests cover check dependency pins script behavior.
|
|
import { execFileSync } from "node:child_process";
|
|
import { mkdirSync, rmSync, writeFileSync } from "node:fs";
|
|
import path from "node:path";
|
|
import { afterEach, describe, expect, it } from "vitest";
|
|
import { collectDependencyPinViolations } from "../../scripts/check-dependency-pins.mjs";
|
|
import { cleanupTempDirs, makeTempRepoRoot } from "../helpers/temp-repo.js";
|
|
|
|
const tempDirs: string[] = [];
|
|
|
|
const nestedGitEnvKeys = [
|
|
"GIT_ALTERNATE_OBJECT_DIRECTORIES",
|
|
"GIT_DIR",
|
|
"GIT_INDEX_FILE",
|
|
"GIT_OBJECT_DIRECTORY",
|
|
"GIT_QUARANTINE_PATH",
|
|
"GIT_WORK_TREE",
|
|
] as const;
|
|
|
|
function createNestedGitEnv(): NodeJS.ProcessEnv {
|
|
const env: NodeJS.ProcessEnv = {
|
|
...process.env,
|
|
GIT_CONFIG_NOSYSTEM: "1",
|
|
GIT_TERMINAL_PROMPT: "0",
|
|
};
|
|
for (const key of nestedGitEnvKeys) {
|
|
delete env[key];
|
|
}
|
|
return env;
|
|
}
|
|
|
|
function git(cwd: string, args: string[]) {
|
|
execFileSync("git", args, {
|
|
cwd,
|
|
encoding: "utf8",
|
|
env: createNestedGitEnv(),
|
|
});
|
|
}
|
|
|
|
function writeJson(filePath: string, value: unknown) {
|
|
writeFileSync(filePath, `${JSON.stringify(value, null, 2)}\n`, "utf8");
|
|
}
|
|
|
|
function makeRepo() {
|
|
const dir = makeTempRepoRoot(tempDirs, "openclaw-dependency-pins-");
|
|
git(dir, ["init", "-q", "--initial-branch=main"]);
|
|
return dir;
|
|
}
|
|
|
|
afterEach(() => {
|
|
cleanupTempDirs(tempDirs);
|
|
});
|
|
|
|
describe("check-dependency-pins", () => {
|
|
it("accepts exact dependency specs and intentionally ranged peer contracts", () => {
|
|
const dir = makeRepo();
|
|
writeJson(path.join(dir, "package.json"), {
|
|
dependencies: {
|
|
exact: "1.2.3",
|
|
prerelease: "1.2.3-beta.1",
|
|
alias: "npm:@scope/real-package@2.3.4",
|
|
workspace: "workspace:*",
|
|
linked: "link:../linked",
|
|
local: "file:../local",
|
|
gitPinned: "github:owner/repo#0123456789abcdef0123456789abcdef01234567",
|
|
tarballPinned:
|
|
"https://codeload.github.com/owner/repo/tar.gz/0123456789abcdef0123456789abcdef01234567",
|
|
},
|
|
devDependencies: {
|
|
devExact: "4.5.6",
|
|
},
|
|
optionalDependencies: {
|
|
optionalExact: "7.8.9",
|
|
},
|
|
peerDependencies: {
|
|
peerCanRange: "^1.0.0",
|
|
},
|
|
});
|
|
writeFileSync(
|
|
path.join(dir, "pnpm-workspace.yaml"),
|
|
`overrides:
|
|
exact: 1.2.3
|
|
alias: "npm:@scope/real-package@2.3.4"
|
|
packageExtensions:
|
|
parent@1.0.0:
|
|
dependencies:
|
|
child: 3.2.1
|
|
`,
|
|
"utf8",
|
|
);
|
|
git(dir, ["add", "package.json", "pnpm-workspace.yaml"]);
|
|
|
|
expect(collectDependencyPinViolations(dir)).toEqual([]);
|
|
});
|
|
|
|
it("rejects floating dependency specs in tracked package manifests", () => {
|
|
const dir = makeRepo();
|
|
mkdirSync(path.join(dir, "extensions", "demo"), { recursive: true });
|
|
writeJson(path.join(dir, "package.json"), {
|
|
dependencies: {
|
|
caret: "^1.2.3",
|
|
tilde: "~1.2.3",
|
|
wildcard: "*",
|
|
tag: "latest",
|
|
broad: ">=1 <2",
|
|
gitFloating: "github:owner/repo#main",
|
|
},
|
|
});
|
|
writeJson(path.join(dir, "extensions", "demo", "package.json"), {
|
|
devDependencies: {
|
|
devCaret: "^4.5.6",
|
|
},
|
|
optionalDependencies: {
|
|
optionalTilde: "~7.8.9",
|
|
},
|
|
peerDependencies: {
|
|
peerCanRange: "^10.0.0",
|
|
},
|
|
});
|
|
git(dir, ["add", "package.json", "extensions/demo/package.json"]);
|
|
|
|
expect(collectDependencyPinViolations(dir)).toEqual([
|
|
{
|
|
file: "extensions/demo/package.json",
|
|
section: "devDependencies",
|
|
name: "devCaret",
|
|
spec: "^4.5.6",
|
|
},
|
|
{
|
|
file: "extensions/demo/package.json",
|
|
section: "optionalDependencies",
|
|
name: "optionalTilde",
|
|
spec: "~7.8.9",
|
|
},
|
|
{ file: "package.json", section: "dependencies", name: "caret", spec: "^1.2.3" },
|
|
{ file: "package.json", section: "dependencies", name: "tilde", spec: "~1.2.3" },
|
|
{ file: "package.json", section: "dependencies", name: "wildcard", spec: "*" },
|
|
{ file: "package.json", section: "dependencies", name: "tag", spec: "latest" },
|
|
{ file: "package.json", section: "dependencies", name: "broad", spec: ">=1 <2" },
|
|
{
|
|
file: "package.json",
|
|
section: "dependencies",
|
|
name: "gitFloating",
|
|
spec: "github:owner/repo#main",
|
|
},
|
|
]);
|
|
});
|
|
|
|
it("reads tracked package manifests from the index when sparse checkout omits them", () => {
|
|
const dir = makeRepo();
|
|
mkdirSync(path.join(dir, "qa", "convex-credential-broker"), { recursive: true });
|
|
writeJson(path.join(dir, "package.json"), {});
|
|
writeJson(path.join(dir, "qa", "convex-credential-broker", "package.json"), {
|
|
dependencies: {
|
|
exact: "1.2.3",
|
|
},
|
|
});
|
|
git(dir, ["add", "package.json", "qa/convex-credential-broker/package.json"]);
|
|
rmSync(path.join(dir, "qa"), { recursive: true, force: true });
|
|
|
|
expect(collectDependencyPinViolations(dir)).toEqual([]);
|
|
});
|
|
|
|
it("rejects floating workspace overrides and package extension dependencies", () => {
|
|
const dir = makeRepo();
|
|
writeJson(path.join(dir, "package.json"), {});
|
|
writeFileSync(
|
|
path.join(dir, "pnpm-workspace.yaml"),
|
|
`overrides:
|
|
exact: 1.2.3
|
|
floating: ^2.0.0
|
|
packageExtensions:
|
|
parent@1.0.0:
|
|
dependencies:
|
|
exact-child: 3.2.1
|
|
floating-child: ~4.0.0
|
|
`,
|
|
"utf8",
|
|
);
|
|
git(dir, ["add", "package.json", "pnpm-workspace.yaml"]);
|
|
|
|
expect(collectDependencyPinViolations(dir)).toEqual([
|
|
{
|
|
file: "pnpm-workspace.yaml",
|
|
section: "overrides",
|
|
name: "floating",
|
|
spec: "^2.0.0",
|
|
},
|
|
{
|
|
file: "pnpm-workspace.yaml",
|
|
section: "packageExtensions.parent@1.0.0.dependencies",
|
|
name: "floating-child",
|
|
spec: "~4.0.0",
|
|
},
|
|
]);
|
|
});
|
|
});
|