mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-20 02:41:41 +00:00
* fix(markdown): align code tables by display width Co-authored-by: Sparkyrider <will@willthings.com> * fix(terminal): distinguish emoji presentation width Co-authored-by: Sparkyrider <will@willthings.com> * fix(terminal): count only flag pairs as wide * refactor(terminal): validate emoji grapheme sequences * test(terminal): cover text presentation selectors * test(terminal): cover wide text presentation base * chore(changelog): defer release note --------- Co-authored-by: Peter Steinberger <steipete@gmail.com>
135 lines
3.6 KiB
TypeScript
135 lines
3.6 KiB
TypeScript
// Markdown Core tests cover ir.table code behavior.
|
||
import { describe, expect, it } from "vitest";
|
||
import { markdownToIR } from "./ir.js";
|
||
|
||
describe("markdownToIR tableMode code", () => {
|
||
it("aligns CJK and emoji cells by display width", () => {
|
||
const md = `
|
||
| Kind | Value |
|
||
| --- | --- |
|
||
| 类型 | Frontend |
|
||
| 👨👩👧👦 | Family |
|
||
`.trim();
|
||
|
||
const ir = markdownToIR(md, { tableMode: "code" });
|
||
|
||
expect(ir.text).toBe(
|
||
[
|
||
"| Kind | Value |",
|
||
"| ---- | -------- |",
|
||
"| 类型 | Frontend |",
|
||
"| 👨👩👧👦 | Family |",
|
||
"",
|
||
].join("\n"),
|
||
);
|
||
});
|
||
|
||
it("keeps text-presentation and incomplete emoji sequences narrow", () => {
|
||
const md = `
|
||
| I | L |
|
||
| --- | --- |
|
||
| © | text |
|
||
| 1️ | selector |
|
||
| A | ascii |
|
||
`.trim();
|
||
|
||
const ir = markdownToIR(md, { tableMode: "code" });
|
||
|
||
expect(ir.text).toBe(
|
||
[
|
||
"| I | L |",
|
||
"| --- | -------- |",
|
||
"| © | text |",
|
||
"| 1️ | selector |",
|
||
"| A | ascii |",
|
||
"",
|
||
].join("\n"),
|
||
);
|
||
});
|
||
|
||
it("should not have overlapping styles when cell has bold text", () => {
|
||
const md = `
|
||
| Name | Value |
|
||
|------|-------|
|
||
| **Bold** | Normal |
|
||
`.trim();
|
||
|
||
const ir = markdownToIR(md, { tableMode: "code" });
|
||
|
||
// Check for overlapping styles
|
||
const codeBlockSpan = ir.styles.find((s) => s.style === "code_block");
|
||
const boldSpan = ir.styles.find((s) => s.style === "bold");
|
||
|
||
// Either:
|
||
// 1. There should be no bold spans in code mode (inner styles stripped), OR
|
||
// 2. If bold spans exist, they should not overlap with code_block span
|
||
if (codeBlockSpan && boldSpan) {
|
||
// Check for overlap
|
||
const overlaps = boldSpan.start < codeBlockSpan.end && boldSpan.end > codeBlockSpan.start;
|
||
// Overlapping styles are the bug - this should fail until fixed
|
||
expect(overlaps).toBe(false);
|
||
}
|
||
});
|
||
|
||
it("should not have overlapping styles when cell has italic text", () => {
|
||
const md = `
|
||
| Name | Value |
|
||
|------|-------|
|
||
| *Italic* | Normal |
|
||
`.trim();
|
||
|
||
const ir = markdownToIR(md, { tableMode: "code" });
|
||
|
||
const codeBlockSpan = ir.styles.find((s) => s.style === "code_block");
|
||
const italicSpan = ir.styles.find((s) => s.style === "italic");
|
||
|
||
if (codeBlockSpan && italicSpan) {
|
||
const overlaps = italicSpan.start < codeBlockSpan.end && italicSpan.end > codeBlockSpan.start;
|
||
expect(overlaps).toBe(false);
|
||
}
|
||
});
|
||
|
||
it("should not have overlapping styles when cell has inline code", () => {
|
||
const md = `
|
||
| Name | Value |
|
||
|------|-------|
|
||
| \`code\` | Normal |
|
||
`.trim();
|
||
|
||
const ir = markdownToIR(md, { tableMode: "code" });
|
||
|
||
const codeBlockSpan = ir.styles.find((s) => s.style === "code_block");
|
||
const codeSpan = ir.styles.find((s) => s.style === "code");
|
||
|
||
if (codeBlockSpan && codeSpan) {
|
||
const overlaps = codeSpan.start < codeBlockSpan.end && codeSpan.end > codeBlockSpan.start;
|
||
expect(overlaps).toBe(false);
|
||
}
|
||
});
|
||
|
||
it("should not have overlapping styles with multiple styled cells", () => {
|
||
const md = `
|
||
| Name | Value |
|
||
|------|-------|
|
||
| **A** | *B* |
|
||
| _C_ | ~~D~~ |
|
||
`.trim();
|
||
|
||
const ir = markdownToIR(md, { tableMode: "code" });
|
||
|
||
const codeBlockSpan = ir.styles.find((s) => s.style === "code_block");
|
||
if (!codeBlockSpan) {
|
||
return;
|
||
}
|
||
|
||
// Check that no non-code_block style overlaps with code_block
|
||
for (const style of ir.styles) {
|
||
if (style.style === "code_block") {
|
||
continue;
|
||
}
|
||
const overlaps = style.start < codeBlockSpan.end && style.end > codeBlockSpan.start;
|
||
expect(overlaps).toBe(false);
|
||
}
|
||
});
|
||
});
|