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

推荐订阅源

T
Tailwind CSS Blog
人人都是产品经理
人人都是产品经理
博客园 - 叶小钗
大猫的无限游戏
大猫的无限游戏
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 【当耐特】
The Cloudflare Blog
博客园 - 聂微东
博客园 - 司徒正美
量子位
博客园 - 三生石上(FineUI控件)
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
G
Google Developers Blog
Apple Machine Learning Research
Apple Machine Learning Research
罗磊的独立博客
酷 壳 – CoolShell
酷 壳 – CoolShell
Y
Y Combinator Blog
S
SegmentFault 最新的问题
T
The Blog of Author Tim Ferriss
P
Proofpoint News Feed
Google DeepMind News
Google DeepMind News
Blog — PlanetScale
Blog — PlanetScale
有赞技术团队
有赞技术团队
A
About on SuperTechFans

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: check whatsapp login messages · openclaw/openclaw@f...
shakkernerd · 2026-05-11 · via Recent Commits to openclaw:main

@@ -3,6 +3,7 @@ import fs from "node:fs/promises";

33

import path from "node:path";

44

import type { RuntimeEnv } from "openclaw/plugin-sdk/runtime-env";

55

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

6+

import { stripAnsi } from "../../../../src/terminal/ansi.js";

67

import { loginWeb } from "./login.js";

78

import { renderQrTerminal } from "./qr-terminal.js";

89

import { createWaSocket, formatError, waitForWaConnection } from "./session.js";

@@ -80,6 +81,10 @@ async function flushTasks() {

8081

await Promise.resolve();

8182

}

828384+

function runtimeMessageCalls(fn: ReturnType<typeof vi.fn>) {

85+

return fn.mock.calls.map((call) => stripAnsi(String(call[0])));

86+

}

87+8388

describe("loginWeb coverage", () => {

8489

beforeEach(() => {

8590

vi.useFakeTimers();

@@ -112,8 +117,8 @@ describe("loginWeb coverage", () => {

112117

expect(createWaSocketMock).toHaveBeenCalledTimes(2);

113118

const firstSock = await createWaSocketMock.mock.results[0]?.value;

114119

expect(firstSock.ws.close).toHaveBeenCalled();

115-

expect(runtime.log).toHaveBeenCalledWith(

116-

expect.stringContaining("Linked after restart; web session ready."),

120+

expect(runtimeMessageCalls(runtime.log)).toContain(

121+

"✅ Linked after restart; web session ready.",

117122

);

118123

vi.runAllTimers();

119124

const secondSock = await createWaSocketMock.mock.results[1]?.value;

@@ -160,7 +165,9 @@ describe("loginWeb coverage", () => {

160165

await expect(loginWeb(false, waitForWaConnectionMock as never, runtime)).rejects.toThrow(

161166

/cache cleared/i,

162167

);

163-

expect(runtime.error).toHaveBeenCalledWith(expect.stringContaining("session is logged out"));

168+

expect(runtimeMessageCalls(runtime.error)).toEqual([

169+

"WhatsApp reported the session is logged out. Cleared cached web session; please rerun openclaw channels login and scan the QR again.",

170+

]);

164171

expect(rmMock).toHaveBeenCalledWith(path.resolve(testState.authDir), {

165172

recursive: true,

166173

force: true,

@@ -173,9 +180,9 @@ describe("loginWeb coverage", () => {

173180

await expect(loginWeb(false, waitForWaConnectionMock as never, runtime)).rejects.toThrow(

174181

"formatted:Error: boom",

175182

);

176-

expect(runtime.error).toHaveBeenCalledWith(

177-

expect.stringContaining("WhatsApp Web connection ended before fully opening."),

178-

);

183+

expect(runtimeMessageCalls(runtime.error)).toEqual([

184+

"WhatsApp Web connection ended before fully opening. formatted:Error: boom",

185+

]);

179186

expect(formatErrorMock).toHaveBeenCalled();

180187

});

181188

});