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

推荐订阅源

MyScale Blog
MyScale Blog
J
Java Code Geeks
Vercel News
Vercel News
A
About on SuperTechFans
G
Google Developers Blog
C
Check Point Blog
腾讯CDC
N
Netflix TechBlog - Medium
博客园 - 司徒正美
S
SegmentFault 最新的问题
D
DataBreaches.Net
博客园_首页
美团技术团队
Stack Overflow Blog
Stack Overflow Blog
博客园 - 聂微东
量子位
雷峰网
雷峰网
IT之家
IT之家
小众软件
小众软件
Blog — PlanetScale
Blog — PlanetScale
博客园 - 三生石上(FineUI控件)
H
Help Net Security
宝玉的分享
宝玉的分享
博客园 - 叶小钗

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
perf(ui): surface chat ack server timing (#89801) · openc...
vincentkoc · 2026-06-03 · via Recent Commits to openclaw:main

@@ -66,9 +66,10 @@ function createDeferred<T>() {

66666767

async function withGatewayChatHarness(

6868

run: (ctx: { ws: GatewaySocket; createSessionDir: () => Promise<string> }) => Promise<void>,

69+

options?: { headers?: Record<string, string> },

6970

) {

7071

const tempDirs: string[] = [];

71-

const ws = await harness.openWs();

72+

const ws = await harness.openWs(options?.headers);

7273

const createSessionDir = async () => {

7374

const sessionDir = await fs.mkdtemp(path.join(os.tmpdir(), "openclaw-gw-"));

7475

tempDirs.push(sessionDir);

@@ -865,7 +866,14 @@ describe("gateway server chat", () => {

865866

{

866867

id: "first",

867868

ok: true,

868-

payload: { runId: "idem-active-a", status: "started" },

869+

payload: expect.objectContaining({

870+

runId: "idem-active-a",

871+

status: "started",

872+

serverTiming: {

873+

receivedToAckMs: expect.any(Number),

874+

loadSessionMs: expect.any(Number),

875+

},

876+

}),

869877

error: undefined,

870878

},

871879

]);

@@ -877,7 +885,14 @@ describe("gateway server chat", () => {

877885

{

878886

id: "first",

879887

ok: true,

880-

payload: { runId: "idem-active-a", status: "started" },

888+

payload: expect.objectContaining({

889+

runId: "idem-active-a",

890+

status: "started",

891+

serverTiming: {

892+

receivedToAckMs: expect.any(Number),

893+

loadSessionMs: expect.any(Number),

894+

},

895+

}),

881896

error: undefined,

882897

},

883898

{

@@ -993,13 +1008,27 @@ describe("gateway server chat", () => {

9931008

{

9941009

id: "first",

9951010

ok: true,

996-

payload: { runId: "idem-sequential-a", status: "started" },

1011+

payload: expect.objectContaining({

1012+

runId: "idem-sequential-a",

1013+

status: "started",

1014+

serverTiming: {

1015+

receivedToAckMs: expect.any(Number),

1016+

loadSessionMs: expect.any(Number),

1017+

},

1018+

}),

9971019

error: undefined,

9981020

},

9991021

{

10001022

id: "second",

10011023

ok: true,

1002-

payload: { runId: "idem-sequential-b", status: "started" },

1024+

payload: expect.objectContaining({

1025+

runId: "idem-sequential-b",

1026+

status: "started",

1027+

serverTiming: {

1028+

receivedToAckMs: expect.any(Number),

1029+

loadSessionMs: expect.any(Number),

1030+

},

1031+

}),

10031032

error: undefined,

10041033

},

10051034

]);

@@ -1326,47 +1355,70 @@ describe("gateway server chat", () => {

13261355

process.env.OPENCLAW_DIAGNOSTICS = "timeline";

13271356

process.env.OPENCLAW_DIAGNOSTICS_TIMELINE_PATH = timelinePath;

13281357

try {

1329-

await withGatewayChatHarness(async ({ ws, createSessionDir }) => {

1330-

const spy = getReplyFromConfig;

1331-

await connectOk(ws);

1358+

await withGatewayChatHarness(

1359+

async ({ ws, createSessionDir }) => {

1360+

const spy = getReplyFromConfig;

1361+

await connectOk(ws, {

1362+

client: {

1363+

id: GATEWAY_CLIENT_NAMES.CONTROL_UI,

1364+

version: "1.0.0",

1365+

platform: "web",

1366+

mode: GATEWAY_CLIENT_MODES.WEBCHAT,

1367+

},

1368+

});

133213691333-

await createSessionDir();

1334-

await writeMainSessionStore();

1335-

mockGetReplyFromConfigOnce(async () => undefined);

1370+

await createSessionDir();

1371+

await writeMainSessionStore();

1372+

mockGetReplyFromConfigOnce(async () => undefined);

133613731337-

const sendRes = await rpcReq(ws, "chat.send", {

1338-

sessionKey: "main",

1339-

message: "hello",

1340-

idempotencyKey: "idem-timeline",

1341-

});

1342-

expect(sendRes.ok).toBe(true);

1343-1344-

await vi.waitFor(() => {

1345-

expect(spy.mock.calls.length).toBeGreaterThan(0);

1346-

}, FAST_WAIT_OPTS);

1347-

await vi.waitFor(async () => {

1348-

const events = await readTimelineEvents(timelinePath);

1349-

const ackReady = events.find(

1350-

(event) =>

1351-

event.type === "mark" &&

1352-

event.name === "gateway.chat_send.ack_ready" &&

1353-

(event.attributes as Record<string, unknown> | undefined)?.runId === "idem-timeline",

1354-

);

1355-

expect(ackReady?.attributes).toMatchObject({

1374+

const sendRes = await rpcReq(ws, "chat.send", {

1375+

sessionKey: "main",

1376+

message: "hello",

1377+

idempotencyKey: "idem-timeline",

1378+

});

1379+

expect(sendRes.ok).toBe(true);

1380+

expect(sendRes.payload).toMatchObject({

13561381

runId: "idem-timeline",

1357-

ackStatus: "started",

1382+

status: "started",

1383+

serverTiming: {

1384+

receivedToAckMs: expect.any(Number),

1385+

loadSessionMs: expect.any(Number),

1386+

},

13581387

});

1359-

expect(

1360-

events.some(

1388+1389+

await vi.waitFor(() => {

1390+

expect(spy.mock.calls.length).toBeGreaterThan(0);

1391+

}, FAST_WAIT_OPTS);

1392+

await vi.waitFor(async () => {

1393+

const events = await readTimelineEvents(timelinePath);

1394+

const ackReady = events.find(

13611395

(event) =>

1362-

event.type === "span.end" &&

1363-

event.name === "gateway.chat_send.dispatch_inbound" &&

1396+

event.type === "mark" &&

1397+

event.name === "gateway.chat_send.ack_ready" &&

13641398

(event.attributes as Record<string, unknown> | undefined)?.runId ===

13651399

"idem-timeline",

1366-

),

1367-

).toBe(true);

1368-

}, FAST_WAIT_OPTS);

1369-

});

1400+

);

1401+

expect(ackReady?.attributes).toMatchObject({

1402+

runId: "idem-timeline",

1403+

ackStatus: "started",

1404+

serverReceivedToAckMs: expect.any(Number),

1405+

serverLoadSessionMs: expect.any(Number),

1406+

});

1407+

expect(

1408+

events.some(

1409+

(event) =>

1410+

event.type === "span.end" &&

1411+

event.name === "gateway.chat_send.dispatch_inbound" &&

1412+

(event.attributes as Record<string, unknown> | undefined)?.runId ===

1413+

"idem-timeline",

1414+

),

1415+

).toBe(true);

1416+

}, FAST_WAIT_OPTS);

1417+

},

1418+

{

1419+

headers: { origin: `http://127.0.0.1:${harness.port}` },

1420+

},

1421+

);

13701422

} finally {

13711423

if (previousDiagnostics === undefined) {

13721424

delete process.env.OPENCLAW_DIAGNOSTICS;

@@ -1382,6 +1434,43 @@ describe("gateway server chat", () => {

13821434

}

13831435

});

138414361437+

test("chat.send omits ACK server timing for public WebChat clients", async () => {

1438+

await withGatewayChatHarness(

1439+

async ({ ws, createSessionDir }) => {

1440+

await connectOk(ws, {

1441+

client: {

1442+

id: GATEWAY_CLIENT_NAMES.WEBCHAT_UI,

1443+

version: "1.0.0",

1444+

platform: "web",

1445+

mode: GATEWAY_CLIENT_MODES.WEBCHAT,

1446+

},

1447+

});

1448+1449+

await createSessionDir();

1450+

await writeMainSessionStore();

1451+

mockGetReplyFromConfigOnce(async () => undefined);

1452+1453+

const sendRes = await rpcReq(ws, "chat.send", {

1454+

sessionKey: "main",

1455+

message: "hello",

1456+

idempotencyKey: "idem-public-webchat",

1457+

});

1458+1459+

expect(sendRes.ok).toBe(true);

1460+

expect(sendRes.payload).toMatchObject({

1461+

runId: "idem-public-webchat",

1462+

status: "started",

1463+

});

1464+

expect(

1465+

(sendRes.payload as { serverTiming?: unknown } | undefined)?.serverTiming,

1466+

).toBeUndefined();

1467+

},

1468+

{

1469+

headers: { origin: `http://127.0.0.1:${harness.port}` },

1470+

},

1471+

);

1472+

});

1473+13851474

test("chat.history hard-caps single oversized nested payloads", async () => {

13861475

await withGatewayChatHarness(async ({ ws, createSessionDir }) => {

13871476

const historyMaxBytes = 64 * 1024;