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

推荐订阅源

WordPress大学
WordPress大学
GbyAI
GbyAI
P
Proofpoint News Feed
B
Blog
MyScale Blog
MyScale Blog
V
V2EX
B
Blog RSS Feed
Microsoft Security Blog
Microsoft Security Blog
量子位
Jina AI
Jina AI
博客园 - 叶小钗
Recent Announcements
Recent Announcements
有赞技术团队
有赞技术团队
罗磊的独立博客
L
LangChain Blog
I
InfoQ
云风的 BLOG
云风的 BLOG
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
人人都是产品经理
人人都是产品经理
小众软件
小众软件
V
Visual Studio Blog
月光博客
月光博客
The Cloudflare 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
fix(line): truncate action fields on code-point boundarie...
ly-wang19 · 2026-06-29 · via Recent Commits to openclaw:main
11

// Line tests cover message cards plugin behavior.

22

import { describe, expect, it } from "vitest";

3+

import { datetimePickerAction, postbackAction, uriAction } from "./actions.js";

4+

import { registerLineCardCommand } from "./card-command.js";

35

import {

46

createActionCard,

57

createCarousel,

@@ -8,6 +10,7 @@ import {

810

createImageCard,

911

createInfoCard,

1012

createListCard,

13+

createMediaPlayerCard,

1114

} from "./flex-templates.js";

1215

import {

1316

createConfirmTemplate,

@@ -272,3 +275,127 @@ describe("flex cards", () => {

272275

expect(body.contents).toHaveLength(3);

273276

});

274277

});

278+279+

describe("action label/data surrogate-safe truncation", () => {

280+

const loneHighSurrogate = /[\uD800-\uDBFF](?![\uDC00-\uDFFF])/;

281+

// 19 ASCII chars + 😀 (U+1F600, two UTF-16 code units) = 21 code units; a raw

282+

// .slice(0, 20) would keep the first 19 chars plus the lone high surrogate.

283+

const labelWithEmoji = "1234567890123456789😀";

284+285+

it("messageAction drops a half emoji instead of leaving a lone surrogate", () => {

286+

const action = messageAction(labelWithEmoji) as { label: string };

287+288+

expect(action.label).toBe("1234567890123456789");

289+

expect(loneHighSurrogate.test(action.label)).toBe(false);

290+

});

291+292+

it("messageAction leaves a short ASCII label unchanged", () => {

293+

const action = messageAction("Yes");

294+295+

expect(action.label).toBe("Yes");

296+

});

297+298+

it("uriAction drops a half emoji instead of leaving a lone surrogate", () => {

299+

const action = uriAction(labelWithEmoji, "https://example.com") as { label: string };

300+301+

expect(action.label).toBe("1234567890123456789");

302+

expect(loneHighSurrogate.test(action.label)).toBe(false);

303+

});

304+305+

it("postbackAction truncates label and data on surrogate boundaries", () => {

306+

// 299 ASCII chars + 😀 = 301 code units; the 300-unit slice cuts the emoji.

307+

const data = `${"d".repeat(299)}😀`;

308+

const action = postbackAction(labelWithEmoji, data) as {

309+

label: string;

310+

data: string;

311+

};

312+313+

expect(action.label).toBe("1234567890123456789");

314+

expect(loneHighSurrogate.test(action.label)).toBe(false);

315+

expect(action.data).toBe("d".repeat(299));

316+

expect(loneHighSurrogate.test(action.data)).toBe(false);

317+

});

318+319+

it("postbackAction truncates displayText on surrogate boundaries but keeps undefined", () => {

320+

const displayText = `${"t".repeat(299)}😀`;

321+

const withDisplay = postbackAction("Label", "data", displayText) as {

322+

displayText?: string;

323+

};

324+

const withoutDisplay = postbackAction("Label", "data") as { displayText?: string };

325+326+

expect(withDisplay.displayText).toBe("t".repeat(299));

327+

expect(loneHighSurrogate.test(withDisplay.displayText ?? "")).toBe(false);

328+

expect(withoutDisplay.displayText).toBeUndefined();

329+

});

330+331+

it("datetimePickerAction truncates label and data on surrogate boundaries", () => {

332+

const data = `${"d".repeat(299)}😀`;

333+

const action = datetimePickerAction(labelWithEmoji, data, "datetime") as {

334+

label: string;

335+

data: string;

336+

};

337+338+

expect(action.label).toBe("1234567890123456789");

339+

expect(loneHighSurrogate.test(action.label)).toBe(false);

340+

expect(action.data).toBe("d".repeat(299));

341+

expect(loneHighSurrogate.test(action.data)).toBe(false);

342+

});

343+344+

it("/card action command uses surrogate-safe labels and postback data", async () => {

345+

const registerCommand = (command: unknown) => {

346+

const { handler } = command as {

347+

handler: (ctx: { args: string; channel: string }) => Promise<unknown>;

348+

};

349+

return handler({

350+

channel: "line",

351+

args: `action "Menu" "Body" --actions "${labelWithEmoji}|k=${"d".repeat(297)}😀"`,

352+

});

353+

};

354+

const result = (await registerCommandWithHandler(registerCommand)) as {

355+

channelData: {

356+

line: {

357+

flexMessage: {

358+

contents: { footer: { contents: Array<{ action: { label: string; data: string } }> } };

359+

};

360+

};

361+

};

362+

};

363+

const action = result.channelData.line.flexMessage.contents.footer.contents[0].action;

364+365+

expect(action.label).toBe("1234567890123456789");

366+

expect(loneHighSurrogate.test(action.label)).toBe(false);

367+

expect(action.data).toBe(`k=${"d".repeat(297)}`);

368+

expect(loneHighSurrogate.test(action.data)).toBe(false);

369+

});

370+371+

it("media control postback labels truncate on surrogate boundaries", () => {

372+

const card = createMediaPlayerCard({

373+

title: "Track",

374+

controls: {

375+

play: { data: "play" },

376+

},

377+

extraActions: [{ label: `${"x".repeat(14)}😀`, data: "extra" }],

378+

});

379+

const footer = card.footer as {

380+

contents: Array<{ contents?: Array<{ action?: { data?: string; label: string } }> }>;

381+

};

382+

const extraAction = footer.contents

383+

.flatMap((content) => content.contents ?? [])

384+

.find((button) => button.action?.data === "extra")?.action;

385+386+

expect(extraAction?.label).toBe("x".repeat(14));

387+

expect(loneHighSurrogate.test(extraAction?.label ?? "")).toBe(false);

388+

});

389+

});

390+391+

async function registerCommandWithHandler(

392+

runHandler: (command: unknown) => Promise<unknown>,

393+

): Promise<unknown> {

394+

let result: unknown;

395+

registerLineCardCommand({

396+

registerCommand(command: unknown) {

397+

result = runHandler(command);

398+

},

399+

} as never);

400+

return result;

401+

}