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

推荐订阅源

奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Blog — PlanetScale
Blog — PlanetScale
小众软件
小众软件
F
Fortinet All Blogs
博客园 - 叶小钗
博客园_首页
D
DataBreaches.Net
Apple Machine Learning Research
Apple Machine Learning Research
U
Unit 42
爱范儿
爱范儿
aimingoo的专栏
aimingoo的专栏
博客园 - Franky
Martin Fowler
Martin Fowler
酷 壳 – CoolShell
酷 壳 – CoolShell
The Cloudflare Blog
A
About on SuperTechFans
Google DeepMind News
Google DeepMind News
Microsoft Security Blog
Microsoft Security Blog
IT之家
IT之家
M
MIT News - Artificial intelligence
有赞技术团队
有赞技术团队
博客园 - 【当耐特】
S
SegmentFault 最新的问题
Hugging Face - Blog
Hugging Face - 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
refactor(qa): share mantis phase timer · openclaw/opencla...
vincentkoc · 2026-06-20 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -0,0 +1,52 @@

1+

// Qa Lab plugin module implements shared Mantis phase timing behavior.

2+

export type MantisPhaseTiming = {

3+

durationMs: number;

4+

finishedAt: string;

5+

name: string;

6+

startedAt: string;

7+

status: "accepted" | "fail" | "pass";

8+

};

9+
10+

export type MantisPhaseTimings = {

11+

phases: MantisPhaseTiming[];

12+

totalMs: number;

13+

};

14+
15+

export function createPhaseTimer(startedAt: Date) {

16+

const phases: MantisPhaseTiming[] = [];

17+

const origin = startedAt.getTime();

18+

function recordPhase(name: string, phaseStarted: Date, status: MantisPhaseTiming["status"]) {

19+

const phaseFinished = new Date();

20+

phases.push({

21+

durationMs: phaseFinished.getTime() - phaseStarted.getTime(),

22+

finishedAt: phaseFinished.toISOString(),

23+

name,

24+

startedAt: phaseStarted.toISOString(),

25+

status,

26+

});

27+

}

28+

async function timePhase<T>(name: string, run: () => Promise<T>): Promise<T> {

29+

const phaseStarted = new Date();

30+

try {

31+

const result = await run();

32+

recordPhase(name, phaseStarted, "pass");

33+

return result;

34+

} catch (error) {

35+

recordPhase(name, phaseStarted, "fail");

36+

throw error;

37+

}

38+

}

39+

function snapshot(now = new Date()): MantisPhaseTimings {

40+

return {

41+

phases: [...phases],

42+

totalMs: now.getTime() - origin,

43+

};

44+

}

45+

function updatePhaseStatus(name: string, status: MantisPhaseTiming["status"]) {

46+

const phase = phases.findLast((entry) => entry.name === name);

47+

if (phase) {

48+

phase.status = status;

49+

}

50+

}

51+

return { recordPhase, snapshot, timePhase, updatePhaseStatus };

52+

}

Original file line numberDiff line numberDiff line change

@@ -20,6 +20,7 @@ import {

2020

stopCrabbox,

2121

warmupCrabbox,

2222

} from "./crabbox-runtime.js";

23+

import { createPhaseTimer, type MantisPhaseTimings } from "../mantis-phase-timer.runtime.js";

2324
2425

