mirror of
http://192.168.0.88:13333/lywsvip/openclaw-zero-token.git
synced 2026-05-10 00:56:22 +08:00
Major upgrade from e26988a38 to upstream v2026.3.28 (f9b107928).
Key changes:
- Upstream src/, ui/, extensions/ (89 bundled extensions)
- Zero-token web providers preserved in src/zero-token/
- AskOnce plugin restored and registered as CLI command
- Added missing packages: @anthropic-ai/vertex-sdk, @modelcontextprotocol/sdk
- Fixed tsconfig rootDir, skipLibCheck for plugin-sdk DTS build
- Added askonce to bundled plugin metadata and package.json exports
- Fixed AskOnce CLI command registration (missing commands metadata)
- Restored AskOnce adapter imports (correct 5-level relative paths)
- Removed stale migration artifacts from root directory
55 lines
2.2 KiB
TypeScript
55 lines
2.2 KiB
TypeScript
import fs from "node:fs";
|
|
import path from "node:path";
|
|
import { fileURLToPath } from "node:url";
|
|
import { describe, expect, it } from "vitest";
|
|
import { normalizeConfigDocBaselineHelpPath } from "./doc-baseline.js";
|
|
import { FIELD_HELP } from "./schema.help.js";
|
|
import {
|
|
describeTalkSilenceTimeoutDefaults,
|
|
TALK_SILENCE_TIMEOUT_MS_BY_PLATFORM,
|
|
} from "./talk-defaults.js";
|
|
|
|
const repoRoot = path.resolve(path.dirname(fileURLToPath(import.meta.url)), "../..");
|
|
|
|
function readRepoFile(relativePath: string): string {
|
|
return fs.readFileSync(path.join(repoRoot, relativePath), "utf8");
|
|
}
|
|
|
|
describe("talk silence timeout defaults", () => {
|
|
it("keeps help text and docs aligned with the policy", () => {
|
|
const defaultsDescription = describeTalkSilenceTimeoutDefaults();
|
|
const baselineLines = readRepoFile("docs/.generated/config-baseline.jsonl")
|
|
.trim()
|
|
.split("\n")
|
|
.map((line) => JSON.parse(line) as { recordType: string; path?: string; help?: string });
|
|
const talkEntry = baselineLines.find(
|
|
(entry) =>
|
|
entry.recordType === "path" &&
|
|
entry.path === normalizeConfigDocBaselineHelpPath("talk.silenceTimeoutMs"),
|
|
);
|
|
|
|
expect(FIELD_HELP["talk.silenceTimeoutMs"]).toContain(defaultsDescription);
|
|
expect(talkEntry?.help).toContain(defaultsDescription);
|
|
expect(readRepoFile("docs/gateway/configuration-reference.md")).toContain(defaultsDescription);
|
|
expect(readRepoFile("docs/nodes/talk.md")).toContain(defaultsDescription);
|
|
});
|
|
|
|
it("matches the Apple and Android runtime constants", () => {
|
|
const macDefaults = readRepoFile("apps/macos/Sources/OpenClaw/TalkDefaults.swift");
|
|
const iosDefaults = readRepoFile("apps/ios/Sources/Voice/TalkDefaults.swift");
|
|
const androidDefaults = readRepoFile(
|
|
"apps/android/app/src/main/java/ai/openclaw/app/voice/TalkDefaults.kt",
|
|
);
|
|
|
|
expect(macDefaults).toContain(
|
|
`static let silenceTimeoutMs = ${TALK_SILENCE_TIMEOUT_MS_BY_PLATFORM.macos}`,
|
|
);
|
|
expect(iosDefaults).toContain(
|
|
`static let silenceTimeoutMs = ${TALK_SILENCE_TIMEOUT_MS_BY_PLATFORM.ios}`,
|
|
);
|
|
expect(androidDefaults).toContain(
|
|
`const val defaultSilenceTimeoutMs = ${TALK_SILENCE_TIMEOUT_MS_BY_PLATFORM.android}L`,
|
|
);
|
|
});
|
|
});
|