mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-14 10:56:03 +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.
192 lines
5.9 KiB
TypeScript
192 lines
5.9 KiB
TypeScript
// Vitest Process Group tests cover vitest process group script behavior.
|
|
import { describe, expect, it, vi } from "vitest";
|
|
import {
|
|
forwardSignalToVitestProcessGroup,
|
|
installVitestProcessGroupCleanup,
|
|
resolveVitestProcessGroupSignalTarget,
|
|
shouldUseDetachedVitestProcessGroup,
|
|
} from "../../scripts/vitest-process-group.mjs";
|
|
|
|
describe("vitest process group helpers", () => {
|
|
function getListenerSet(listeners: Map<string, Set<() => void>>, event: string) {
|
|
const set = listeners.get(event);
|
|
if (!set) {
|
|
throw new Error(`expected ${event} listener set`);
|
|
}
|
|
return set;
|
|
}
|
|
|
|
function expectListenerCount(
|
|
listeners: Map<string, Set<() => void>>,
|
|
event: string,
|
|
count: number,
|
|
) {
|
|
expect(getListenerSet(listeners, event).size).toBe(count);
|
|
}
|
|
|
|
it("uses detached process groups on non-Windows hosts", () => {
|
|
expect(shouldUseDetachedVitestProcessGroup("darwin")).toBe(true);
|
|
expect(shouldUseDetachedVitestProcessGroup("linux")).toBe(true);
|
|
expect(shouldUseDetachedVitestProcessGroup("win32")).toBe(false);
|
|
});
|
|
|
|
it("targets the process group on Unix and the direct pid on Windows", () => {
|
|
expect(resolveVitestProcessGroupSignalTarget({ childPid: 4200, platform: "darwin" })).toBe(
|
|
-4200,
|
|
);
|
|
expect(resolveVitestProcessGroupSignalTarget({ childPid: 4200, platform: "win32" })).toBe(4200);
|
|
expect(resolveVitestProcessGroupSignalTarget({ childPid: undefined, platform: "darwin" })).toBe(
|
|
null,
|
|
);
|
|
});
|
|
|
|
it("forwards signals to the computed target and ignores cleanup races", () => {
|
|
const kill = vi.fn();
|
|
expect(
|
|
forwardSignalToVitestProcessGroup({
|
|
child: { pid: 4200 },
|
|
signal: "SIGTERM",
|
|
platform: "darwin",
|
|
kill,
|
|
}),
|
|
).toBe(true);
|
|
expect(kill).toHaveBeenCalledWith(-4200, "SIGTERM");
|
|
|
|
kill.mockImplementationOnce(() => {
|
|
const error = new Error("gone") as NodeJS.ErrnoException;
|
|
error.code = "ESRCH";
|
|
throw error;
|
|
});
|
|
expect(
|
|
forwardSignalToVitestProcessGroup({
|
|
child: { pid: 4200 },
|
|
signal: "SIGTERM",
|
|
platform: "darwin",
|
|
kill,
|
|
}),
|
|
).toBe(false);
|
|
|
|
kill.mockImplementationOnce(() => {
|
|
const error = new Error("permission race") as NodeJS.ErrnoException;
|
|
error.code = "EPERM";
|
|
throw error;
|
|
});
|
|
expect(
|
|
forwardSignalToVitestProcessGroup({
|
|
child: { pid: 4200 },
|
|
signal: "SIGTERM",
|
|
platform: "darwin",
|
|
kill,
|
|
}),
|
|
).toBe(false);
|
|
});
|
|
|
|
it("installs and removes process cleanup listeners", () => {
|
|
const listeners = new Map<string, Set<() => void>>();
|
|
const fakeProcess = {
|
|
on(event: string, handler: () => void) {
|
|
const set = listeners.get(event) ?? new Set();
|
|
set.add(handler);
|
|
listeners.set(event, set);
|
|
},
|
|
off(event: string, handler: () => void) {
|
|
listeners.get(event)?.delete(handler);
|
|
},
|
|
};
|
|
const kill = vi.fn();
|
|
const onSignal = vi.fn();
|
|
const teardown = installVitestProcessGroupCleanup({
|
|
child: { pid: 4200 },
|
|
processObject: fakeProcess as unknown as NodeJS.Process,
|
|
platform: "darwin",
|
|
kill,
|
|
onSignal,
|
|
});
|
|
|
|
expectListenerCount(listeners, "SIGINT", 1);
|
|
expectListenerCount(listeners, "SIGTERM", 1);
|
|
expectListenerCount(listeners, "exit", 1);
|
|
|
|
getListenerSet(listeners, "SIGTERM").values().next().value!();
|
|
expect(onSignal).toHaveBeenCalledWith("SIGTERM");
|
|
expect(kill).toHaveBeenCalledWith(-4200, "SIGTERM");
|
|
|
|
teardown();
|
|
expectListenerCount(listeners, "SIGINT", 0);
|
|
expectListenerCount(listeners, "SIGTERM", 0);
|
|
expectListenerCount(listeners, "exit", 0);
|
|
});
|
|
|
|
it("can force-kill process groups after forwarded parent signals", async () => {
|
|
const listeners = new Map<string, Set<() => void>>();
|
|
const fakeProcess = {
|
|
on(event: string, handler: () => void) {
|
|
const set = listeners.get(event) ?? new Set();
|
|
set.add(handler);
|
|
listeners.set(event, set);
|
|
},
|
|
off(event: string, handler: () => void) {
|
|
listeners.get(event)?.delete(handler);
|
|
},
|
|
};
|
|
const kill = vi.fn();
|
|
const teardown = installVitestProcessGroupCleanup({
|
|
child: { pid: 4200 },
|
|
forceSignal: "SIGKILL",
|
|
processObject: fakeProcess as unknown as NodeJS.Process,
|
|
platform: "darwin",
|
|
kill,
|
|
});
|
|
|
|
getListenerSet(listeners, "SIGTERM").values().next().value!();
|
|
await Promise.resolve();
|
|
|
|
expect(kill).toHaveBeenNthCalledWith(1, -4200, "SIGTERM");
|
|
expect(kill).toHaveBeenNthCalledWith(2, -4200, "SIGKILL");
|
|
|
|
teardown();
|
|
});
|
|
|
|
it("raises process listener limits for highly parallel cleanup handlers", () => {
|
|
const listeners = new Map<string, Set<() => void>>();
|
|
let maxListeners = 10;
|
|
const fakeProcess = {
|
|
getMaxListeners: () => maxListeners,
|
|
setMaxListeners: vi.fn((value: number) => {
|
|
maxListeners = value;
|
|
return fakeProcess;
|
|
}),
|
|
listenerCount(event: string) {
|
|
return listeners.get(event)?.size ?? 0;
|
|
},
|
|
on(event: string, handler: () => void) {
|
|
const set = listeners.get(event) ?? new Set();
|
|
set.add(handler);
|
|
listeners.set(event, set);
|
|
},
|
|
off(event: string, handler: () => void) {
|
|
listeners.get(event)?.delete(handler);
|
|
},
|
|
};
|
|
|
|
const teardowns = Array.from({ length: 12 }, (_, index) =>
|
|
installVitestProcessGroupCleanup({
|
|
child: { pid: 4200 + index },
|
|
processObject: fakeProcess as unknown as NodeJS.Process,
|
|
platform: "darwin",
|
|
kill: vi.fn(),
|
|
}),
|
|
);
|
|
|
|
expect(maxListeners).toBeGreaterThan(10);
|
|
expect(fakeProcess.setMaxListeners).toHaveBeenCalled();
|
|
|
|
for (const teardown of teardowns) {
|
|
teardown();
|
|
}
|
|
expectListenerCount(listeners, "SIGINT", 0);
|
|
expectListenerCount(listeners, "SIGTERM", 0);
|
|
expectListenerCount(listeners, "exit", 0);
|
|
});
|
|
});
|