* ACPX: keep plugin-local runtime installs out of dist * Gateway: harden ACP startup and service PATH * ACP: reinitialize error-state configured bindings * ACP: classify pre-turn runtime failures as session init failures * Plugins: move configured ACP routing behind channel seams * Telegram tests: align startup probe assertions after rebase * Discord: harden ACP configured binding recovery * ACP: recover Discord bindings after stale runtime exits * ACPX: replace dead sessions during ensure * Discord: harden ACP binding recovery * Discord: fix review follow-ups * ACP bindings: load channel snapshots across workspaces * ACP bindings: cache snapshot channel plugin resolution * Experiments: add ACP pluginification holy grail plan * Experiments: rename ACP pluginification plan doc * Experiments: drop old ACP pluginification doc path * ACP: move configured bindings behind plugin services * Experiments: update bindings capability architecture plan * Bindings: isolate configured binding routing and targets * Discord tests: fix runtime env helper path * Tests: fix channel binding CI regressions * Tests: normalize ACP workspace assertion on Windows * Bindings: isolate configured binding registry * Bindings: finish configured binding cleanup * Bindings: finish generic cleanup * Bindings: align runtime approval callbacks * ACP: delete residual bindings barrel * Bindings: restore legacy compatibility * Revert "Bindings: restore legacy compatibility" This reverts commit ac2ed68fa2426ecc874d68278c71c71ad363fcfe. * Tests: drop ACP route legacy helper names * Discord/ACP: fix binding regressions --------- Co-authored-by: Onur <2453968+osolmaz@users.noreply.github.com>
94 lines
2.7 KiB
TypeScript
94 lines
2.7 KiB
TypeScript
import { afterEach, describe, expect, it, vi } from "vitest";
|
|
|
|
const mocks = vi.hoisted(() => ({
|
|
resolvePreferredNodePath: vi.fn(),
|
|
resolveNodeProgramArguments: vi.fn(),
|
|
resolveSystemNodeInfo: vi.fn(),
|
|
renderSystemNodeWarning: vi.fn(),
|
|
buildNodeServiceEnvironment: vi.fn(),
|
|
}));
|
|
|
|
vi.mock("../daemon/runtime-paths.js", () => ({
|
|
resolvePreferredNodePath: mocks.resolvePreferredNodePath,
|
|
resolveSystemNodeInfo: mocks.resolveSystemNodeInfo,
|
|
renderSystemNodeWarning: mocks.renderSystemNodeWarning,
|
|
}));
|
|
|
|
vi.mock("../daemon/program-args.js", () => ({
|
|
resolveNodeProgramArguments: mocks.resolveNodeProgramArguments,
|
|
}));
|
|
|
|
vi.mock("../daemon/service-env.js", () => ({
|
|
buildNodeServiceEnvironment: mocks.buildNodeServiceEnvironment,
|
|
}));
|
|
|
|
import { buildNodeInstallPlan } from "./node-daemon-install-helpers.js";
|
|
|
|
afterEach(() => {
|
|
vi.resetAllMocks();
|
|
});
|
|
|
|
describe("buildNodeInstallPlan", () => {
|
|
it("passes the selected node bin directory into the node service environment", async () => {
|
|
mocks.resolveNodeProgramArguments.mockResolvedValue({
|
|
programArguments: ["node", "node-host"],
|
|
workingDirectory: "/Users/me",
|
|
});
|
|
mocks.resolveSystemNodeInfo.mockResolvedValue({
|
|
path: "/opt/node/bin/node",
|
|
version: "22.0.0",
|
|
supported: true,
|
|
});
|
|
mocks.renderSystemNodeWarning.mockReturnValue(undefined);
|
|
mocks.buildNodeServiceEnvironment.mockReturnValue({
|
|
OPENCLAW_SERVICE_VERSION: "2026.3.14",
|
|
});
|
|
|
|
const plan = await buildNodeInstallPlan({
|
|
env: {},
|
|
host: "127.0.0.1",
|
|
port: 18789,
|
|
runtime: "node",
|
|
nodePath: "/custom/node/bin/node",
|
|
});
|
|
|
|
expect(plan.environment).toEqual({
|
|
OPENCLAW_SERVICE_VERSION: "2026.3.14",
|
|
});
|
|
expect(mocks.resolvePreferredNodePath).not.toHaveBeenCalled();
|
|
expect(mocks.buildNodeServiceEnvironment).toHaveBeenCalledWith({
|
|
env: {},
|
|
extraPathDirs: ["/custom/node/bin"],
|
|
});
|
|
});
|
|
|
|
it("does not prepend '.' when nodePath is a bare executable name", async () => {
|
|
mocks.resolveNodeProgramArguments.mockResolvedValue({
|
|
programArguments: ["node", "node-host"],
|
|
workingDirectory: "/Users/me",
|
|
});
|
|
mocks.resolveSystemNodeInfo.mockResolvedValue({
|
|
path: "/usr/bin/node",
|
|
version: "22.0.0",
|
|
supported: true,
|
|
});
|
|
mocks.renderSystemNodeWarning.mockReturnValue(undefined);
|
|
mocks.buildNodeServiceEnvironment.mockReturnValue({
|
|
OPENCLAW_SERVICE_VERSION: "2026.3.14",
|
|
});
|
|
|
|
await buildNodeInstallPlan({
|
|
env: {},
|
|
host: "127.0.0.1",
|
|
port: 18789,
|
|
runtime: "node",
|
|
nodePath: "node",
|
|
});
|
|
|
|
expect(mocks.buildNodeServiceEnvironment).toHaveBeenCalledWith({
|
|
env: {},
|
|
extraPathDirs: undefined,
|
|
});
|
|
});
|
|
});
|