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

推荐订阅源

博客园_首页
IT之家
IT之家
博客园 - Franky
Stack Overflow Blog
Stack Overflow Blog
宝玉的分享
宝玉的分享
Recent Announcements
Recent Announcements
Engineering at Meta
Engineering at Meta
S
SegmentFault 最新的问题
V
Visual Studio Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Last Week in AI
Last Week in AI
H
Help Net Security
V
V2EX
H
Hackread – Cybersecurity News, Data Breaches, AI and More
量子位
博客园 - 叶小钗
J
Java Code Geeks
博客园 - 【当耐特】
月光博客
月光博客
爱范儿
爱范儿
人人都是产品经理
人人都是产品经理
酷 壳 – CoolShell
酷 壳 – CoolShell
小众软件
小众软件

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: speed up embedded runner e2e mocks · openclaw/openc...
steipete · 2026-04-27 · via Recent Commits to openclaw:main

@@ -8,6 +8,11 @@ import { redactIdentifier } from "../logging/redact-identifier.js";

88

import type { AuthProfileFailureReason } from "./auth-profiles.js";

99

import { buildAttemptReplayMetadata } from "./pi-embedded-runner/run/incomplete-turn.js";

1010

import type { EmbeddedRunAttemptResult } from "./pi-embedded-runner/run/types.js";

11+

import {

12+

installEmbeddedRunnerBackoffE2eMocks,

13+

installEmbeddedRunnerBaseE2eMocks,

14+

installEmbeddedRunnerFastRunE2eMocks,

15+

} from "./test-helpers/pi-embedded-runner-e2e-mocks.js";

11161217

const runEmbeddedAttemptMock = vi.fn<(params: unknown) => Promise<EmbeddedRunAttemptResult>>();

1318

const resolveCopilotApiTokenMock = vi.fn();

@@ -22,96 +27,21 @@ const { computeBackoffMock, sleepWithAbortMock } = vi.hoisted(() => ({

2227

}));

23282429

