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

推荐订阅源

V
V2EX
P
Proofpoint News Feed
D
DataBreaches.Net
C
Check Point Blog
L
LangChain Blog
量子位
美团技术团队
Vercel News
Vercel News
人人都是产品经理
人人都是产品经理
N
Netflix TechBlog - Medium
V
Visual Studio Blog
Microsoft Security Blog
Microsoft Security Blog
博客园 - 【当耐特】
MongoDB | Blog
MongoDB | Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Last Week in AI
Last Week in AI
The GitHub Blog
The GitHub Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
U
Unit 42
腾讯CDC
M
MIT News - Artificial intelligence
Microsoft Azure Blog
Microsoft Azure Blog
Blog — PlanetScale
Blog — PlanetScale

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
refactor(qa): share parity comparison helpers · openclaw/...
vincentkoc · 2026-06-20 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -1,5 +1,5 @@

1+

import { compareToolCallShape, stableHash } from "./parity-shared.js";

12

// Qa Lab plugin module implements harness parity behavior.

2-

import { createHash } from "node:crypto";

33

import type {

44

RuntimeId,

55

RuntimeParityCell,

@@ -98,10 +98,6 @@ export type HarnessParityResult = {

9898

firstDriftTurn?: number;

9999

};

100100
101-

function sha256(value: string) {

102-

return createHash("sha256").update(value).digest("hex");

103-

}

104-
105101

function countComparableTranscriptRecords(transcriptBytes: string) {

106102

let count = 0;

107103

for (const line of transcriptBytes.split(/\r?\n/u)) {

@@ -127,25 +123,6 @@ function countComparableTranscriptRecords(transcriptBytes: string) {

127123

return count;

128124

}

129125
130-

function normalizeForStableHash(value: unknown): unknown {

131-

if (Array.isArray(value)) {

132-

return value.map((entry) => normalizeForStableHash(entry));

133-

}

134-

if (value && typeof value === "object") {

135-

const record = value as Record<string, unknown>;

136-

return Object.fromEntries(

137-

Object.keys(record)

138-

.toSorted((left, right) => left.localeCompare(right))

139-

.map((key) => [key, normalizeForStableHash(record[key])]),

140-

);

141-

}

142-

return value;

143-

}

144-
145-

function stableHash(value: unknown) {

146-

return sha256(JSON.stringify(normalizeForStableHash(value)) ?? "null");

147-

}

148-
149126

function readPositiveNumber(value: unknown) {

150127

return typeof value === "number" && Number.isFinite(value) && value > 0 ? Math.floor(value) : 0;

151128

}

@@ -190,23 +167,6 @@ function normalizeTextForParity(text: string) {

190167

return text.replace(/\s+/gu, " ").trim();

191168

}

192169
193-

function compareToolCallShape(left: RuntimeParityToolCall[], right: RuntimeParityToolCall[]) {

194-

if (left.length !== right.length) {

195-

return `tool call count differs (${left.length} vs ${right.length})`;

196-

}

197-

for (let index = 0; index < left.length; index += 1) {

198-

const leftCall = left[index];

199-

const rightCall = right[index];

200-

if (!leftCall || !rightCall) {

201-

return `tool call row ${index + 1} missing`;

202-

}

203-

if (leftCall.tool !== rightCall.tool || leftCall.argsHash !== rightCall.argsHash) {

204-

return `tool call ${index + 1} differs (${leftCall.tool}/${leftCall.argsHash} vs ${rightCall.tool}/${rightCall.argsHash})`;

205-

}

206-

}

207-

return undefined;

208-

}

209-
210170

function compareToolResultShape(left: RuntimeParityToolCall[], right: RuntimeParityToolCall[]) {

211171

const total = Math.min(left.length, right.length);

212172

for (let index = 0; index < total; index += 1) {

Original file line numberDiff line numberDiff line change

@@ -0,0 +1,50 @@

1+

// Qa Lab plugin module implements shared parity comparison helpers.

2+

import { createHash } from "node:crypto";

3+
4+

type ParityToolCallShape = {

5+

argsHash: string;

6+

tool: string;

7+

};

8+
9+

function sha256(value: string) {

10+

return createHash("sha256").update(value).digest("hex");

11+

}

12+
13+

function normalizeForStableHash(value: unknown): unknown {

14+

if (Array.isArray(value)) {

15+

return value.map((entry) => normalizeForStableHash(entry));

16+

}

17+

if (value && typeof value === "object") {

18+

const record = value as Record<string, unknown>;

19+

return Object.fromEntries(

20+

Object.keys(record)

21+

.toSorted((left, right) => left.localeCompare(right))

22+

.map((key) => [key, normalizeForStableHash(record[key])]),

23+

);

24+

}

25+

return value;

26+

}

27+
28+

export function stableHash(value: unknown) {

29+

return sha256(JSON.stringify(normalizeForStableHash(value)) ?? "null");

30+

}

31+
32+

export function compareToolCallShape(

33+

left: readonly ParityToolCallShape[],

34+

right: readonly ParityToolCallShape[],

35+

): string | undefined {

36+

if (left.length !== right.length) {

37+

return `tool call count differs (${left.length} vs ${right.length})`;

38+

}

39+

for (let index = 0; index < left.length; index += 1) {

40+

const leftCall = left[index];

41+

const rightCall = right[index];

42+

if (!leftCall || !rightCall) {

43+

return `tool call row ${index + 1} missing`;

44+

}

45+

if (leftCall.tool !== rightCall.tool || leftCall.argsHash !== rightCall.argsHash) {

46+

return `tool call ${index + 1} differs (${leftCall.tool}/${leftCall.argsHash} vs ${rightCall.tool}/${rightCall.argsHash})`;

47+

}

48+

}

49+

return undefined;

50+

}

Original file line numberDiff line numberDiff line change

@@ -1,5 +1,4 @@

11

// Qa Lab plugin module implements runtime parity behavior.

2-

import { createHash } from "node:crypto";

32

import fs from "node:fs/promises";

43

import path from "node:path";

54

import { fetchWithSsrFGuard } from "openclaw/plugin-sdk/ssrf-runtime";

@@ -13,6 +12,7 @@ import {

1312

scanGatewayLogSentinels,

1413

type GatewayLogSentinelFinding,

1514

} from "./gateway-log-sentinel.js";

15+

import { compareToolCallShape, stableHash } from "./parity-shared.js";

1616
1717

export type RuntimeId = "openclaw" | "codex";

1818

@@ -144,29 +144,6 @@ function normalizeTextForParity(text: string) {

144144

return text.replace(/\s+/gu, " ").trim();

145145

}

146146
147-

function sha256(value: string) {

148-

return createHash("sha256").update(value).digest("hex");

149-

}

150-
151-

function normalizeForStableHash(value: unknown): unknown {

152-

if (Array.isArray(value)) {

153-

return value.map((entry) => normalizeForStableHash(entry));

154-

}

155-

if (value && typeof value === "object") {

156-

const record = value as Record<string, unknown>;

157-

return Object.fromEntries(

158-

Object.keys(record)

159-

.toSorted((left, right) => left.localeCompare(right))

160-

.map((key) => [key, normalizeForStableHash(record[key])]),

161-

);

162-

}

163-

return value;

164-

}

165-
166-

function stableHash(value: unknown) {

167-

return sha256(JSON.stringify(normalizeForStableHash(value)) ?? "null");

168-

}

169-
170147

function readUsageTotals(raw: unknown): RuntimeParityUsage {

171148

const usage = isMessageRecord(raw) ? raw : {};

172149

const inputTokens =

@@ -713,26 +690,6 @@ function aggregateUsage(records: RuntimeParityTranscriptRecord[]): RuntimeParity

713690

return totals;

714691

}

715692
716-

function compareToolCallShape(

717-

left: RuntimeParityToolCall[],

718-

right: RuntimeParityToolCall[],

719-

): string | undefined {

720-

if (left.length !== right.length) {

721-

return `tool call count differs (${left.length} vs ${right.length})`;

722-

}

723-

for (let index = 0; index < left.length; index += 1) {

724-

const leftCall = left[index];

725-

const rightCall = right[index];

726-

if (!leftCall || !rightCall) {

727-

return `tool call row ${index + 1} missing`;

728-

}

729-

if (leftCall.tool !== rightCall.tool || leftCall.argsHash !== rightCall.argsHash) {

730-

return `tool call ${index + 1} differs (${leftCall.tool}/${leftCall.argsHash} vs ${rightCall.tool}/${rightCall.argsHash})`;

731-

}

732-

}

733-

return undefined;

734-

}

735-
736693

function compareToolResultShape(

737694

left: RuntimeParityToolCall[],

738695

right: RuntimeParityToolCall[],