48558c5af6
Final round-2 test-only batch (behaviors already at parity with Ink reconciler.tsx,
measure-text.tsx, flex-*.tsx, overflow.tsx, build-output.ts):
- build-output: every package.json export target resolves on disk (runtime/cli/testing)
+ the .d.mts declaration sibling for the typed libraries (runtime/testing, not cli).
- reconciler: keyed insert-between [a,c]→[a,b,c]; replace a colored <Text> child with a
plain string; setElementText A→B + the text-context guard; marginLeft removal reset.
- measure: empty <Text> contributes height 0 in a column; non-zero left (marginLeft=5 →
5,1); measureTextNatural trailing/only-newline heights.
- flex: alignSelf='auto' == default + alignSelf removal resets to AUTO; the two
space-around known-yoga-bug cases converted from test.skip to test.fails (they assert
the DESIRED output and flip to a real failure if yoga ever fixes the bug); the documented
flexDirection/flexWrap removal-reset divergence (was comment-only) now has a visual lock.
- overflow: out-of-bounds writes produce Ink's exact clipped frame (sparse past-width cell,
filtered hole) — tightened from toBeDefined().
- components: inline + top-level non-empty fragment in <Text>; the previously-skipped
ST-terminated OSC-8 hyperlink hard-wrap now passes ('abcde\nfghij') — un-skipped as a lock.
Codex-reviewed GENUINE.
Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
119 lines
3.5 KiB
TypeScript
119 lines
3.5 KiB
TypeScript
import { defineComponent, nextTick, shallowRef } from "vue";
|
|
import { expect, test } from "vite-plus/test";
|
|
import { render } from "@vue-tui/testing";
|
|
import { Box, Text } from "@vue-tui/runtime";
|
|
|
|
test("v-if toggle preserves sibling order", async () => {
|
|
const show = shallowRef(true);
|
|
const App = defineComponent(() => {
|
|
return () => (
|
|
<Box flexDirection="column">
|
|
<Text>A</Text>
|
|
{show.value ? <Text>B</Text> : null}
|
|
<Text>C</Text>
|
|
</Box>
|
|
);
|
|
});
|
|
|
|
const { lastFrame } = await render(App, { columns: 10 });
|
|
expect(lastFrame()).toContain("A");
|
|
expect(lastFrame()).toContain("B");
|
|
expect(lastFrame()).toContain("C");
|
|
|
|
show.value = false;
|
|
await nextTick();
|
|
expect(lastFrame()).not.toContain("B");
|
|
expect(lastFrame()).toContain("A");
|
|
expect(lastFrame()).toContain("C");
|
|
|
|
show.value = true;
|
|
await nextTick();
|
|
const lines = lastFrame()!.split("\n").filter(Boolean);
|
|
const aIdx = lines.findIndex((l) => l.includes("A"));
|
|
const bIdx = lines.findIndex((l) => l.includes("B"));
|
|
const cIdx = lines.findIndex((l) => l.includes("C"));
|
|
expect(aIdx).toBeLessThan(bIdx);
|
|
expect(bIdx).toBeLessThan(cIdx);
|
|
});
|
|
|
|
test("keyed v-for reorder renders in new order", async () => {
|
|
const items = shallowRef([1, 2, 3]);
|
|
const App = defineComponent(() => {
|
|
return () => (
|
|
<Box flexDirection="column">
|
|
{items.value.map((n) => (
|
|
<Text key={n}>item-{n}</Text>
|
|
))}
|
|
</Box>
|
|
);
|
|
});
|
|
|
|
const { lastFrame } = await render(App, { columns: 20 });
|
|
let lines = lastFrame()!.split("\n").filter(Boolean);
|
|
expect(lines[0]).toContain("item-1");
|
|
expect(lines[1]).toContain("item-2");
|
|
expect(lines[2]).toContain("item-3");
|
|
|
|
items.value = [3, 1, 2];
|
|
await nextTick();
|
|
lines = lastFrame()!.split("\n").filter(Boolean);
|
|
expect(lines[0]).toContain("item-3");
|
|
expect(lines[1]).toContain("item-1");
|
|
expect(lines[2]).toContain("item-2");
|
|
});
|
|
|
|
// Ink reconciler.tsx:154-212 ("insert child between other children"): with
|
|
// STABLE keys, inserting a new child between two existing ones must place it in
|
|
// the right slot — not append, not reorder. Mirrors Ink's keyed [a,c] -> [a,b,c].
|
|
test("keyed insert between existing children places B between A and C", async () => {
|
|
const insert = shallowRef(false);
|
|
const App = defineComponent(
|
|
() => () =>
|
|
insert.value ? (
|
|
<Box flexDirection="column">
|
|
<Text key="a">A</Text>
|
|
<Text key="b">B</Text>
|
|
<Text key="c">C</Text>
|
|
</Box>
|
|
) : (
|
|
<Box flexDirection="column">
|
|
<Text key="a">A</Text>
|
|
<Text key="c">C</Text>
|
|
</Box>
|
|
),
|
|
);
|
|
|
|
const { lastFrame } = await render(App, { columns: 10 });
|
|
expect(lastFrame()).toBe("A\nC");
|
|
|
|
insert.value = true;
|
|
await nextTick();
|
|
// B lands in the middle (stable keys), so the column order is A / B / C.
|
|
expect(lastFrame()).toBe("A\nB\nC");
|
|
});
|
|
|
|
test("repeated list shuffles don't crash", async () => {
|
|
const items = shallowRef([1, 2, 3, 4, 5]);
|
|
const App = defineComponent(() => {
|
|
return () => (
|
|
<Box flexDirection="column">
|
|
{items.value.map((n) => (
|
|
<Text key={n}>{String(n)}</Text>
|
|
))}
|
|
</Box>
|
|
);
|
|
});
|
|
|
|
const { lastFrame } = await render(App, { columns: 10 });
|
|
|
|
items.value = [5, 4, 3, 2, 1];
|
|
await nextTick();
|
|
items.value = [2, 4, 1, 5, 3];
|
|
await nextTick();
|
|
items.value = [1, 2, 3, 4, 5];
|
|
await nextTick();
|
|
|
|
expect(lastFrame()).toContain("1");
|
|
expect(lastFrame()).toContain("5");
|
|
});
|