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

推荐订阅源

博客园 - 叶小钗
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Microsoft Security Blog
Microsoft Security Blog
罗磊的独立博客
大猫的无限游戏
大猫的无限游戏
美团技术团队
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
aimingoo的专栏
aimingoo的专栏
腾讯CDC
WordPress大学
WordPress大学
Apple Machine Learning Research
Apple Machine Learning Research
F
Fortinet All Blogs
G
Google Developers Blog
MongoDB | Blog
MongoDB | Blog
Microsoft Azure Blog
Microsoft Azure Blog
小众软件
小众软件
Engineering at Meta
Engineering at Meta
博客园_首页
B
Blog RSS Feed
D
Docker
M
MIT News - Artificial intelligence
爱范儿
爱范儿
I
InfoQ

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: add upgrade survivor package lane · openclaw/opencl...
steipete · 2026-05-01 · via Recent Commits to openclaw:main

@@ -0,0 +1,174 @@

1+

import fs from "node:fs";

2+

import path from "node:path";

3+4+

const command = process.argv[2];

5+6+

function requireEnv(name) {

7+

const value = process.env[name];

8+

if (!value) {

9+

throw new Error(`${name} is required`);

10+

}

11+

return value;

12+

}

13+14+

function readJson(file) {

15+

return JSON.parse(fs.readFileSync(file, "utf8"));

16+

}

17+18+

function write(file, contents) {

19+

fs.mkdirSync(path.dirname(file), { recursive: true });

20+

fs.writeFileSync(file, contents);

21+

}

22+23+

function writeJson(file, value) {

24+

write(file, `${JSON.stringify(value, null, 2)}\n`);

25+

}

26+27+

function assert(condition, message) {

28+

if (!condition) {

29+

throw new Error(message);

30+

}

31+

}

32+33+

function getConfig() {

34+

return readJson(requireEnv("OPENCLAW_CONFIG_PATH"));

35+

}

36+37+

function seedState() {

38+

const stateDir = requireEnv("OPENCLAW_STATE_DIR");

39+

const workspace = requireEnv("OPENCLAW_TEST_WORKSPACE_DIR");

40+41+

write(

42+

path.join(workspace, "IDENTITY.md"),

43+

"# Upgrade Survivor\n\nThis workspace must survive package update and doctor repair.\n",

44+

);

45+

writeJson(path.join(workspace, ".openclaw", "workspace-state.json"), {

46+

version: 1,

47+

setupCompletedAt: "2026-04-01T00:00:00.000Z",

48+

});

49+

writeJson(path.join(stateDir, "agents", "main", "sessions", "legacy-session.json"), {

50+

id: "legacy-session",

51+

agentId: "main",

52+

title: "Existing user session",

53+

});

54+55+

const runtimeRoot = path.join(stateDir, "plugin-runtime-deps");

56+

for (const plugin of ["discord", "telegram", "whatsapp"]) {

57+

writeJson(path.join(runtimeRoot, plugin, ".openclaw-runtime-deps-stamp.json"), {

58+

version: 0,

59+

plugin,

60+

stale: true,

61+

});

62+

write(

63+

path.join(

64+

runtimeRoot,

65+

plugin,

66+

".openclaw-runtime-deps-copy-stale",

67+

"node_modules",

68+

"stale-sentinel",

69+

"package.json",

70+

),

71+

`${JSON.stringify({ name: "stale-sentinel", version: "0.0.0" }, null, 2)}\n`,

72+

);

73+

}

74+75+

writeJson(path.join(stateDir, "survivor-baseline.json"), {

76+

agents: ["main", "ops"],

77+

discordGuild: "222222222222222222",

78+

discordChannel: "333333333333333333",

79+

telegramGroup: "-1001234567890",

80+

whatsappGroup: "120363000000000000@g.us",

81+

workspaceIdentity: path.join(workspace, "IDENTITY.md"),

82+

});

83+

}

84+85+

