Some checks failed
ClawSweeper Dispatch / dispatch (push) Has been cancelled
CodeQL / Security High (actions) (push) Has been cancelled
CodeQL / Security High (channel-runtime-boundary) (push) Has been cancelled
CodeQL / Security High (core-auth-secrets) (push) Has been cancelled
CodeQL / Security High (mcp-process-tool-boundary) (push) Has been cancelled
CodeQL / Security High (network-ssrf-boundary) (push) Has been cancelled
CodeQL / Security High (plugin-trust-boundary) (push) Has been cancelled
CodeQL / Security High (process-exec-boundary) (push) Has been cancelled
Docs Sync Publish Repo / sync-publish-repo (push) Has been cancelled
Docs / docs (push) Has been cancelled
OpenClaw Stable Main Closeout / Resolve stable release closeout inputs (push) Has been cancelled
OpenClaw Stable Main Closeout / Verify stable main closeout (push) Has been cancelled
Workflow Sanity / no-tabs (push) Has been cancelled
Workflow Sanity / actionlint (push) Has been cancelled
Workflow Sanity / generated-doc-baselines (push) Has been cancelled
CI / runner-admission (push) Has been cancelled
CI / preflight (push) Has been cancelled
CI / security-fast (push) Has been cancelled
CI / pnpm-store-warmup (push) Has been cancelled
CI / build-artifacts (push) Has been cancelled
CI / native-i18n (push) Has been cancelled
CI / ${{ matrix.check_name }} (push) Has been cancelled
CI / ${{ matrix.checkName }} (push) Has been cancelled
CI / checks-node-compat-node22 (push) Has been cancelled
CI / check-bundled-channel-config-metadata (push) Has been cancelled
CI / check-dependencies (push) Has been cancelled
CI / check-guards (push) Has been cancelled
CI / check-lint (push) Has been cancelled
CI / check-prod-types (push) Has been cancelled
CI / check-shrinkwrap (push) Has been cancelled
CI / check-test-types (push) Has been cancelled
CI / check-additional-boundaries-a (push) Has been cancelled
CI / check-additional-boundaries-bcd (push) Has been cancelled
CI / check-additional-extension-bundled (push) Has been cancelled
CI / check-additional-extension-channels (push) Has been cancelled
CI / check-additional-extension-package-boundary (push) Has been cancelled
CI / check-additional-runtime-topology-architecture (push) Has been cancelled
CI / check-session-accessor-boundary (push) Has been cancelled
CI / check-session-transcript-reader-boundary (push) Has been cancelled
CI / check-docs (push) Has been cancelled
CI / skills-python (push) Has been cancelled
CI / macos-swift (push) Has been cancelled
CI / ios-build (push) Has been cancelled
CI / ci-timings-summary (push) Has been cancelled
Native App Locale Refresh / Refresh native fa (push) Has been cancelled
Native App Locale Refresh / Refresh native fr (push) Has been cancelled
Native App Locale Refresh / Refresh native hi (push) Has been cancelled
Native App Locale Refresh / Refresh native id (push) Has been cancelled
Native App Locale Refresh / Refresh native it (push) Has been cancelled
Native App Locale Refresh / Refresh native ja-JP (push) Has been cancelled
Control UI Locale Refresh / plan (push) Has been cancelled
Control UI Locale Refresh / Refresh ${{ matrix.locale }} (push) Has been cancelled
Control UI Locale Refresh / Commit control UI locale refresh (push) Has been cancelled
Live Media Runner Image / Build live media runner image (push) Has been cancelled
Native App Locale Refresh / Refresh native ar (push) Has been cancelled
Native App Locale Refresh / Refresh native de (push) Has been cancelled
Native App Locale Refresh / Refresh native es (push) Has been cancelled
Native App Locale Refresh / Refresh native ko (push) Has been cancelled
Native App Locale Refresh / Refresh native nl (push) Has been cancelled
Native App Locale Refresh / Refresh native pl (push) Has been cancelled
Native App Locale Refresh / Refresh native pt-BR (push) Has been cancelled
Native App Locale Refresh / Refresh native ru (push) Has been cancelled
Native App Locale Refresh / Refresh native sv (push) Has been cancelled
Native App Locale Refresh / Refresh native th (push) Has been cancelled
Native App Locale Refresh / Refresh native tr (push) Has been cancelled
Native App Locale Refresh / Refresh native uk (push) Has been cancelled
Native App Locale Refresh / Refresh native vi (push) Has been cancelled
Native App Locale Refresh / Refresh native zh-CN (push) Has been cancelled
Native App Locale Refresh / Refresh native zh-TW (push) Has been cancelled
Native App Locale Refresh / Commit native locale refresh (push) Has been cancelled
Plugin Init Scaffold Validation / Validate provider scaffold (push) Has been cancelled
Plugin NPM Release / preview_plugins_npm (push) Has been cancelled
Plugin NPM Release / Validate release publish approval (push) Has been cancelled
Plugin NPM Release / preview_plugin_pack (push) Has been cancelled
Plugin NPM Release / publish_plugins_npm (push) Has been cancelled
Sandbox Common Smoke / sandbox-common-smoke (push) Has been cancelled
Website Installer Sync / static (push) Has been cancelled
Website Installer Sync / linux-docker (push) Has been cancelled
Website Installer Sync / macos-installer (push) Has been cancelled
Website Installer Sync / windows-installer (push) Has been cancelled
Website Installer Sync / sync-website (push) Has been cancelled
Adolf is a fork/vendored clone of github.com/openclaw/openclaw (v2026.6.11), free to diverge. Tree copied sans upstream .git; upstream remote added for future syncs. Node pinned to 24 (.nvmrc); engines already require >=22.19. Preserves docs/ARCHITECTURE.md. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01LeqyaxJF2nbRXJtae2kNB2
253 lines
7.9 KiB
TypeScript
253 lines
7.9 KiB
TypeScript
// Voice Call tests cover doctor contract api plugin behavior.
|
|
import fs from "node:fs/promises";
|
|
import os from "node:os";
|
|
import path from "node:path";
|
|
import {
|
|
createPluginStateKeyedStoreForTests,
|
|
createPluginStateSyncKeyedStoreForTests,
|
|
resetPluginStateStoreForTests,
|
|
} from "openclaw/plugin-sdk/plugin-state-test-runtime";
|
|
import type {
|
|
OpenKeyedStoreOptions,
|
|
PluginDoctorStateMigrationContext,
|
|
} from "openclaw/plugin-sdk/runtime-doctor";
|
|
import { afterEach, beforeEach, describe, expect, it } from "vitest";
|
|
import { resolveSessionStoreAgentIds, stateMigrations } from "./doctor-contract-api.js";
|
|
import {
|
|
createTestStorePath,
|
|
makePersistedCall,
|
|
writeLegacyCallsJsonl,
|
|
} from "./src/manager.test-harness.js";
|
|
import { getCallHistoryFromStore, loadActiveCallsFromStore } from "./src/manager/store.js";
|
|
import { clearVoiceCallStateRuntime, setVoiceCallStateRuntime } from "./src/runtime-state.js";
|
|
|
|
function createDoctorContext(env: NodeJS.ProcessEnv): PluginDoctorStateMigrationContext {
|
|
return {
|
|
openPluginStateKeyedStore<T>(options: OpenKeyedStoreOptions) {
|
|
return createPluginStateKeyedStoreForTests<T>("voice-call", {
|
|
...options,
|
|
env: options.env ?? env,
|
|
});
|
|
},
|
|
};
|
|
}
|
|
|
|
function installStateRuntime(): void {
|
|
setVoiceCallStateRuntime({
|
|
state: {
|
|
resolveStateDir: () => "",
|
|
openKeyedStore: (() => {
|
|
throw new Error("openKeyedStore is not used by voice-call doctor tests");
|
|
}) as never,
|
|
openSyncKeyedStore: (options: OpenKeyedStoreOptions) =>
|
|
createPluginStateSyncKeyedStoreForTests("voice-call", options),
|
|
openChannelIngressQueue: (() => {
|
|
throw new Error("openChannelIngressQueue is not used by voice-call doctor tests");
|
|
}) as never,
|
|
},
|
|
});
|
|
}
|
|
|
|
describe("voice-call doctor state migration", () => {
|
|
let stateDir = "";
|
|
let storePath = "";
|
|
let env: NodeJS.ProcessEnv;
|
|
|
|
beforeEach(async () => {
|
|
resetPluginStateStoreForTests();
|
|
stateDir = await fs.mkdtemp(path.join(os.tmpdir(), "openclaw-voice-call-doctor-"));
|
|
storePath = createTestStorePath();
|
|
env = { ...process.env, HOME: stateDir, OPENCLAW_STATE_DIR: stateDir };
|
|
installStateRuntime();
|
|
});
|
|
|
|
afterEach(async () => {
|
|
clearVoiceCallStateRuntime();
|
|
resetPluginStateStoreForTests();
|
|
await fs.rm(stateDir, { recursive: true, force: true });
|
|
await fs.rm(storePath, { recursive: true, force: true });
|
|
});
|
|
|
|
it("reports top-level and per-number session-store agents", () => {
|
|
expect(
|
|
resolveSessionStoreAgentIds({
|
|
cfg: {
|
|
plugins: {
|
|
entries: {
|
|
"voice-call": {
|
|
config: {
|
|
agentId: "Voice",
|
|
numbers: {
|
|
"+15550001111": { agentId: "Cards" },
|
|
"+15550002222": {},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}),
|
|
).toEqual(["cards", "voice"]);
|
|
expect(
|
|
resolveSessionStoreAgentIds({
|
|
cfg: {
|
|
plugins: { entries: { "@openclaw/voice-call": { config: {} } } },
|
|
},
|
|
}),
|
|
).toEqual(["main"]);
|
|
expect(
|
|
resolveSessionStoreAgentIds({
|
|
cfg: {
|
|
plugins: { entries: { "voice-call": { enabled: true } } },
|
|
},
|
|
}),
|
|
).toEqual(["main"]);
|
|
});
|
|
|
|
it("imports legacy calls.jsonl into plugin state", async () => {
|
|
const sourcePath = path.join(storePath, "calls.jsonl");
|
|
const call = makePersistedCall({
|
|
callId: "call-doctor",
|
|
providerCallId: "provider-doctor",
|
|
processedEventIds: ["evt-doctor"],
|
|
});
|
|
writeLegacyCallsJsonl(storePath, [
|
|
{
|
|
version: 2,
|
|
persistedAt: 1000,
|
|
sequence: 0,
|
|
call,
|
|
},
|
|
]);
|
|
|
|
const migration = stateMigrations[0];
|
|
const config = {
|
|
plugins: {
|
|
entries: {
|
|
"@openclaw/voice-call": {
|
|
config: { store: storePath },
|
|
},
|
|
},
|
|
},
|
|
};
|
|
await expect(
|
|
migration.detectLegacyState({
|
|
config,
|
|
env,
|
|
stateDir,
|
|
oauthDir: path.join(stateDir, "oauth"),
|
|
context: createDoctorContext(env),
|
|
}),
|
|
).resolves.toMatchObject({
|
|
preview: [expect.stringContaining("1 record")],
|
|
});
|
|
|
|
const result = await migration.migrateLegacyState({
|
|
config,
|
|
env,
|
|
stateDir,
|
|
oauthDir: path.join(stateDir, "oauth"),
|
|
context: createDoctorContext(env),
|
|
});
|
|
|
|
expect(result.warnings).toEqual([]);
|
|
expect(result.changes).toEqual([
|
|
expect.stringContaining("Migrated 1 Voice Call call-log record"),
|
|
expect.stringContaining("Archived Voice Call call-log legacy source"),
|
|
]);
|
|
await expect(fs.access(sourcePath)).rejects.toThrow();
|
|
await expect(fs.access(`${sourcePath}.migrated`)).resolves.toBeUndefined();
|
|
|
|
const restored = loadActiveCallsFromStore(storePath);
|
|
expect(restored.activeCalls.get("call-doctor")?.providerCallId).toBe("provider-doctor");
|
|
expect(restored.processedEventIds.has("evt-doctor")).toBe(true);
|
|
|
|
const history = await getCallHistoryFromStore(storePath);
|
|
expect(history).toHaveLength(1);
|
|
expect(history[0]?.callId).toBe("call-doctor");
|
|
});
|
|
|
|
it("imports the newest legacy call records when the JSONL log is over capacity", async () => {
|
|
const calls = Array.from({ length: 1002 }, (_, index) =>
|
|
makePersistedCall({
|
|
callId: `call-${index}`,
|
|
providerCallId: `provider-${index}`,
|
|
}),
|
|
);
|
|
writeLegacyCallsJsonl(storePath, calls);
|
|
|
|
const config = {
|
|
plugins: {
|
|
entries: {
|
|
"@openclaw/voice-call": {
|
|
config: { store: storePath },
|
|
},
|
|
},
|
|
},
|
|
};
|
|
const result = await stateMigrations[0].migrateLegacyState({
|
|
config,
|
|
env,
|
|
stateDir,
|
|
oauthDir: path.join(stateDir, "oauth"),
|
|
context: createDoctorContext(env),
|
|
});
|
|
|
|
expect(result.warnings).toEqual([
|
|
expect.stringContaining("Pruned 2 older Voice Call call-log records"),
|
|
]);
|
|
expect(result.changes).toEqual([
|
|
expect.stringContaining("Migrated 1000 Voice Call call-log records"),
|
|
expect.stringContaining("Archived Voice Call call-log legacy source"),
|
|
]);
|
|
|
|
const restored = loadActiveCallsFromStore(storePath);
|
|
expect(restored.activeCalls.has("call-0")).toBe(false);
|
|
expect(restored.activeCalls.has("call-1")).toBe(false);
|
|
expect(restored.activeCalls.get("call-1001")?.providerCallId).toBe("provider-1001");
|
|
|
|
const history = await getCallHistoryFromStore(storePath, 1000);
|
|
expect(history).toHaveLength(1000);
|
|
expect(history[0]?.callId).toBe("call-2");
|
|
expect(history.at(-1)?.callId).toBe("call-1001");
|
|
});
|
|
|
|
it("leaves malformed mixed legacy logs in place after importing valid records", async () => {
|
|
const sourcePath = path.join(storePath, "calls.jsonl");
|
|
const call = makePersistedCall({
|
|
callId: "call-valid",
|
|
providerCallId: "provider-valid",
|
|
});
|
|
await fs.mkdir(path.dirname(sourcePath), { recursive: true });
|
|
await fs.writeFile(sourcePath, `${JSON.stringify(call)}\n{not json}\n`);
|
|
|
|
const config = {
|
|
plugins: {
|
|
entries: {
|
|
"@openclaw/voice-call": {
|
|
config: { store: storePath },
|
|
},
|
|
},
|
|
},
|
|
};
|
|
const result = await stateMigrations[0].migrateLegacyState({
|
|
config,
|
|
env,
|
|
stateDir,
|
|
oauthDir: path.join(stateDir, "oauth"),
|
|
context: createDoctorContext(env),
|
|
});
|
|
|
|
expect(result.changes).toEqual([
|
|
expect.stringContaining("Migrated 1 Voice Call call-log record"),
|
|
]);
|
|
expect(result.warnings).toEqual([
|
|
"Skipped malformed Voice Call call-log line 2",
|
|
"Left Voice Call call-log source in place because migration was incomplete",
|
|
]);
|
|
await expect(fs.access(sourcePath)).resolves.toBeUndefined();
|
|
await expect(fs.access(`${sourcePath}.migrated`)).rejects.toThrow();
|
|
expect(loadActiveCallsFromStore(storePath).activeCalls.has("call-valid")).toBe(true);
|
|
});
|
|
});
|