const installRunEmbeddedMocks = () => {

25-

vi.doMock("../plugins/hook-runner-global.js", () => ({

26-

getGlobalHookRunner: vi.fn(() => undefined),

27-

}));

28-

vi.doMock("../context-engine/init.js", () => ({

29-

ensureContextEnginesInitialized: vi.fn(),

30-

}));

31-

vi.doMock("../context-engine/registry.js", () => ({

32-

resolveContextEngine: vi.fn(async () => ({

33-

dispose: async () => undefined,

34-

})),

35-

}));

36-

vi.doMock("./runtime-plugins.js", () => ({

37-

ensureRuntimePluginsLoaded: vi.fn(),

38-

}));

39-

vi.doMock("./harness/selection.js", () => ({

40-

selectAgentHarness: vi.fn((params: { provider?: string }) => ({

41-

id: params.provider === "codex-cli" ? "codex" : "pi",

42-

label: "Mock agent harness",

43-

supports: vi.fn(() => ({ supported: false })),

44-

runAttempt: vi.fn(),

45-

})),

46-

runAgentHarnessAttemptWithFallback: (params: unknown) => runEmbeddedAttemptMock(params),

47-

}));

48-

vi.doMock("./runtime-plan/build.js", () => ({

49-

buildAgentRuntimePlan: vi.fn(

50-

(params: {

51-

provider: string;

52-

modelId: string;

53-

modelApi?: string | null;

54-

harnessId?: string;

55-

sessionAuthProfileId?: string;

56-

}) => ({

57-

resolvedRef: {

58-

provider: params.provider,

59-

modelId: params.modelId,

60-

...(params.modelApi ? { modelApi: params.modelApi } : {}),

61-

...(params.harnessId ? { harnessId: params.harnessId } : {}),

62-

},

63-

auth: {

64-

providerForAuth: params.provider,

65-

authProfileProviderForAuth: params.sessionAuthProfileId?.split(":", 1)[0] ?? "",

66-

forwardedAuthProfileId: params.sessionAuthProfileId,

67-

},

68-

prompt: {

69-

provider: params.provider,

70-

modelId: params.modelId,

71-

resolveSystemPromptContribution: vi.fn(() => undefined),

72-

},

73-

tools: {

74-

normalize: vi.fn((tools: unknown[]) => tools),

75-

logDiagnostics: vi.fn(),

76-

},

77-

transcript: {

78-

policy: {

79-

sanitizeMode: "full",

80-

sanitizeToolCallIds: true,

81-

preserveNativeAnthropicToolUseIds: false,

82-

repairToolUseResultPairing: true,

83-

preserveSignatures: false,

84-

sanitizeThinkingSignatures: true,

85-

dropThinkingBlocks: false,

86-

applyGoogleTurnOrdering: false,

87-

validateGeminiTurns: false,

88-

validateAnthropicTurns: false,

89-

allowSyntheticToolResults: true,

90-

},

91-

resolvePolicy: vi.fn(() => undefined),

92-

},

93-

delivery: {

94-

isSilentPayload: vi.fn(() => false),

95-

resolveFollowupRoute: vi.fn(() => undefined),

96-

},

97-

outcome: {

98-

classifyRunResult: vi.fn(() => undefined),

99-

},

100-

transport: {

101-

extraParams: {},

102-

resolveExtraParams: vi.fn(() => ({})),

103-

},

104-

observability: {

105-

resolvedRef: `${params.provider}/${params.modelId}`,

106-

provider: params.provider,

107-

modelId: params.modelId,

108-

...(params.modelApi ? { modelApi: params.modelApi } : {}),

109-

...(params.harnessId ? { harnessId: params.harnessId } : {}),

110-

...(params.sessionAuthProfileId ? { authProfileId: params.sessionAuthProfileId } : {}),

111-

},

112-

}),

113-

),

114-

}));

30+

installEmbeddedRunnerBaseE2eMocks();

31+

installEmbeddedRunnerFastRunE2eMocks({

32+

runEmbeddedAttempt: (params) => runEmbeddedAttemptMock(params),

33+

prepareProviderRuntimeAuth: async (params) => {

34+

if (params.provider !== "github-copilot") {

35+

return undefined;

36+

}

37+

const token = await resolveCopilotApiTokenMock(params.context.apiKey);

38+

return {

39+

apiKey: token.token,

40+

baseUrl: token.baseUrl,

41+

expiresAt: token.expiresAt,

42+

};

43+

},

44+

});

11545

vi.doMock("./pi-embedded-runner/model.js", () => ({

11646

resolveModelAsync: async (provider: string, modelId: string) => ({

11747

model: {

@@ -134,38 +64,10 @@ const installRunEmbeddedMocks = () => {

13464

modelRegistry: {},

13565

}),

13666

}));

137-

vi.doMock("./pi-embedded-runner/run/attempt.js", () => ({

138-

runEmbeddedAttempt: (params: unknown) => runEmbeddedAttemptMock(params),

139-

}));

140-

vi.doMock("../plugins/provider-runtime.js", () => ({

141-

buildProviderMissingAuthMessageWithPlugin: vi.fn(() => undefined),

142-

prepareProviderRuntimeAuth: async (params: {

143-

provider: string;

144-

context: { apiKey: string };

145-

}) => {

146-

if (params.provider !== "github-copilot") {

147-

return undefined;

148-

}

149-

const token = await resolveCopilotApiTokenMock(params.context.apiKey);

150-

return {

151-

apiKey: token.token,

152-

baseUrl: token.baseUrl,

153-

expiresAt: token.expiresAt,

154-

};

155-

},

156-

resolveProviderAuthProfileId: vi.fn(() => undefined),

157-

resolveProviderCapabilitiesWithPlugin: vi.fn(() => undefined),

158-

resolveExternalAuthProfilesWithPlugins: vi.fn(() => []),

159-

resolveProviderSyntheticAuthWithPlugin: vi.fn(() => undefined),

160-

shouldDeferProviderSyntheticProfileAuthWithPlugin: vi.fn(() => false),

161-

}));

162-

vi.doMock("../infra/backoff.js", () => ({

163-

computeBackoff: (

164-

policy: { initialMs: number; maxMs: number; factor: number; jitter: number },

165-

attempt: number,

166-

) => computeBackoffMock(policy, attempt),

167-

sleepWithAbort: (ms: number, abortSignal?: AbortSignal) => sleepWithAbortMock(ms, abortSignal),

168-

}));

67+

installEmbeddedRunnerBackoffE2eMocks({

68+

computeBackoff: (policy, attempt) => computeBackoffMock(policy, attempt),

69+

sleepWithAbort: (ms, abortSignal) => sleepWithAbortMock(ms, abortSignal),

70+

});

16971

vi.doMock("./pi-embedded-runner/compact.js", () => ({

17072

compactEmbeddedPiSessionDirect: vi.fn(async () => {

17173

throw new Error("compact should not run in auth profile rotation tests");