Spracherkennung für: .ts vermutete Sprache: Unknown {[0] [0] [0]} [Methode: Schwerpunktbildung, einfache Gewichte, sechs Dimensionen]
import { beforeEach, describe, expect, it, vi } from "vitest";
import type {
PluginHookGatewayContext,
PluginHookGatewayStartEvent,
} from "../plugins/hook-types.js";
const hoisted = vi.hoisted(() => {
const startPluginServices = vi.fn(async () => null);
const startGmailWatcherWithLogs = vi.fn(async () => undefined);
const loadInternalHooks = vi.fn(async () => 0);
const setInternalHooksEnabled = vi.fn();
const hasInternalHookListeners = vi.fn(() => false);
const startupHookEvent = { type: "gateway", action: "startup", sessionKey: "gateway:startup" };
const createInternalHookEvent = vi.fn(() => startupHookEvent);
const triggerInternalHook = vi.fn(async () => undefined);
const startGatewayMemoryBackend = vi.fn(async () => undefined);
const scheduleGatewayUpdateCheck = vi.fn(() => () => {});
const startGatewayTailscaleExposure = vi.fn(async () => null);
const logGatewayStartup = vi.fn();
const scheduleSubagentOrphanRecovery = vi.fn();
const shouldWakeFromRestartSentinel = vi.fn(() => false);
const scheduleRestartSentinelWake = vi.fn();
const reconcilePendingSessionIdentities = vi.fn(async () => ({
checked: 0,
resolved: 0,
failed: 0,
}));
return {
startPluginServices,
startGmailWatcherWithLogs,
loadInternalHooks,
setInternalHooksEnabled,
hasInternalHookListeners,
startupHookEvent,
createInternalHookEvent,
triggerInternalHook,
startGatewayMemoryBackend,
scheduleGatewayUpdateCheck,
startGatewayTailscaleExposure,
logGatewayStartup,
scheduleSubagentOrphanRecovery,
shouldWakeFromRestartSentinel,
scheduleRestartSentinelWake,
reconcilePendingSessionIdentities,
};
});
vi.mock("../agents/session-dirs.js", () => ({
resolveAgentSessionDirs: vi.fn(async () => []),
}));
vi.mock("../agents/session-write-lock.js", () => ({
cleanStaleLockFiles: vi.fn(async () => undefined),
}));
vi.mock("../agents/subagent-registry.js", () => ({
scheduleSubagentOrphanRecovery: hoisted.scheduleSubagentOrphanRecovery,
}));
vi.mock("../config/paths.js", async () => {
const actual = await vi.importActual<typeof import("../config/paths.js")>("../config/paths.js");
return {
...actual,
STATE_DIR: "/tmp/openclaw-state",
resolveConfigPath: vi.fn(() => "/tmp/openclaw-state/openclaw.json"),
resolveGatewayPort: vi.fn(() => 18789),
resolveStateDir: vi.fn(() => "/tmp/openclaw-state"),
};
});
vi.mock("../hooks/gmail-watcher-lifecycle.js", () => ({
startGmailWatcherWithLogs: hoisted.startGmailWatcherWithLogs,
}));
vi.mock("../hooks/internal-hooks.js", () => ({
createInternalHookEvent: hoisted.createInternalHookEvent,
hasInternalHookListeners: hoisted.hasInternalHookListeners,
setInternalHooksEnabled: hoisted.setInternalHooksEnabled,
triggerInternalHook: hoisted.triggerInternalHook,
}));
vi.mock("../hooks/loader.js", () => ({
loadInternalHooks: hoisted.loadInternalHooks,
}));
vi.mock("../plugins/hook-runner-global.js", () => ({
getGlobalHookRunner: vi.fn(() => null),
}));
vi.mock("../plugins/services.js", () => ({
startPluginServices: hoisted.startPluginServices,
}));
vi.mock("../acp/control-plane/manager.js", () => ({
getAcpSessionManager: vi.fn(() => ({
reconcilePendingSessionIdentities: hoisted.reconcilePendingSessionIdentities,
})),
}));
vi.mock("./server-restart-sentinel.js", () => ({
scheduleRestartSentinelWake: hoisted.scheduleRestartSentinelWake,
shouldWakeFromRestartSentinel: hoisted.shouldWakeFromRestartSentinel,
}));
vi.mock("./server-startup-memory.js", () => ({
startGatewayMemoryBackend: hoisted.startGatewayMemoryBackend,
}));
vi.mock("./server-startup-log.js", () => ({
logGatewayStartup: hoisted.logGatewayStartup,
}));
vi.mock("../infra/update-startup.js", () => ({
scheduleGatewayUpdateCheck: hoisted.scheduleGatewayUpdateCheck,
}));
vi.mock("./server-tailscale.js", () => ({
startGatewayTailscaleExposure: hoisted.startGatewayTailscaleExposure,
}));
const { startGatewayPostAttachRuntime, startGatewaySidecars } =
await import("./server-startup-post-attach.js");
const { STARTUP_UNAVAILABLE_GATEWAY_METHODS } =
await import("./server-startup-unavailable-methods.js");
type PostAttachParams = Parameters<typeof startGatewayPostAttachRuntime>[0];
type PostAttachRuntimeDeps = NonNullable<Parameters<typeof startGatewayPostAttachRuntime>[1]>;
describe("startGatewayPostAttachRuntime", () => {
beforeEach(() => {
hoisted.startPluginServices.mockClear();
hoisted.startGmailWatcherWithLogs.mockClear();
hoisted.loadInternalHooks.mockClear();
hoisted.setInternalHooksEnabled.mockClear();
hoisted.hasInternalHookListeners.mockReset();
hoisted.hasInternalHookListeners.mockReturnValue(false);
hoisted.createInternalHookEvent.mockClear();
hoisted.triggerInternalHook.mockClear();
hoisted.startGatewayMemoryBackend.mockClear();
hoisted.scheduleGatewayUpdateCheck.mockClear();
hoisted.startGatewayTailscaleExposure.mockClear();
hoisted.logGatewayStartup.mockClear();
hoisted.scheduleSubagentOrphanRecovery.mockClear();
hoisted.shouldWakeFromRestartSentinel.mockReturnValue(false);
hoisted.scheduleRestartSentinelWake.mockClear();
hoisted.reconcilePendingSessionIdentities.mockClear();
});
it("re-enables startup-gated methods after post-attach sidecars start", async () => {
const unavailableGatewayMethods = new Set<string>(["chat.history", "models.list"]);
const onSidecarsReady = vi.fn();
await startGatewayPostAttachRuntime({
...createPostAttachParams(),
unavailableGatewayMethods,
onSidecarsReady,
});
await vi.waitFor(() => {
expect(onSidecarsReady).toHaveBeenCalledTimes(1);
});
expect([...unavailableGatewayMethods]).toEqual([]);
expect(hoisted.startPluginServices).toHaveBeenCalledTimes(1);
expect(hoisted.loadInternalHooks).not.toHaveBeenCalled();
expect(hoisted.setInternalHooksEnabled).not.toHaveBeenCalled();
expect(hoisted.logGatewayStartup).toHaveBeenCalledWith(
expect.objectContaining({ loadedPluginIds: ["beta", "alpha"] }),
);
expect(hoisted.startGatewayMemoryBackend).not.toHaveBeenCalled();
});
it("starts the qmd memory backend only when configured", async () => {
await startGatewayPostAttachRuntime({
...createPostAttachParams(),
gatewayPluginConfigAtStart: {
hooks: { internal: { enabled: false } },
memory: { backend: "qmd" },
} as never,
});
await vi.waitFor(() => {
expect(hoisted.startGatewayMemoryBackend).toHaveBeenCalledTimes(1);
});
});
it("waits for sidecars by default before returning", async () => {
let resumeSidecars!: () => void;
const sidecarsReady = new Promise<{ pluginServices: null }>((resolve) => {
resumeSidecars = () => resolve({ pluginServices: null });
});
const startGatewaySidecars = vi.fn(async () => {
return await sidecarsReady;
});
let returned = false;
const runtimePromise = startGatewayPostAttachRuntime(
createPostAttachParams(),
createPostAttachRuntimeDeps({ startGatewaySidecars }),
).then(() => {
returned = true;
});
await vi.waitFor(() => {
expect(startGatewaySidecars).toHaveBeenCalledTimes(1);
});
await Promise.resolve();
expect(returned).toBe(false);
resumeSidecars();
await runtimePromise;
expect(returned).toBe(true);
});
it("keeps startup-gated methods unavailable while sidecars are still resuming", async () => {
let resumeSidecars!: () => void;
const sidecarsReady = new Promise<{ pluginServices: null }>((resolve) => {
resumeSidecars = () => resolve({ pluginServices: null });
});
const startGatewaySidecars = vi.fn(async () => {
return await sidecarsReady;
});
const unavailableGatewayMethods = new Set<string>(STARTUP_UNAVAILABLE_GATEWAY_METHODS);
await startGatewayPostAttachRuntime(
{
...createPostAttachParams(),
unavailableGatewayMethods,
deferSidecars: true,
},
createPostAttachRuntimeDeps({ startGatewaySidecars }),
);
await vi.waitFor(
() => {
expect(startGatewaySidecars).toHaveBeenCalledTimes(1);
},
{ timeout: 10_000 },
);
expect([...unavailableGatewayMethods]).toEqual([...STARTUP_UNAVAILABLE_GATEWAY_METHODS]);
expect(hoisted.startPluginServices).not.toHaveBeenCalled();
resumeSidecars();
await vi.waitFor(() => {
expect([...unavailableGatewayMethods]).toEqual([]);
});
expect([...unavailableGatewayMethods]).toEqual([]);
expect(startGatewaySidecars).toHaveBeenCalledTimes(1);
});
it("dispatches registered gateway startup internal hooks without configured hook packs", async () => {
vi.useFakeTimers();
hoisted.hasInternalHookListeners.mockReturnValue(true);
const cfg = {} as never;
const deps = {} as never;
try {
await startGatewaySidecars({
cfg,
pluginRegistry: createPostAttachParams().pluginRegistry,
defaultWorkspaceDir: "/tmp/openclaw-workspace",
deps,
startChannels: vi.fn(async () => undefined),
log: { warn: vi.fn() },
logHooks: {
info: vi.fn(),
warn: vi.fn(),
error: vi.fn(),
},
logChannels: {
info: vi.fn(),
error: vi.fn(),
},
});
expect(hoisted.loadInternalHooks).not.toHaveBeenCalled();
expect(hoisted.hasInternalHookListeners).toHaveBeenCalledWith("gateway", "startup");
await vi.advanceTimersByTimeAsync(250);
expect(hoisted.createInternalHookEvent).toHaveBeenCalledWith(
"gateway",
"startup",
"gateway:startup",
{
cfg,
deps,
workspaceDir: "/tmp/openclaw-workspace",
},
);
expect(hoisted.triggerInternalHook).toHaveBeenCalledWith(hoisted.startupHookEvent);
} finally {
vi.useRealTimers();
}
});
it("passes typed gateway_start context with config, workspace dir, and a live cron getter", async () => {
const runGatewayStart = vi.fn<
(event: PluginHookGatewayStartEvent, ctx: PluginHookGatewayContext) => Promise<void>
>(async () => undefined);
const hookRunner = {
hasHooks: vi.fn((hookName: string) => hookName === "gateway_start"),
runGatewayStart,
};
const initialCron = { list: vi.fn(), add: vi.fn(), update: vi.fn(), remove: vi.fn() };
const params = createPostAttachParams({
gatewayPluginConfigAtStart: {
hooks: { internal: { enabled: false } },
plugins: { entries: { demo: { enabled: true } } },
} as never,
deps: { cron: initialCron } as never,
});
await startGatewayPostAttachRuntime(
params,
createPostAttachRuntimeDeps({
getGlobalHookRunner: vi.fn(async () => hookRunner as never),
}),
);
await vi.waitFor(() => {
expect(runGatewayStart).toHaveBeenCalledTimes(1);
});
const firstCall = runGatewayStart.mock.calls[0];
if (!firstCall) {
throw new Error("gateway_start was not invoked");
}
const [event, ctx] = firstCall;
expect(event).toEqual({ port: 18789 });
expect(ctx).toMatchObject({
port: 18789,
config: params.gatewayPluginConfigAtStart,
workspaceDir: "/tmp/openclaw-workspace",
});
expect(typeof ctx.getCron).toBe("function");
const getCron = ctx.getCron;
if (!getCron) {
throw new Error("gateway_start context did not expose getCron");
}
expect(getCron()).toBe(initialCron);
const reloadedCron = { list: vi.fn(), add: vi.fn(), update: vi.fn(), remove: vi.fn() };
params.deps.cron = reloadedCron as never;
expect(getCron()).toBe(reloadedCron);
});
});
function createPostAttachRuntimeDeps(
overrides: Partial<PostAttachRuntimeDeps> = {},
): PostAttachRuntimeDeps {
return {
getGlobalHookRunner: vi.fn(() => null),
logGatewayStartup: hoisted.logGatewayStartup,
scheduleGatewayUpdateCheck: hoisted.scheduleGatewayUpdateCheck,
startGatewaySidecars: vi.fn(async () => ({ pluginServices: null })),
startGatewayTailscaleExposure: hoisted.startGatewayTailscaleExposure,
...overrides,
};
}
function createPostAttachParams(overrides: Partial<PostAttachParams> = {}): PostAttachParams {
return {
minimalTestGateway: false,
cfgAtStart: { hooks: { internal: { enabled: false } } } as never,
bindHost: "127.0.0.1",
bindHosts: ["127.0.0.1"],
port: 18789,
tlsEnabled: false,
log: { info: vi.fn(), warn: vi.fn() },
isNixMode: false,
broadcast: vi.fn(),
tailscaleMode: "off",
resetOnExit: false,
controlUiBasePath: "/",
logTailscale: {
info: vi.fn(),
warn: vi.fn(),
error: vi.fn(),
},
gatewayPluginConfigAtStart: { hooks: { internal: { enabled: false } } } as never,
pluginRegistry: {
plugins: [
{ id: "beta", status: "loaded" },
{ id: "alpha", status: "loaded" },
{ id: "cold", status: "disabled" },
{ id: "broken", status: "error" },
],
} as never,
defaultWorkspaceDir: "/tmp/openclaw-workspace",
deps: {} as never,
startChannels: vi.fn(async () => undefined),
logHooks: {
info: vi.fn(),
warn: vi.fn(),
error: vi.fn(),
},
logChannels: {
info: vi.fn(),
error: vi.fn(),
},
unavailableGatewayMethods: new Set<string>(),
...overrides,
};
}
¤ Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.0.28Bemerkung:
(vorverarbeitet am 2026-04-27)
¤
*Bot Zugriff
|
|