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

推荐订阅源

博客园 - 司徒正美
T
The Blog of Author Tim Ferriss
F
Fortinet All Blogs
Martin Fowler
Martin Fowler
罗磊的独立博客
The GitHub Blog
The GitHub Blog
L
LangChain Blog
A
About on SuperTechFans
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
D
DataBreaches.Net
宝玉的分享
宝玉的分享
U
Unit 42
阮一峰的网络日志
阮一峰的网络日志
Last Week in AI
Last Week in AI
N
Netflix TechBlog - Medium
The Cloudflare Blog
Microsoft Azure Blog
Microsoft Azure Blog
H
Help Net Security
美团技术团队
大猫的无限游戏
大猫的无限游戏
雷峰网
雷峰网
爱范儿
爱范儿
酷 壳 – CoolShell
酷 壳 – CoolShell
MongoDB | Blog
MongoDB | 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(ui): streamline session controls async tests · openc...
steipete · 2026-04-26 · via Recent Commits to openclaw:main

@@ -22,10 +22,24 @@ const refreshVisibleToolsEffectiveForCurrentSessionMock = vi.hoisted(() =>

2222

state.toolsEffectiveResult = { agentId, profile: "coding", groups: [] };

2323

}),

2424

);

25+

const loadSessionsMock = vi.hoisted(() =>

26+

vi.fn(async (state: AppViewState) => {

27+

const res = await state.client?.request("sessions.list", {

28+

includeGlobal: true,

29+

includeUnknown: true,

30+

});

31+

if (res) {

32+

state.sessionsResult = res as AppViewState["sessionsResult"];

33+

}

34+

}),

35+

);

25362637

vi.mock("../controllers/agents.ts", () => ({

2738

refreshVisibleToolsEffectiveForCurrentSession: refreshVisibleToolsEffectiveForCurrentSessionMock,

2839

}));

40+

vi.mock("../controllers/sessions.ts", () => ({

41+

loadSessions: loadSessionsMock,

42+

}));

29433044

function createChatHeaderState(

3145

overrides: {

@@ -146,11 +160,19 @@ function createChatHeaderState(

146160

return { state, request };

147161

}

148162149-

async function flushTasks() {

150-

return new Promise<void>((resolve) => queueMicrotask(resolve));

163+

async function flushTasks(turns = 6) {

164+

for (let i = 0; i < turns; i += 1) {

165+

await Promise.resolve();

166+

}

167+

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

168+

for (let i = 0; i < turns; i += 1) {

169+

await Promise.resolve();

170+

}

151171

}

152172153173

afterEach(() => {

174+

loadSessionsMock.mockClear();

175+

refreshVisibleToolsEffectiveForCurrentSessionMock.mockClear();

154176

vi.unstubAllGlobals();

155177

});

156178

@@ -174,13 +196,10 @@ describe("chat session controls", () => {

174196

model: "openai/gpt-5-mini",

175197

});

176198

expect(request).not.toHaveBeenCalledWith("chat.history", expect.anything());

177-

await vi.waitFor(

178-

() => {

179-

expect(state.sessionsResult?.sessions[0]?.model).toBe("gpt-5-mini");

180-

expect(state.sessionsResult?.sessions[0]?.modelProvider).toBe("openai");

181-

},

182-

{ interval: 1, timeout: 100 },

183-

);

199+

await flushTasks();

200+

expect(loadSessionsMock).toHaveBeenCalledTimes(1);

201+

expect(state.sessionsResult?.sessions[0]?.model).toBe("gpt-5-mini");

202+

expect(state.sessionsResult?.sessions[0]?.modelProvider).toBe("openai");

184203

});

185204186205

it("reloads effective tools after a chat-header model switch for the active tools panel", async () => {

@@ -203,15 +222,11 @@ describe("chat session controls", () => {

203222204223

modelSelect!.value = "openai/gpt-5-mini";

205224

modelSelect!.dispatchEvent(new Event("change", { bubbles: true }));

206-

await vi.waitFor(

207-

() => {

208-

expect(request).toHaveBeenCalledWith("tools.effective", {

209-

agentId: "main",

210-

sessionKey: "main",

211-

});

212-

},

213-

{ interval: 1, timeout: 100 },

214-

);

225+

await flushTasks();

226+

expect(request).toHaveBeenCalledWith("tools.effective", {

227+

agentId: "main",

228+

sessionKey: "main",

229+

});

215230

expect(state.toolsEffectiveResultKey).toBe("main:main:model=openai/gpt-5-mini");

216231

});

217232

@@ -233,12 +248,9 @@ describe("chat session controls", () => {

233248

key: "main",

234249

model: null,

235250

});

236-

await vi.waitFor(

237-

() => {

238-

expect(state.sessionsResult?.sessions[0]?.model).toBeUndefined();

239-

},

240-

{ interval: 1, timeout: 100 },

241-

);

251+

await flushTasks();

252+

expect(loadSessionsMock).toHaveBeenCalledTimes(1);

253+

expect(state.sessionsResult?.sessions[0]?.model).toBeUndefined();

242254

});

243255244256

it("disables the chat header model picker while a run is active", () => {