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

推荐订阅源

J
Java Code Geeks
F
Fortinet All Blogs
云风的 BLOG
云风的 BLOG
MyScale Blog
MyScale Blog
D
DataBreaches.Net
Stack Overflow Blog
Stack Overflow Blog
A
About on SuperTechFans
Google DeepMind News
Google DeepMind News
Microsoft Security Blog
Microsoft Security Blog
腾讯CDC
The GitHub Blog
The GitHub Blog
Jina AI
Jina AI
B
Blog RSS Feed
I
InfoQ
N
Netflix TechBlog - Medium
T
The Blog of Author Tim Ferriss
Microsoft Azure Blog
Microsoft Azure Blog
Recent Announcements
Recent Announcements
GbyAI
GbyAI
H
Help Net Security
L
LangChain Blog
M
MIT News - Artificial intelligence
Y
Y Combinator Blog
aimingoo的专栏
aimingoo的专栏

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: harden qa parity config cleanup · openclaw/openclaw...
steipete · 2026-04-22 · via Recent Commits to openclaw:main

@@ -108,6 +108,89 @@ function getGatewayRetryAfterMs(error: unknown) {

108108

return null;

109109

}

110110111+

function isPlainObject(value: unknown): value is Record<string, unknown> {

112+

return typeof value === "object" && value !== null && !Array.isArray(value);

113+

}

114+115+

function isObjectWithStringId(value: unknown): value is { id: string } & Record<string, unknown> {

116+

return isPlainObject(value) && typeof value.id === "string";

117+

}

118+119+

function applyQaMergePatch(target: unknown, patch: unknown): unknown {

120+

if (Array.isArray(target) && Array.isArray(patch)) {

121+

const merged = target.map((entry) => structuredClone(entry));

122+

const indexById = new Map<string, number>();

123+

for (const [index, entry] of merged.entries()) {

124+

if (isObjectWithStringId(entry)) {

125+

indexById.set(entry.id, index);

126+

}

127+

}

128+

for (const patchEntry of patch) {

129+

if (!isObjectWithStringId(patchEntry)) {

130+

merged.push(structuredClone(patchEntry));

131+

continue;

132+

}

133+

const existingIndex = indexById.get(patchEntry.id);

134+

if (existingIndex === undefined) {

135+

merged.push(structuredClone(patchEntry));

136+

indexById.set(patchEntry.id, merged.length - 1);

137+

continue;

138+

}

139+

merged[existingIndex] = applyQaMergePatch(merged[existingIndex], patchEntry);

140+

}

141+

return merged;

142+

}

143+

if (!isPlainObject(patch)) {

144+

return structuredClone(patch);

145+

}

146+

const base = isPlainObject(target) ? structuredClone(target) : {};

147+

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

148+

if (value === null) {

149+

delete base[key];

150+

continue;

151+

}

152+

base[key] = applyQaMergePatch(base[key], value);

153+

}

154+

return base;

155+

}

156+157+

function areJsonValuesEqual(left: unknown, right: unknown): boolean {

158+

if (Object.is(left, right)) {

159+

return true;

160+

}

161+

if (Array.isArray(left) || Array.isArray(right)) {

162+

if (!Array.isArray(left) || !Array.isArray(right) || left.length !== right.length) {

163+

return false;

164+

}

165+

return left.every((entry, index) => areJsonValuesEqual(entry, right[index]));

166+

}

167+

if (isPlainObject(left) || isPlainObject(right)) {

168+

if (!isPlainObject(left) || !isPlainObject(right)) {

169+

return false;

170+

}

171+

const leftKeys = Object.keys(left).toSorted();

172+

const rightKeys = Object.keys(right).toSorted();

173+

if (!areJsonValuesEqual(leftKeys, rightKeys)) {

174+

return false;

175+

}

176+

return leftKeys.every((key) => areJsonValuesEqual(left[key], right[key]));

177+

}

178+

return false;

179+

}

180+181+

function isConfigPatchNoopForSnapshot(config: Record<string, unknown>, raw: string): boolean {

182+

let patch: unknown;

183+

try {

184+

patch = JSON.parse(raw);

185+

} catch {

186+

return false;

187+

}

188+

if (!isPlainObject(patch)) {

189+

return false;

190+

}

191+

return areJsonValuesEqual(applyQaMergePatch(config, patch), config);

192+

}

193+111194

async function readConfigSnapshot(env: Pick<QaSuiteRuntimeEnv, "gateway">) {

112195

const snapshot = (await env.gateway.call(

113196

"config.get",

@@ -141,6 +224,15 @@ async function runConfigMutation(params: {

141224

let lastConflict: unknown = null;

142225

for (let attempt = 1; attempt <= 8; attempt += 1) {

143226

const snapshot = await readConfigSnapshot(params.env);

227+

if (

228+

params.action === "config.patch" &&

229+

isConfigPatchNoopForSnapshot(snapshot.config, params.raw)

230+

) {

231+

// QA scenarios do best-effort cleanup in finally blocks. Skipping

232+

// client-known no-op patches keeps that cleanup from burning the

233+

// control-plane write budget and making later capability checks flaky.

234+

return { ok: true, noop: true };

235+

}

144236

try {

145237

const result = await params.env.gateway.call(

146238

params.action,

@@ -235,6 +327,7 @@ export {

235327

fetchJson,

236328

formatGatewayPrimaryErrorText,

237329

getGatewayRetryAfterMs,

330+

isConfigPatchNoopForSnapshot,

238331

isConfigHashConflict,

239332

isGatewayRestartRace,

240333

patchConfig,