test: port Ink text tests (13 passing, 4 skipped)
Adds 17 text tests from Ink: color (standard/hex/rgb/ansi256), background color, dim, bold, inversion, reactive remeasure, and edge cases. 4 tests skipped due to null-children yoga crash and constructor text lookup bug. Also fixes lastFrame() treating empty-string frames as undefined (Codex review feedback) and adds strip-ansi dev dependency. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -1,6 +1,9 @@
|
||||
import { defineComponent, shallowRef, nextTick } from "vue";
|
||||
import { expect, test } from "vite-plus/test";
|
||||
import { render } from "@vue-tui/testing";
|
||||
import { Text } from "@vue-tui/runtime";
|
||||
import { Box, Text } from "@vue-tui/runtime";
|
||||
import chalk from "chalk";
|
||||
import stripAnsi from "strip-ansi";
|
||||
|
||||
test("nested Text renders inline without independent layout", async () => {
|
||||
const { lastFrame } = await render(() => (
|
||||
@@ -18,3 +21,174 @@ test("CJK wide characters render without corruption", async () => {
|
||||
const frame = lastFrame()!;
|
||||
expect(frame).toContain("中文测试");
|
||||
});
|
||||
|
||||
// --- Ink text tests ---
|
||||
|
||||
test.skip("<Text> with undefined children — crashes yoga measure", async () => {
|
||||
const { lastFrame } = await render(
|
||||
defineComponent(() => () => <Text />),
|
||||
{ columns: 100 },
|
||||
);
|
||||
expect(lastFrame()).toBe("");
|
||||
});
|
||||
|
||||
test.skip("<Text> with null children — crashes yoga measure", async () => {
|
||||
const { lastFrame } = await render(
|
||||
defineComponent(() => () => <Text>{null}</Text>),
|
||||
{ columns: 100 },
|
||||
);
|
||||
expect(lastFrame()).toBe("");
|
||||
});
|
||||
|
||||
test("text with standard color", async () => {
|
||||
const { lastFrame } = await render(
|
||||
defineComponent(() => () => <Text color="green">Test</Text>),
|
||||
{ columns: 100 },
|
||||
);
|
||||
expect(lastFrame()).toBe(chalk.green("Test"));
|
||||
});
|
||||
|
||||
test("text with dim+bold", async () => {
|
||||
const { lastFrame } = await render(
|
||||
defineComponent(() => () => (
|
||||
<Text dimColor bold>
|
||||
Test
|
||||
</Text>
|
||||
)),
|
||||
{ columns: 100 },
|
||||
);
|
||||
expect(stripAnsi(lastFrame()!)).toBe("Test");
|
||||
expect(lastFrame()).not.toBe("Test");
|
||||
});
|
||||
|
||||
test("text with dimmed color", async () => {
|
||||
const { lastFrame } = await render(
|
||||
defineComponent(() => () => (
|
||||
<Text dimColor color="green">
|
||||
Test
|
||||
</Text>
|
||||
)),
|
||||
{ columns: 100 },
|
||||
);
|
||||
expect(lastFrame()).toBe(chalk.green.dim("Test"));
|
||||
});
|
||||
|
||||
test("text with hex color", async () => {
|
||||
const { lastFrame } = await render(
|
||||
defineComponent(() => () => <Text color="#FF8800">Test</Text>),
|
||||
{ columns: 100 },
|
||||
);
|
||||
expect(lastFrame()).toBe(chalk.hex("#FF8800")("Test"));
|
||||
});
|
||||
|
||||
test("text with rgb color", async () => {
|
||||
const { lastFrame } = await render(
|
||||
defineComponent(() => () => <Text color="rgb(255, 136, 0)">Test</Text>),
|
||||
{ columns: 100 },
|
||||
);
|
||||
expect(lastFrame()).toBe(chalk.rgb(255, 136, 0)("Test"));
|
||||
});
|
||||
|
||||
test("text with ansi256 color", async () => {
|
||||
const { lastFrame } = await render(
|
||||
defineComponent(() => () => <Text color="ansi256(194)">Test</Text>),
|
||||
{ columns: 100 },
|
||||
);
|
||||
expect(lastFrame()).toBe(chalk.ansi256(194)("Test"));
|
||||
});
|
||||
|
||||
test("text with standard background color", async () => {
|
||||
const { lastFrame } = await render(
|
||||
defineComponent(() => () => <Text backgroundColor="green">Test</Text>),
|
||||
{ columns: 100 },
|
||||
);
|
||||
expect(lastFrame()).toBe(chalk.bgGreen("Test"));
|
||||
});
|
||||
|
||||
test("text with hex background color", async () => {
|
||||
const { lastFrame } = await render(
|
||||
defineComponent(() => () => <Text backgroundColor="#FF8800">Test</Text>),
|
||||
{ columns: 100 },
|
||||
);
|
||||
expect(lastFrame()).toBe(chalk.bgHex("#FF8800")("Test"));
|
||||
});
|
||||
|
||||
test("text with rgb background color", async () => {
|
||||
const { lastFrame } = await render(
|
||||
defineComponent(() => () => <Text backgroundColor="rgb(255, 136, 0)">Test</Text>),
|
||||
{ columns: 100 },
|
||||
);
|
||||
expect(lastFrame()).toBe(chalk.bgRgb(255, 136, 0)("Test"));
|
||||
});
|
||||
|
||||
test("text with ansi256 background color", async () => {
|
||||
const { lastFrame } = await render(
|
||||
defineComponent(() => () => <Text backgroundColor="ansi256(194)">Test</Text>),
|
||||
{ columns: 100 },
|
||||
);
|
||||
expect(lastFrame()).toBe(chalk.bgAnsi256(194)("Test"));
|
||||
});
|
||||
|
||||
test("text with inversion", async () => {
|
||||
const { lastFrame } = await render(
|
||||
defineComponent(() => () => <Text inverse>Test</Text>),
|
||||
{ columns: 100 },
|
||||
);
|
||||
expect(lastFrame()).toBe(chalk.inverse("Test"));
|
||||
});
|
||||
|
||||
test("text with empty-to-nonempty sibling does not wrap", async () => {
|
||||
const show = shallowRef(false);
|
||||
const { lastFrame } = await render(
|
||||
defineComponent(() => () => (
|
||||
<Box>
|
||||
<Text>{show.value ? "x" : ""}hello</Text>
|
||||
</Box>
|
||||
)),
|
||||
{ columns: 100 },
|
||||
);
|
||||
expect(lastFrame()).toBe("hello");
|
||||
show.value = true;
|
||||
await nextTick();
|
||||
expect(lastFrame()).toBe("xhello");
|
||||
});
|
||||
|
||||
test("remeasure text when text is changed", async () => {
|
||||
const add = shallowRef(false);
|
||||
const { lastFrame } = await render(
|
||||
defineComponent(() => () => (
|
||||
<Box>
|
||||
<Text>{add.value ? "abcx" : "abc"}</Text>
|
||||
</Box>
|
||||
)),
|
||||
{ columns: 100 },
|
||||
);
|
||||
expect(lastFrame()).toBe("abc");
|
||||
add.value = true;
|
||||
await nextTick();
|
||||
expect(lastFrame()).toBe("abcx");
|
||||
});
|
||||
|
||||
test.skip("remeasure text when text nodes are changed — null child crashes yoga", async () => {
|
||||
const add = shallowRef(false);
|
||||
const { lastFrame } = await render(
|
||||
defineComponent(() => () => (
|
||||
<Box>
|
||||
<Text>abc{add.value ? <Text>x</Text> : null}</Text>
|
||||
</Box>
|
||||
)),
|
||||
{ columns: 100 },
|
||||
);
|
||||
expect(lastFrame()).toBe("abc");
|
||||
add.value = true;
|
||||
await nextTick();
|
||||
expect(lastFrame()).toBe("abcx");
|
||||
});
|
||||
|
||||
test.skip("text with content 'constructor' wraps correctly — bug in text node lookup", async () => {
|
||||
const { lastFrame } = await render(
|
||||
defineComponent(() => () => <Text>constructor</Text>),
|
||||
{ columns: 100 },
|
||||
);
|
||||
expect(lastFrame()).toBe("constructor");
|
||||
});
|
||||
|
||||
@@ -13,6 +13,7 @@
|
||||
"@vue-tui/runtime": "workspace:*",
|
||||
"@vue-tui/testing": "workspace:*",
|
||||
"chalk": "catalog:",
|
||||
"strip-ansi": "catalog:",
|
||||
"typescript": "^6.0.3",
|
||||
"vite-plus": "^0.1.22",
|
||||
"vue": "^3.5.34"
|
||||
|
||||
@@ -92,7 +92,7 @@ export async function render(
|
||||
return {
|
||||
lastFrame: (opts?: LastFrameOptions) => {
|
||||
const f = frames.at(-1);
|
||||
if (!f) return undefined;
|
||||
if (f === undefined) return undefined;
|
||||
if (opts?.raw) return f;
|
||||
if (opts?.trimLines)
|
||||
return f
|
||||
|
||||
Generated
+7
-1
@@ -15,8 +15,11 @@ catalogs:
|
||||
chalk:
|
||||
specifier: ^5.6.2
|
||||
version: 5.6.2
|
||||
strip-ansi:
|
||||
specifier: ^7.2.0
|
||||
version: 7.2.0
|
||||
vite-plus:
|
||||
specifier: latest
|
||||
specifier: ^0.1.22
|
||||
version: 0.1.22
|
||||
|
||||
overrides:
|
||||
@@ -192,6 +195,9 @@ importers:
|
||||
chalk:
|
||||
specifier: 'catalog:'
|
||||
version: 5.6.2
|
||||
strip-ansi:
|
||||
specifier: 'catalog:'
|
||||
version: 7.2.0
|
||||
typescript:
|
||||
specifier: ^6.0.3
|
||||
version: 6.0.3
|
||||
|
||||
Reference in New Issue
Block a user