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

推荐订阅源

WordPress大学
WordPress大学
小众软件
小众软件
MongoDB | Blog
MongoDB | Blog
Hugging Face - Blog
Hugging Face - Blog
Jina AI
Jina AI
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Stack Overflow Blog
Stack Overflow Blog
L
LangChain Blog
大猫的无限游戏
大猫的无限游戏
量子位
A
About on SuperTechFans
G
Google Developers Blog
雷峰网
雷峰网
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
IT之家
IT之家
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园_首页
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Vercel News
Vercel News
V
Visual Studio Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - 聂微东
U
Unit 42
Apple Machine Learning Research
Apple Machine Learning Research

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: tighten matrix sync lifecycle assertions · openclaw...
steipete · 2026-05-11 · via Recent Commits to openclaw:main

@@ -36,6 +36,26 @@ function createSyncLifecycleHarness(options?: { withStopping?: boolean }) {

3636

};

3737

}

383839+

function statusCalls(setStatus: ReturnType<typeof vi.fn>): Record<string, unknown>[] {

40+

return setStatus.mock.calls.map(([status]) => status as Record<string, unknown>);

41+

}

42+43+

function lastStatus(setStatus: ReturnType<typeof vi.fn>): Record<string, unknown> {

44+

const status = statusCalls(setStatus).at(-1);

45+

expect(status).toBeDefined();

46+

return status ?? {};

47+

}

48+49+

function expectLastStatusFields(

50+

setStatus: ReturnType<typeof vi.fn>,

51+

fields: Record<string, unknown>,

52+

): void {

53+

const status = lastStatus(setStatus);

54+

for (const [key, value] of Object.entries(fields)) {

55+

expect(status[key]).toEqual(value);

56+

}

57+

}

58+3959