function assertConfigSurvived() {

86+

const config = getConfig();

87+

assert(config.update?.channel === "stable", "update.channel was not preserved");

88+

assert(config.gateway?.auth?.mode === "token", "gateway auth mode was not preserved");

89+90+

const agents = config.agents?.list ?? [];

91+

assert(Array.isArray(agents), "agents.list missing after update/doctor");

92+

assert(

93+

agents.some((agent) => agent?.id === "main"),

94+

"main agent missing",

95+

);

96+

assert(

97+

agents.some((agent) => agent?.id === "ops"),

98+

"ops agent missing",

99+

);

100+

assert(

101+

agents.find((agent) => agent?.id === "main")?.contextTokens === 64000,

102+

"main agent contextTokens changed",

103+

);

104+

assert(

105+

agents.find((agent) => agent?.id === "ops")?.fastModeDefault === true,

106+

"ops fastModeDefault changed",

107+

);

108+109+

const discord = config.channels?.discord;

110+

assert(discord?.enabled === true, "discord enabled flag changed");

111+

const discordAllowFrom = discord.allowFrom ?? discord.dm?.allowFrom;

112+

const discordDmPolicy = discord.dmPolicy ?? discord.dm?.policy;

113+

assert(discordDmPolicy === "allowlist", "discord DM policy changed");

114+

assert(

115+

Array.isArray(discordAllowFrom) && discordAllowFrom.includes("111111111111111111"),

116+

"discord allowFrom changed",

117+

);

118+

assert(

119+

discord.guilds?.["222222222222222222"]?.channels?.["333333333333333333"]?.requireMention ===

120+

true,

121+

"discord guild channel mention policy changed",

122+

);

123+

assert(discord.threadBindings?.idleHours === 72, "discord thread binding ttl changed");

124+125+

assert(config.channels?.telegram?.enabled === true, "telegram enabled flag changed");

126+

assert(

127+

config.channels?.telegram?.groups?.["-1001234567890"]?.requireMention === true,

128+

"telegram group policy changed",

129+

);

130+

assert(config.channels?.whatsapp?.enabled === true, "whatsapp enabled flag changed");

131+

assert(

132+

config.channels?.whatsapp?.groups?.["120363000000000000@g.us"]?.systemPrompt ===

133+

"Use the existing WhatsApp group prompt.",

134+

"whatsapp group policy changed",

135+

);

136+137+

const pluginAllow = config.plugins?.allow ?? [];

138+

assert(pluginAllow.includes("discord"), "discord plugin allow entry missing");

139+

assert(pluginAllow.includes("telegram"), "telegram plugin allow entry missing");

140+

assert(pluginAllow.includes("whatsapp"), "whatsapp plugin allow entry missing");

141+

}

142+143+

function assertStateSurvived() {

144+

const stateDir = requireEnv("OPENCLAW_STATE_DIR");

145+

const workspace = requireEnv("OPENCLAW_TEST_WORKSPACE_DIR");

146+

assert(fs.existsSync(path.join(workspace, "IDENTITY.md")), "workspace identity file missing");

147+

assert(

148+

fs.existsSync(path.join(stateDir, "agents", "main", "sessions", "legacy-session.json")),

149+

"legacy session file missing",

150+

);

151+

assert(

152+

fs.existsSync(path.join(stateDir, "plugin-runtime-deps", "discord")),

153+

"plugin runtime deps root missing",

154+

);

155+

}

156+157+

function assertStatusJson([file]) {

158+

const status = readJson(file);

159+

assert(status && typeof status === "object", "gateway status JSON was not an object");

160+

const text = JSON.stringify(status);

161+

assert(/running|connected|ok|ready/u.test(text), "gateway status did not report a healthy state");

162+

}

163+164+

if (command === "seed") {

165+

seedState();

166+

} else if (command === "assert-config") {

167+

assertConfigSurvived();

168+

} else if (command === "assert-state") {

169+

assertStateSurvived();

170+

} else if (command === "assert-status-json") {

171+

assertStatusJson(process.argv.slice(3));

172+

} else {

173+

throw new Error(`unknown upgrade-survivor assertion command: ${command ?? "<missing>"}`);

174+

}