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

推荐订阅源

Google DeepMind News
Google DeepMind News
B
Blog RSS Feed
量子位
aimingoo的专栏
aimingoo的专栏
V
Visual Studio Blog
Y
Y Combinator Blog
Vercel News
Vercel News
云风的 BLOG
云风的 BLOG
宝玉的分享
宝玉的分享
Engineering at Meta
Engineering at Meta
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
GbyAI
GbyAI
人人都是产品经理
人人都是产品经理
博客园 - 叶小钗
Stack Overflow Blog
Stack Overflow Blog
大猫的无限游戏
大猫的无限游戏
Microsoft Security Blog
Microsoft Security Blog
B
Blog
Last Week in AI
Last Week in AI
有赞技术团队
有赞技术团队
博客园 - 聂微东
腾讯CDC
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
J
Java Code Geeks

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 assertions and harness coverage · openclaw/...
steipete · 2026-05-08 · via Recent Commits to openclaw:main

@@ -156,6 +156,17 @@ describe("active-memory plugin", () => {

156156

vi

157157

.mocked(api.logger.warn)

158158

.mock.calls.some((call: unknown[]) => String(call[0]).includes(needle));

159+

const expectPrependContextResult = (result: unknown) => {

160+

expect(result).toMatchObject({

161+

prependContext: expect.any(String),

162+

});

163+

};

164+

const requireNonEmptyString = (value: unknown, message: string): string => {

165+

if (typeof value !== "string" || value.length === 0) {

166+

throw new Error(message);

167+

}

168+

return value;

169+

};

159170160171

beforeEach(async () => {

161172

vi.clearAllMocks();

@@ -931,7 +942,7 @@ describe("active-memory plugin", () => {

931942

);

932943933944

expect(runEmbeddedPiAgent).toHaveBeenCalledTimes(1);

934-

expect(result).toBeDefined();

945+

expectPrependContextResult(result);

935946

});

936947937948

it("skips sessions whose conversation id is in deniedChatIds even when chat type is allowed", async () => {

@@ -1033,7 +1044,7 @@ describe("active-memory plugin", () => {

10331044

);

1034104510351046

expect(runEmbeddedPiAgent).toHaveBeenCalledTimes(1);

1036-

expect(result).toBeDefined();

1047+

expectPrependContextResult(result);

10371048

});

1038104910391050

it("matches per-peer direct session keys (agent:<id>:direct:<peer>)", async () => {

@@ -1057,7 +1068,7 @@ describe("active-memory plugin", () => {

10571068

);

1058106910591070

expect(runEmbeddedPiAgent).toHaveBeenCalledTimes(1);

1060-

expect(result).toBeDefined();

1071+

expectPrependContextResult(result);

10611072

});

1062107310631074

it("matches per-account-channel-peer direct session keys (agent:<id>:<channel>:<account>:direct:<peer>)", async () => {

@@ -1082,7 +1093,7 @@ describe("active-memory plugin", () => {

10821093

);

1083109410841095

expect(runEmbeddedPiAgent).toHaveBeenCalledTimes(1);

1085-

expect(result).toBeDefined();

1096+

expectPrependContextResult(result);

10861097

});

1087109810881099

it("strips :thread:<id> suffix before matching allowedChatIds (group)", async () => {

@@ -1109,7 +1120,7 @@ describe("active-memory plugin", () => {

11091120

);

1110112111111122

expect(runEmbeddedPiAgent).toHaveBeenCalledTimes(1);

1112-

expect(result).toBeDefined();

1123+

expectPrependContextResult(result);

11131124

});

1114112511151126

it("strips :thread:<id> suffix before matching deniedChatIds (direct)", async () => {

@@ -1630,13 +1641,13 @@ describe("active-memory plugin", () => {

16301641

const deprecationMessage = warnCalls

16311642

.map(([first]) => (typeof first === "string" ? first : ""))

16321643

.find((message) => message.includes("config.modelFallbackPolicy is deprecated"));

1633-

expect(deprecationMessage).toBeDefined();

1644+

const message = requireNonEmptyString(deprecationMessage, "deprecation warning missing");

16341645

// Positive: the warning describes chain-resolution last-resort behavior.

1635-

expect(deprecationMessage).toContain("chain-resolution");

1636-

expect(deprecationMessage).toContain("last-resort");

1646+

expect(message).toContain("chain-resolution");

1647+

expect(message).toContain("last-resort");

16371648

// Negative: the warning explicitly disclaims runtime failover, since

16381649

// that's the wrong mental model the previous wording invited.

1639-

expect(deprecationMessage).toMatch(/NOT a runtime failover/i);

1650+

expect(message).toMatch(/NOT a runtime failover/i);

16401651

});

1641165216421653

it("does not use a built-in fallback model even when default-remote is configured", async () => {

@@ -1760,9 +1771,9 @@ describe("active-memory plugin", () => {

17601771

const debugLine = entries?.[0]?.lines.find((line) =>

17611772

line.startsWith("🔎 Active Memory Debug:"),

17621773

);

1763-

expect(debugLine).toBeDefined();

1764-

expect(debugLine).toContain("backend=qmd");

1765-

expect(debugLine).toContain("hits=3");

1774+

const line = requireNonEmptyString(debugLine, "active memory debug line missing");

1775+

expect(line).toContain("backend=qmd");

1776+

expect(line).toContain("hits=3");

17661777

});

1767177817681779

it("replaces stale structured active-memory lines on a later empty run", async () => {

@@ -2033,6 +2044,7 @@ describe("active-memory plugin", () => {

20332044

it("returns partial transcript text on timeout when transcripts are temporary by default", async () => {

20342045

__testing.setMinimumTimeoutMsForTests(1);

20352046

__testing.setSetupGraceTimeoutMsForTests(0);

2047+

__testing.setTimeoutPartialDataGraceMsForTests(100);

20362048

api.pluginConfig = {

20372049

agents: ["main"],

20382050

timeoutMs: 250,

@@ -2299,9 +2311,9 @@ describe("active-memory plugin", () => {

22992311

maxBytes: 10 * 1024 * 1024,

23002312

});

230123132302-

expect(result).toBeTruthy();

2303-

expect(result?.length).toBeLessThanOrEqual(128);

2304-

expect(result).toContain("alpha beta gamma");

2314+

const partialText = requireNonEmptyString(result, "partial assistant text missing");

2315+

expect(partialText.length).toBeLessThanOrEqual(128);

2316+

expect(partialText).toContain("alpha beta gamma");

23052317

expect(readFileSpy).not.toHaveBeenCalled();

23062318

});

23072319

@@ -2953,9 +2965,9 @@ describe("active-memory plugin", () => {

29532965

.mocked(api.logger.info)

29542966

.mock.calls.map((call: unknown[]) => String(call[0]));

29552967

const startLine = infoLines.find((line: string) => line.includes(" start timeoutMs="));

2956-

expect(startLine).toBeTruthy();

2957-

expect(startLine && startLine.length < 500).toBe(true);

2958-

expect(startLine).toContain("...");

2968+

const line = requireNonEmptyString(startLine, "active memory start log line missing");

2969+

expect(line.length).toBeLessThan(500);

2970+

expect(line).toContain("...");

29592971

});

2960297229612973

it("uses a canonical agent session key when only sessionId is available", async () => {