describe("createMatrixMonitorSyncLifecycle", () => {

4060

it("rejects the channel wait on unexpected sync errors", async () => {

4161

const { client, lifecycle, setStatus } = createSyncLifecycleHarness();

@@ -44,13 +64,11 @@ describe("createMatrixMonitorSyncLifecycle", () => {

4464

client.emit("sync.unexpected_error", new Error("sync exploded"));

45654666

await expect(waitPromise).rejects.toThrow("sync exploded");

47-

expect(setStatus).toHaveBeenCalledWith(

48-

expect.objectContaining({

49-

accountId: "default",

50-

healthState: "error",

51-

lastError: "sync exploded",

52-

}),

53-

);

67+

expectLastStatusFields(setStatus, {

68+

accountId: "default",

69+

healthState: "error",

70+

lastError: "sync exploded",

71+

});

5472

});

55735674

it("ignores STOPPED emitted during intentional shutdown", async () => {

@@ -64,12 +82,10 @@ describe("createMatrixMonitorSyncLifecycle", () => {

6482

lifecycle.dispose();

65836684

await expect(waitPromise).resolves.toBeUndefined();

67-

expect(setStatus).toHaveBeenCalledWith(

68-

expect.objectContaining({

69-

accountId: "default",

70-

healthState: "stopped",

71-

}),

72-

);

85+

expectLastStatusFields(setStatus, {

86+

accountId: "default",

87+

healthState: "stopped",

88+

});

7389

});

74907591

it("marks unexpected STOPPED sync as an error state", async () => {

@@ -79,13 +95,11 @@ describe("createMatrixMonitorSyncLifecycle", () => {

7995

client.emit("sync.state", "STOPPED", "SYNCING", undefined);

80968197

await expect(waitPromise).rejects.toThrow("Matrix sync stopped unexpectedly");

82-

expect(setStatus).toHaveBeenCalledWith(

83-

expect.objectContaining({

84-

accountId: "default",

85-

healthState: "error",

86-

lastError: "Matrix sync stopped unexpectedly",

87-

}),

88-

);

98+

expectLastStatusFields(setStatus, {

99+

accountId: "default",

100+

healthState: "error",

101+

lastError: "Matrix sync stopped unexpectedly",

102+

});

89103

});

9010491105

it("ignores unexpected sync errors emitted during intentional shutdown", async () => {

@@ -99,12 +113,11 @@ describe("createMatrixMonitorSyncLifecycle", () => {

99113

lifecycle.dispose();

100114101115

await expect(waitPromise).resolves.toBeUndefined();

102-

expect(setStatus).not.toHaveBeenCalledWith(

103-

expect.objectContaining({

104-

accountId: "default",

105-

healthState: "error",

106-

}),

107-

);

116+

expect(

117+

statusCalls(setStatus).some(

118+

(status) => status.accountId === "default" && status.healthState === "error",

119+

),

120+

).toBe(false);

108121

});

109122110123

it("ignores non-terminal sync states emitted during intentional shutdown", async () => {

@@ -120,13 +133,11 @@ describe("createMatrixMonitorSyncLifecycle", () => {

120133

statusController.markStopped();

121134122135

await expect(waitPromise).resolves.toBeUndefined();

123-

expect(setStatus).toHaveBeenLastCalledWith(

124-

expect.objectContaining({

125-

accountId: "default",

126-

healthState: "stopped",

127-

lastError: null,

128-

}),

129-

);

136+

expectLastStatusFields(setStatus, {

137+

accountId: "default",

138+

healthState: "stopped",

139+

lastError: null,

140+

});

130141

});

131142132143

it("only refreshes transport liveness for successful sync responses", async () => {

@@ -137,28 +148,16 @@ describe("createMatrixMonitorSyncLifecycle", () => {

137148

setStatus.mockClear();

138149139150

client.emit("sync.state", "PREPARED", null, undefined);

140-

expect(setStatus).toHaveBeenLastCalledWith(

141-

expect.not.objectContaining({

142-

lastTransportActivityAt: expect.any(Number),

143-

}),

144-

);

151+

expect(lastStatus(setStatus).lastTransportActivityAt).toBeUndefined();

145152146153

await vi.advanceTimersByTimeAsync(2_000);

147154

client.emit("sync.state", "SYNCING", "PREPARED", undefined);

148155

const syncAt = Date.now();

149-

expect(setStatus).toHaveBeenLastCalledWith(

150-

expect.objectContaining({

151-

lastTransportActivityAt: syncAt,

152-

}),

153-

);

156+

expect(lastStatus(setStatus).lastTransportActivityAt).toBe(syncAt);

154157155158

await vi.advanceTimersByTimeAsync(3_000);

156159

client.emit("sync.state", "CATCHUP", "SYNCING", undefined);

157-

expect(setStatus).toHaveBeenLastCalledWith(

158-

expect.objectContaining({

159-

lastTransportActivityAt: syncAt,

160-

}),

161-

);

160+

expect(lastStatus(setStatus).lastTransportActivityAt).toBe(syncAt);

162161

} finally {

163162

lifecycle.dispose();

164163

vi.useRealTimers();

@@ -180,13 +179,11 @@ describe("createMatrixMonitorSyncLifecycle", () => {

180179

lifecycle.dispose();

181180

statusController.markStopped();

182181183-

expect(setStatus).toHaveBeenLastCalledWith(

184-

expect.objectContaining({

185-

accountId: "default",

186-

healthState: "error",

187-

lastError: "sync exploded",

188-

}),

189-

);

182+

expectLastStatusFields(setStatus, {

183+

accountId: "default",

184+

healthState: "error",

185+

lastError: "sync exploded",

186+

});

190187

});

191188192189

it("ignores follow-up sync states after a fatal sync error", async () => {

@@ -199,13 +196,11 @@ describe("createMatrixMonitorSyncLifecycle", () => {

199196

client.emit("sync.state", "RECONNECTING", "SYNCING", new Error("late reconnect"));

200197

lifecycle.dispose();

201198202-

expect(setStatus).toHaveBeenLastCalledWith(

203-

expect.objectContaining({

204-

accountId: "default",

205-

healthState: "error",

206-

lastError: "sync exploded",

207-

}),

208-

);

199+

expectLastStatusFields(setStatus, {

200+

accountId: "default",

201+

healthState: "error",

202+

lastError: "sync exploded",

203+

});

209204

});

210205211206

it("rejects a second concurrent fatal-stop waiter", async () => {