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

推荐订阅源

爱范儿
爱范儿
博客园 - 叶小钗
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
腾讯CDC
S
SegmentFault 最新的问题
D
DataBreaches.Net
Hugging Face - Blog
Hugging Face - Blog
L
LangChain Blog
Recent Announcements
Recent Announcements
阮一峰的网络日志
阮一峰的网络日志
N
Netflix TechBlog - Medium
大猫的无限游戏
大猫的无限游戏
M
MIT News - Artificial intelligence
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 三生石上(FineUI控件)
F
Fortinet All Blogs
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Martin Fowler
Martin Fowler
雷峰网
雷峰网
J
Java Code Geeks
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
小众软件
小众软件
云风的 BLOG
云风的 BLOG
T
Tailwind CSS 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
fix(raft): satisfy channel type contracts · openclaw/open...
vincentkoc · 2026-06-22 · via Recent Commits to openclaw:main
11

import { EventEmitter } from "node:events";

2-

import { mkdtemp, rm } from "node:fs/promises";

2+

import { mkdtempSync, rmSync } from "node:fs";

33

import { tmpdir } from "node:os";

44

import path from "node:path";

55

import type { ChannelGatewayContext } from "openclaw/plugin-sdk/channel-contract";

@@ -13,6 +13,15 @@ class FakeBridge extends EventEmitter {

1313

kill = vi.fn(() => true);

1414

}

151516+

const tempDirs = new Set<string>();

17+18+

function makeTempDir(prefix: string): string {

19+

// openclaw-temp-dir: allow extension tests cannot import root test helpers

20+

const dir = mkdtempSync(path.join(tmpdir(), prefix));

21+

tempDirs.add(dir);

22+

return dir;

23+

}

24+1625

function createContext(accountId = "default") {

1726

const status = {

1827

accountId,

@@ -117,12 +126,19 @@ async function waitFor<T>(getValue: () => T | undefined): Promise<T> {

117126

if (value !== undefined) {

118127

return value;

119128

}

120-

await new Promise((resolve) => setTimeout(resolve, 5));

129+

await new Promise<void>((resolve) => {

130+

setTimeout(resolve, 5);

131+

});

121132

}

122133

throw new Error("Timed out waiting for value.");

123134

}

124135125136

afterEach(() => {

137+

resetPluginStateStoreForTests();

138+

for (const dir of tempDirs) {

139+

rmSync(dir, { force: true, recursive: true });

140+

}

141+

tempDirs.clear();

126142

vi.restoreAllMocks();

127143

});

128144

@@ -142,7 +158,9 @@ describe("Raft wake gateway", () => {

142158

settled = true;

143159

});

144160145-

await new Promise((resolve) => setTimeout(resolve, 0));

161+

await new Promise<void>((resolve) => {

162+

setTimeout(resolve, 0);

163+

});

146164

expect(settled).toBe(false);

147165

expect(spawnBridge).not.toHaveBeenCalled();

148166

@@ -213,7 +231,9 @@ describe("Raft wake gateway", () => {

213231

body: JSON.stringify({ eventId: "wake-1", timestamp: 2 }),

214232

}),

215233

).resolves.toMatchObject({ status: 202 });

216-

await new Promise((resolve) => setTimeout(resolve, 0));

234+

await new Promise<void>((resolve) => {

235+

setTimeout(resolve, 0);

236+

});

217237

expect(run).toHaveBeenCalledTimes(1);

218238

await expect(

219239

fetch(wakeEndpoint, {

@@ -311,7 +331,7 @@ describe("Raft wake gateway", () => {

311331

});

312332313333

it("persists accepted wake dedupe across restarts without crossing accounts", async () => {

314-

const stateDir = await mkdtemp(path.join(tmpdir(), "openclaw-raft-wake-dedupe-"));

334+

const stateDir = makeTempDir("openclaw-raft-wake-dedupe-");

315335

try {

316336

const first = createContext();

317337

Object.defineProperty(first.ctx, "abortSignal", { value: first.controller.signal });

@@ -403,7 +423,6 @@ describe("Raft wake gateway", () => {

403423

}

404424

} finally {

405425

resetPluginStateStoreForTests();

406-

await rm(stateDir, { force: true, recursive: true });

407426

}

408427

});

409428