惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

月光博客
月光博客
MyScale Blog
MyScale Blog
博客园 - Franky
The Cloudflare Blog
IT之家
IT之家
Blog — PlanetScale
Blog — PlanetScale
博客园 - 聂微东
WordPress大学
WordPress大学
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
T
The Blog of Author Tim Ferriss
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
罗磊的独立博客
Google DeepMind News
Google DeepMind News
P
Proofpoint News Feed
Martin Fowler
Martin Fowler
aimingoo的专栏
aimingoo的专栏
J
Java Code Geeks
腾讯CDC
雷峰网
雷峰网
Microsoft Azure Blog
Microsoft Azure Blog
G
Google Developers Blog
博客园 - 【当耐特】
美团技术团队
云风的 BLOG
云风的 BLOG

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
test(release): harden beta validation gates · openclaw/op...
steipete · 2026-05-31 · via Recent Commits to openclaw:main

File tree

  • extensions/voice-call/src

Original file line numberDiff line numberDiff line change

@@ -1,10 +1,14 @@

1-

import { describe, expect, it, vi } from "vitest";

1+

import { beforeEach, describe, expect, it, vi } from "vitest";

22

import type { WebhookContext } from "../types.js";

33

import { TwilioProvider } from "./twilio.js";

44

import { TwilioApiError } from "./twilio/api.js";

55
66

const STREAM_URL = "wss://example.ngrok.app/voice/stream";

77
8+

beforeEach(() => {

9+

vi.useRealTimers();

10+

});

11+
812