export type MantisSlackDesktopSmokeOptions = {

2526

alternateModel?: string;

@@ -103,19 +104,6 @@ type MantisSlackDesktopSmokeSummary = {

103104

warning?: string;

104105

};

105106
106-

type MantisPhaseTiming = {

107-

durationMs: number;

108-

finishedAt: string;

109-

name: string;

110-

startedAt: string;

111-

status: "accepted" | "fail" | "pass";

112-

};

113-
114-

type MantisPhaseTimings = {

115-

phases: MantisPhaseTiming[];

116-

totalMs: number;

117-

};

118-
119107

type SlackDesktopRemoteMetadata = {

120108

gatewayAlive?: boolean;

121109

gatewayPid?: string;

@@ -188,45 +176,6 @@ function normalizeHydrateMode(

188176

throw new Error(`Unsupported Mantis Slack desktop hydrate mode: ${value}`);

189177

}

190178
191-

function createPhaseTimer(startedAt: Date) {

192-

const phases: MantisPhaseTiming[] = [];

193-

const origin = startedAt.getTime();

194-

function recordPhase(name: string, phaseStarted: Date, status: MantisPhaseTiming["status"]) {

195-

const phaseFinished = new Date();

196-

phases.push({

197-

durationMs: phaseFinished.getTime() - phaseStarted.getTime(),

198-

finishedAt: phaseFinished.toISOString(),

199-

name,

200-

startedAt: phaseStarted.toISOString(),

201-

status,

202-

});

203-

}

204-

async function timePhase<T>(name: string, run: () => Promise<T>): Promise<T> {

205-

const phaseStarted = new Date();

206-

try {

207-

const result = await run();

208-

recordPhase(name, phaseStarted, "pass");

209-

return result;

210-

} catch (error) {

211-

recordPhase(name, phaseStarted, "fail");

212-

throw error;

213-

}

214-

}

215-

function snapshot(now = new Date()): MantisPhaseTimings {

216-

return {

217-

phases: [...phases],

218-

totalMs: now.getTime() - origin,

219-

};

220-

}

221-

function updatePhaseStatus(name: string, status: MantisPhaseTiming["status"]) {

222-

const phase = phases.findLast((entry) => entry.name === name);

223-

if (phase) {

224-

phase.status = status;

225-

}

226-

}

227-

return { recordPhase, snapshot, timePhase, updatePhaseStatus };

228-

}

229-
230179

function defaultOutputDir(repoRoot: string, startedAt: Date) {

231180

const stamp = startedAt.toISOString().replace(/[:.]/gu, "-");

232181

return path.join(repoRoot, ".artifacts", "qa-e2e", "mantis", `slack-desktop-${stamp}`);

Original file line numberDiff line numberDiff line change

@@ -20,6 +20,7 @@ import {

2020

stopCrabbox,

2121

warmupCrabbox,

2222

} from "./crabbox-runtime.js";

23+

import { createPhaseTimer, type MantisPhaseTimings } from "../mantis-phase-timer.runtime.js";

2324
2425

export type MantisTelegramDesktopBuilderOptions = {

2526

commandRunner?: CommandRunner;

@@ -95,19 +96,6 @@ type MantisTelegramDesktopBuilderSummary = {

9596

timings: MantisPhaseTimings;

9697

};

9798
98-

type MantisPhaseTiming = {

99-

durationMs: number;

100-

finishedAt: string;

101-

name: string;

102-

startedAt: string;

103-

status: "accepted" | "fail" | "pass";

104-

};

105-
106-

type MantisPhaseTimings = {

107-

phases: MantisPhaseTiming[];

108-

totalMs: number;

109-

};

110-
11199

type TelegramDesktopRemoteMetadata = {

112100

gatewayAlive?: boolean;

113101

gatewayPid?: string;

@@ -161,45 +149,6 @@ function normalizeHydrateMode(

161149

throw new Error(`Unsupported Mantis Telegram desktop hydrate mode: ${value}`);

162150

}

163151
164-

function createPhaseTimer(startedAt: Date) {

165-

const phases: MantisPhaseTiming[] = [];

166-

const origin = startedAt.getTime();

167-

function recordPhase(name: string, phaseStarted: Date, status: MantisPhaseTiming["status"]) {

168-

const phaseFinished = new Date();

169-

phases.push({

170-

durationMs: phaseFinished.getTime() - phaseStarted.getTime(),

171-

finishedAt: phaseFinished.toISOString(),

172-

name,

173-

startedAt: phaseStarted.toISOString(),

174-

status,

175-

});

176-

}

177-

async function timePhase<T>(name: string, run: () => Promise<T>): Promise<T> {

178-

const phaseStarted = new Date();

179-

try {

180-

const result = await run();

181-

recordPhase(name, phaseStarted, "pass");

182-

return result;

183-

} catch (error) {

184-

recordPhase(name, phaseStarted, "fail");

185-

throw error;

186-

}

187-

}

188-

function snapshot(now = new Date()): MantisPhaseTimings {

189-

return {

190-

phases: [...phases],

191-

totalMs: now.getTime() - origin,

192-

};

193-

}

194-

function updatePhaseStatus(name: string, status: MantisPhaseTiming["status"]) {

195-

const phase = phases.findLast((entry) => entry.name === name);

196-

if (phase) {

197-

phase.status = status;

198-

}

199-

}

200-

return { recordPhase, snapshot, timePhase, updatePhaseStatus };

201-

}

202-
203152

function defaultOutputDir(repoRoot: string, startedAt: Date) {

204153

const stamp = startedAt.toISOString().replace(/[:.]/gu, "-");

205154

return path.join(repoRoot, ".artifacts", "qa-e2e", "mantis", `telegram-desktop-${stamp}`);