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

推荐订阅源

钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Apple Machine Learning Research
Apple Machine Learning Research
T
Tailwind CSS Blog
月光博客
月光博客
爱范儿
爱范儿
有赞技术团队
有赞技术团队
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
aimingoo的专栏
aimingoo的专栏
GbyAI
GbyAI
腾讯CDC
The Cloudflare Blog
人人都是产品经理
人人都是产品经理
MongoDB | Blog
MongoDB | Blog
Microsoft Azure Blog
Microsoft Azure Blog
IT之家
IT之家
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
云风的 BLOG
云风的 BLOG
U
Unit 42
博客园 - 三生石上(FineUI控件)
A
About on SuperTechFans
N
Netflix TechBlog - Medium
Google DeepMind News
Google DeepMind News
雷峰网
雷峰网
L
LangChain 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
chore(deadcode): remove qqbot duplicate wrappers · opencl...
vincentkoc · 2026-06-20 · via Recent Commits to openclaw:main

@@ -2,14 +2,10 @@

22

import { describe, expect, it } from "vitest";

33

import {

44

DEFAULT_GROUP_HISTORY_LIMIT,

5+

DEFAULT_GROUP_PROMPT,

56

resolveGroupConfig,

6-

resolveGroupName,

7-

resolveGroupPrompt,

87

resolveGroupSettings,

9-

resolveHistoryLimit,

10-

resolveIgnoreOtherMentions,

118

resolveMentionPatterns,

12-

resolveRequireMention,

139

} from "./group.js";

14101511

describe("engine/config/group", () => {

@@ -70,7 +66,7 @@ describe("engine/config/group", () => {

7066

qqbot: { appId: "1", groups: { "*": { historyLimit: -3.7 } } },

7167

},

7268

};

73-

expect(resolveHistoryLimit(cfg, "G")).toBe(0);

69+

expect(resolveGroupConfig(cfg, "G").historyLimit).toBe(0);

7470

});

75717672

it("non-finite historyLimit falls back to default", () => {

@@ -79,7 +75,7 @@ describe("engine/config/group", () => {

7975

qqbot: { appId: "1", groups: { "*": { historyLimit: "not a number" } } },

8076

},

8177

};

82-

expect(resolveHistoryLimit(cfg, "G")).toBe(DEFAULT_GROUP_HISTORY_LIMIT);

78+

expect(resolveGroupConfig(cfg, "G").historyLimit).toBe(DEFAULT_GROUP_HISTORY_LIMIT);

8379

});

84808581

describe("account-level defaultRequireMention layer", () => {

@@ -103,7 +99,7 @@ describe("engine/config/group", () => {

10399

},

104100

},

105101

};

106-

expect(resolveRequireMention(cfg, "G1", "bot2")).toBe(false);

102+

expect(resolveGroupConfig(cfg, "G1", "bot2").requireMention).toBe(false);

107103

});

108104109105

it("wildcard overrides account-level defaultRequireMention", () => {

@@ -153,27 +149,28 @@ describe("engine/config/group", () => {

153149

},

154150

},

155151

};

156-

expect(resolveRequireMention(cfg, "G", "bot2")).toBe(false);

157-

expect(resolveHistoryLimit(cfg, "G", "bot2")).toBe(7);

152+

const resolved = resolveGroupConfig(cfg, "G", "bot2");

153+

expect(resolved.requireMention).toBe(false);

154+

expect(resolved.historyLimit).toBe(7);

158155

});

159156

});

160157161-

describe("resolveGroupName", () => {

158+

describe("resolveGroupSettings name", () => {

162159

it("uses the first 8 chars of openid when name is unset", () => {

163-

expect(resolveGroupName({}, "ABCDEFGH1234")).toBe("ABCDEFGH");

160+

expect(resolveGroupSettings({ cfg: {}, groupOpenid: "ABCDEFGH1234" }).name).toBe("ABCDEFGH");

164161

});

165162166163

it("prefers the configured name", () => {

167164

const cfg = {

168165

channels: { qqbot: { appId: "1", groups: { ABCDEFGH1234: { name: "Foo" } } } },

169166

};

170-

expect(resolveGroupName(cfg, "ABCDEFGH1234")).toBe("Foo");

167+

expect(resolveGroupSettings({ cfg, groupOpenid: "ABCDEFGH1234" }).name).toBe("Foo");

171168

});

172169

});

173170174-

describe("resolveGroupPrompt", () => {

171+

describe("resolveGroupConfig prompt", () => {

175172

it("returns the default prompt when nothing configured", () => {

176-

expect(resolveGroupPrompt({}, "G")).toContain("bot");

173+

expect(resolveGroupConfig({}, "G").prompt ?? DEFAULT_GROUP_PROMPT).toContain("bot");

177174

});

178175179176

it("prefers specific over wildcard", () => {

@@ -185,21 +182,21 @@ describe("engine/config/group", () => {

185182

},

186183

},

187184

};

188-

expect(resolveGroupPrompt(cfg, "G1")).toBe("SPEC");

189-

expect(resolveGroupPrompt(cfg, "G2")).toBe("WILD");

185+

expect(resolveGroupConfig(cfg, "G1").prompt).toBe("SPEC");

186+

expect(resolveGroupConfig(cfg, "G2").prompt).toBe("WILD");

190187

});

191188

});

192189193-

describe("resolveIgnoreOtherMentions", () => {

190+

describe("resolveGroupConfig ignoreOtherMentions", () => {

194191

it("defaults to false", () => {

195-

expect(resolveIgnoreOtherMentions({}, "G")).toBe(false);

192+

expect(resolveGroupConfig({}, "G").ignoreOtherMentions).toBe(false);

196193

});

197194198195

it("honours wildcard override", () => {

199196

const cfg = {

200197

channels: { qqbot: { appId: "1", groups: { "*": { ignoreOtherMentions: true } } } },

201198

};

202-

expect(resolveIgnoreOtherMentions(cfg, "G")).toBe(true);

199+

expect(resolveGroupConfig(cfg, "G").ignoreOtherMentions).toBe(true);

203200

});

204201

});

205202