function createProvider(): TwilioProvider {

913

return new TwilioProvider(

1014

{ accountSid: "AC123", authToken: "secret" },

Original file line numberDiff line numberDiff line change

@@ -35,12 +35,17 @@ function createProc(params?: { code?: number; stdout?: string }) {

3535

};

3636

proc.stdout = new EventEmitter();

3737

proc.kill = vi.fn();

38-

setTimeout(() => {

39-

if (params?.stdout) {

40-

proc.stdout.emit("data", Buffer.from(params.stdout));

38+

const originalOn = proc.on.bind(proc);

39+

proc.on = ((eventName: string | symbol, listener: (...args: unknown[]) => void) => {

40+

const result = originalOn(eventName, listener);

41+

if (eventName === "close") {

42+

if (params?.stdout) {

43+

proc.stdout.emit("data", Buffer.from(params.stdout));

44+

}

45+

listener(params?.code ?? 0);

4146

}

42-

proc.emit("close", params?.code ?? 0);

43-

}, 0);

47+

return result;

48+

}) as typeof proc.on;

4449

return proc;

4550

}

4651

@@ -51,14 +56,20 @@ function createErrorProc() {

5156

};

5257

proc.stdout = new EventEmitter();

5358

proc.kill = vi.fn();

54-

setTimeout(() => {

55-

proc.emit("error", Object.assign(new Error("spawn tailscale ENOENT"), { code: "ENOENT" }));

56-

}, 0);

59+

const originalOn = proc.on.bind(proc);

60+

proc.on = ((eventName: string | symbol, listener: (...args: unknown[]) => void) => {

61+

const result = originalOn(eventName, listener);

62+

if (eventName === "error") {

63+

listener(Object.assign(new Error("spawn tailscale ENOENT"), { code: "ENOENT" }));

64+

}

65+

return result;

66+

}) as typeof proc.on;

5767

return proc;

5868

}

5969
6070

describe("voice-call tailscale helpers", () => {

6171

beforeEach(() => {

72+

vi.useRealTimers();

6273

vi.clearAllMocks();

6374

});

6475
Original file line numberDiff line numberDiff line change

@@ -7,6 +7,10 @@ import type { Page } from "playwright";

77

import { createServer, type ViteDevServer } from "vite";

88

import { PROTOCOL_VERSION } from "../../../packages/gateway-protocol/src/version.js";

99

import { CONTROL_UI_BOOTSTRAP_CONFIG_PATH } from "../../../src/gateway/control-ui-contract.js";

10+

import {

11+

resolveSourcePackageAliasesForVite,

12+

resolveTsconfigPathAliasesForVite,

13+

} from "../../vite.config.ts";

1014
1115

const require = createRequire(import.meta.url);

1216

const json5EsmPath = require.resolve("json5/dist/index.mjs");

@@ -108,20 +112,11 @@ export async function startControlUiE2eServer(): Promise<ControlUiE2eServer> {

108112

},

109113

publicDir: path.join(uiRoot, "public"),

110114

resolve: {

111-

alias: {

112-

"@openclaw/net-policy/ip": path.join(repoRoot, "packages/net-policy/src/ip.ts"),

113-

"@openclaw/net-policy/ipv4": path.join(repoRoot, "packages/net-policy/src/ipv4.ts"),

114-

"@openclaw/net-policy/redact-sensitive-url": path.join(

115-

repoRoot,

116-

"packages/net-policy/src/redact-sensitive-url.ts",

117-

),

118-

"@openclaw/net-policy/url-userinfo": path.join(

119-

repoRoot,

120-

"packages/net-policy/src/url-userinfo.ts",

121-

),

122-

"@openclaw/net-policy": path.join(repoRoot, "packages/net-policy/src/index.ts"),

123-

json5: json5EsmPath,

124-

},

115+

alias: [

116+

{ find: "json5", replacement: json5EsmPath },

117+

...resolveSourcePackageAliasesForVite(),

118+

...resolveTsconfigPathAliasesForVite(),

119+

],

125120

},

126121

root: uiRoot,

127122

server: {

Original file line numberDiff line numberDiff line change

@@ -1,7 +1,10 @@

11

import path from "node:path";

22

import { fileURLToPath } from "node:url";

33

import { describe, expect, it } from "vitest";

4-

import { resolveTsconfigPathAliasesForVite } from "../../vite.config.ts";

4+

import {

5+

resolveSourcePackageAliasesForVite,

6+

resolveTsconfigPathAliasesForVite,

7+

} from "../../vite.config.ts";

58
69

const repoRoot = path.resolve(path.dirname(fileURLToPath(import.meta.url)), "../../..");

710

@@ -16,6 +19,16 @@ describe("Control UI Vite config", () => {

1619

);

1720

});

1821
22+

it("resolves Control UI dev-server source aliases for internal packages", () => {

23+

const aliases = resolveSourcePackageAliasesForVite();

24+

expect(

25+

aliases.find((alias) => alias.find === "@openclaw/normalization-core/string-coerce"),

26+

)?.toEqual({

27+

find: "@openclaw/normalization-core/string-coerce",

28+

replacement: path.join(repoRoot, "packages/normalization-core/src/string-coerce.ts"),

29+

});

30+

});

31+
1932

it("keeps specific tsconfig aliases ahead of broad package aliases", () => {

2033

const aliases = resolveTsconfigPathAliasesForVite();

2134

const netPolicyIpIndex = aliases.findIndex((alias) => alias.find === "@openclaw/net-policy/ip");

Original file line numberDiff line numberDiff line change

@@ -134,6 +134,31 @@ function resolveTsconfigPathAlias(key: string, target: string): ControlUiViteAli

134134

};

135135

}

136136
137+

function sourcePackageAlias(packageId: string, subpath?: string): ControlUiViteAlias {

138+

return {

139+

find: `@openclaw/${packageId}${subpath ? `/${subpath}` : ""}`,

140+

replacement: path.join(

141+

repoRoot,

142+

"packages",

143+

packageId,

144+

"src",

145+

...(subpath ? subpath.split("/") : ["index"]).map((part, index, parts) =>

146+

index === parts.length - 1 ? `${part}.ts` : part,

147+

),

148+

),

149+

};

150+

}

151+
152+

export function resolveSourcePackageAliasesForVite(): ControlUiViteAlias[] {

153+

return [

154+

sourcePackageAlias("normalization-core", "number-coercion"),

155+

sourcePackageAlias("normalization-core", "record-coerce"),

156+

sourcePackageAlias("normalization-core", "string-coerce"),

157+

sourcePackageAlias("normalization-core", "string-normalization"),

158+

sourcePackageAlias("normalization-core"),

159+

];

160+

}

161+
137162

export function resolveTsconfigPathAliasesForVite(): ControlUiViteAlias[] {

138163

const raw = fs.readFileSync(path.join(repoRoot, "tsconfig.json"), "utf8");

139164

const parsed = JSON.parse(raw) as {

@@ -191,7 +216,11 @@ export default defineConfig(() => {

191216

],

192217

},

193218

resolve: {

194-

alias: [{ find: "json5", replacement: json5EsmPath }, ...resolveTsconfigPathAliasesForVite()],

219+

alias: [

220+

{ find: "json5", replacement: json5EsmPath },

221+

...resolveSourcePackageAliasesForVite(),

222+

...resolveTsconfigPathAliasesForVite(),

223+

],

195224

},

196225

build: {

197226

outDir,