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

推荐订阅源

M
MIT News - Artificial intelligence
罗磊的独立博客
Hugging Face - Blog
Hugging Face - Blog
J
Java Code Geeks
G
Google Developers Blog
美团技术团队
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
腾讯CDC
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
T
The Blog of Author Tim Ferriss
月光博客
月光博客
B
Blog
WordPress大学
WordPress大学
云风的 BLOG
云风的 BLOG
博客园_首页
人人都是产品经理
人人都是产品经理
aimingoo的专栏
aimingoo的专栏
Y
Y Combinator Blog
Jina AI
Jina AI
S
SegmentFault 最新的问题
H
Help Net Security
博客园 - 聂微东
Microsoft Azure Blog
Microsoft Azure Blog
Google DeepMind News
Google DeepMind News

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(gateway): capture codex bind outbound replies · open...
vincentkoc · 2026-05-06 · via Recent Commits to openclaw:main

@@ -4,6 +4,7 @@ import os from "node:os";

44

import path from "node:path";

55

import { describe, it } from "vitest";

66

import { isLiveTestEnabled } from "../agents/live-test-helpers.js";

7+

import type { ChannelOutboundContext } from "../channels/plugins/types.public.js";

78

import { clearConfigCache, clearRuntimeConfigSnapshot } from "../config/config.js";

89

import type { OpenClawConfig } from "../config/types.openclaw.js";

910

import { isTruthyEnvValue } from "../infra/env.js";

@@ -31,7 +32,14 @@ const CODEX_BIND_TIMEOUT_MS = 10 * 60_000;

3132

const CODEX_BIND_REQUEST_TIMEOUT_MS = 180_000;

3233

const DEFAULT_CODEX_BIND_MODEL = "gpt-5.4";

333434-

function createSlackCurrentConversationBindingRegistry() {

35+

type CapturedOutboundReply = {

36+

accountId?: string;

37+

text: string;

38+

threadId?: string | number;

39+

to: string;

40+

};

41+42+

function createSlackCurrentConversationBindingRegistry(outboundReplies: CapturedOutboundReply[]) {

3543

return createTestRegistry([

3644

{

3745

pluginId: "slack",

@@ -54,6 +62,18 @@ function createSlackCurrentConversationBindingRegistry() {

5462

conversationBindings: {

5563

supportsCurrentConversationBinding: true,

5664

},

65+

outbound: {

66+

deliveryMode: "direct",

67+

sendText: async ({ accountId, text, threadId, to }: ChannelOutboundContext) => {

68+

outboundReplies.push({

69+

...(accountId ? { accountId } : {}),

70+

text,

71+

...(threadId != null ? { threadId } : {}),

72+

to,

73+

});

74+

return { channel: "slack", messageId: `slack-${outboundReplies.length}` };

75+

},

76+

},

5777

bindings: {

5878

compileConfiguredBinding: () => null,

5979

matchInboundConversation: () => null,

@@ -104,6 +124,36 @@ function formatAssistantTextPreview(texts: string[], maxChars = 800): string {

104124

return combined.length <= maxChars ? combined : combined.slice(-maxChars);

105125

}

106126127+

async function waitForOutboundText(params: {

128+

replies: CapturedOutboundReply[];

129+

contains: string;

130+

minReplyCount?: number;

131+

timeoutMs?: number;

132+

}): Promise<{ outboundTexts: string[]; matchedText: string }> {

133+

const timeoutMs = params.timeoutMs ?? 60_000;

134+

const startedAt = Date.now();

135+136+

while (Date.now() - startedAt < timeoutMs) {

137+

const outboundTexts = params.replies

138+

.map((reply) => reply.text)

139+

.filter((value) => value.trim().length > 0);

140+

const minReplyCount = params.minReplyCount ?? 1;

141+

const matchedText = outboundTexts

142+

.slice(Math.max(0, minReplyCount - 1))

143+

.find((text) => text.includes(params.contains));

144+

if (outboundTexts.length >= minReplyCount && matchedText) {

145+

return { outboundTexts, matchedText };

146+

}

147+

await sleep(500);

148+

}

149+150+

throw new Error(

151+

`timed out waiting for outbound text containing ${params.contains}: ${formatAssistantTextPreview(

152+

params.replies.map((reply) => reply.text),

153+

)}`,

154+

);

155+

}

156+107157

function restoreEnvVar(name: string, value: string | undefined): void {

108158

if (value === undefined) {

109159

delete process.env[name];

@@ -327,6 +377,7 @@ describeLive("gateway live (native Codex conversation binding)", () => {

327377

const conversationId = `user:${slackUserId}`;

328378

const bindModel =

329379

process.env.OPENCLAW_LIVE_CODEX_BIND_MODEL?.trim() || DEFAULT_CODEX_BIND_MODEL;

380+

const outboundReplies: CapturedOutboundReply[] = [];

330381331382

await fs.mkdir(workspace, { recursive: true });

332383

await fs.writeFile(

@@ -374,7 +425,7 @@ describeLive("gateway live (native Codex conversation binding)", () => {

374425

requestTimeoutMs: CODEX_BIND_REQUEST_TIMEOUT_MS,

375426

clientDisplayName: "vitest-codex-bind-live",

376427

});

377-

const channelRegistry = createSlackCurrentConversationBindingRegistry();

428+

const channelRegistry = createSlackCurrentConversationBindingRegistry(outboundReplies);

378429

pinActivePluginChannelRegistry(channelRegistry);

379430380431

try {

@@ -394,9 +445,8 @@ describeLive("gateway live (native Codex conversation binding)", () => {

394445

originatingTo: conversationId,

395446

originatingAccountId: accountId,

396447

});

397-

const bindHistory = await waitForAssistantText({

398-

client,

399-

sessionKey,

448+

const bindReply = await waitForOutboundText({

449+

replies: outboundReplies,

400450

contains: "Bound this conversation to Codex thread",

401451

timeoutMs: CODEX_BIND_REQUEST_TIMEOUT_MS,

402452

});

@@ -405,7 +455,7 @@ describeLive("gateway live (native Codex conversation binding)", () => {

405455

accountId,

406456

conversationId,

407457

});

408-

let commandAssistantCount = bindHistory.assistantTexts.length;

458+

let commandReplyCount = bindReply.outboundTexts.length;

409459410460

const sendCodexCommand = async (message: string, contains: string, timeoutMs = 60_000) => {

411461

await sendChatAndWait({

@@ -417,14 +467,13 @@ describeLive("gateway live (native Codex conversation binding)", () => {

417467

originatingTo: conversationId,

418468

originatingAccountId: accountId,

419469

});

420-

const result = await waitForAssistantText({

421-

client,

422-

sessionKey,

470+

const result = await waitForOutboundText({

471+

replies: outboundReplies,

423472

contains,

424-

minAssistantCount: commandAssistantCount + 1,

473+

minReplyCount: commandReplyCount + 1,

425474

timeoutMs,

426475

});

427-

commandAssistantCount = result.assistantTexts.length;

476+

commandReplyCount = result.outboundTexts.length;

428477

return result;

429478

};

430479

@@ -442,9 +491,9 @@ describeLive("gateway live (native Codex conversation binding)", () => {

442491

await sendCodexCommand("/codex stop", "No active Codex run to stop.");

443492444493

const bindingStatus = await sendCodexCommand("/codex binding", "- Fast: on");

445-

if (!bindingStatus.matchedAssistantText.includes("- Permissions: default")) {

494+

if (!bindingStatus.matchedText.includes("- Permissions: default")) {

446495

throw new Error(

447-

`binding status did not include default permissions: ${bindingStatus.matchedAssistantText}`,

496+

`binding status did not include default permissions: ${bindingStatus.matchedText}`,

448497

);

449498

}

450499