Files
vue-tui/packages/runtime-tests/integration/layout/flex-align-self.test.tsx
T
Yunfei He 48558c5af6 test(runtime): lock reconciler, measure, flex, overflow, build-output (Ink parity) (#116)
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>
2026-06-01 03:28:35 +08:00

191 lines
5.6 KiB
TypeScript

import { defineComponent, nextTick, shallowRef } from "vue";
import { expect, test } from "vite-plus/test";
import { render } from "@vue-tui/testing";
import { Box, Text, Newline } from "@vue-tui/runtime";
test("row - align text to center", async () => {
const { lastFrame } = await render(
defineComponent(() => () => (
<Box flexDirection="row" height={3}>
<Box alignSelf="center">
<Text>Test</Text>
</Box>
</Box>
)),
{ columns: 100 },
);
expect(lastFrame({ trimLines: true })).toBe("\nTest\n");
});
test("row - align multiple text nodes to center", async () => {
const { lastFrame } = await render(
defineComponent(() => () => (
<Box flexDirection="row" height={3}>
<Box alignSelf="center" flexDirection="row">
<Text>A</Text>
<Text>B</Text>
</Box>
</Box>
)),
{ columns: 100 },
);
expect(lastFrame({ trimLines: true })).toBe("\nAB\n");
});
test("row - align text to bottom", async () => {
const { lastFrame } = await render(
defineComponent(() => () => (
<Box flexDirection="row" height={3}>
<Box alignSelf="flex-end">
<Text>Test</Text>
</Box>
</Box>
)),
{ columns: 100 },
);
expect(lastFrame({ trimLines: true })).toBe("\n\nTest");
});
test("row - align multiple text nodes to bottom", async () => {
const { lastFrame } = await render(
defineComponent(() => () => (
<Box flexDirection="row" height={3}>
<Box alignSelf="flex-end" flexDirection="row">
<Text>A</Text>
<Text>B</Text>
</Box>
</Box>
)),
{ columns: 100 },
);
expect(lastFrame({ trimLines: true })).toBe("\n\nAB");
});
test("column - align text to center", async () => {
const { lastFrame } = await render(
defineComponent(() => () => (
<Box flexDirection="column" width={10}>
<Box alignSelf="center">
<Text>Test</Text>
</Box>
</Box>
)),
{ columns: 100 },
);
expect(lastFrame({ trimLines: true })).toBe(" Test");
});
test("column - align text to right", async () => {
const { lastFrame } = await render(
defineComponent(() => () => (
<Box flexDirection="column" width={10}>
<Box alignSelf="flex-end">
<Text>Test</Text>
</Box>
</Box>
)),
{ columns: 100 },
);
expect(lastFrame({ trimLines: true })).toBe(" Test");
});
test("column - align self stretch", async () => {
const { lastFrame } = await render(
defineComponent(() => () => (
<Box flexDirection="column" width={7}>
<Box alignSelf="stretch" borderStyle="single">
<Text>X</Text>
</Box>
</Box>
)),
{ columns: 100 },
);
expect(lastFrame({ trimLines: true })).toBe("┌─────┐\n│X │\n└─────┘");
});
test("row - align self stretch", async () => {
const { lastFrame } = await render(
defineComponent(() => () => (
<Box flexDirection="row" height={5}>
<Box alignSelf="stretch" borderStyle="single">
<Text>X</Text>
</Box>
</Box>
)),
{ columns: 100 },
);
expect(lastFrame({ trimLines: true })).toBe("┌─┐\n│X│\n│ │\n│ │\n└─┘");
});
// Ink styles.ts:580 maps alignSelf="auto" to yoga's ALIGN_AUTO, which is the
// default — so an explicit alignSelf="auto" must render identically to no
// alignSelf at all (the child stays at the cross-axis start, left-aligned here).
test("column - alignSelf='auto' equals the no-alignSelf default", async () => {
const { lastFrame: withAuto } = await render(
defineComponent(() => () => (
<Box flexDirection="column" width={10}>
<Box alignSelf="auto">
<Text>Test</Text>
</Box>
</Box>
)),
{ columns: 100 },
);
const { lastFrame: withoutAlign } = await render(
defineComponent(() => () => (
<Box flexDirection="column" width={10}>
<Box>
<Text>Test</Text>
</Box>
</Box>
)),
{ columns: 100 },
);
// Both stay at the start (left) — "auto" is the default, not center/end.
expect(withAuto({ trimLines: true })).toBe("Test");
expect(withAuto({ trimLines: true })).toBe(withoutAlign({ trimLines: true }));
});
// G19: removing alignSelf must reset to yoga's ALIGN_AUTO default (per the
// declarative contract render = f(current props)). The child starts flex-end
// (right-aligned in a width-10 column) and reverts to the unaligned default
// (left) once alignSelf is removed.
test("column - alignSelf removal resets to AUTO default (G19)", async () => {
const aligned = shallowRef(true);
const { lastFrame } = await render(
defineComponent(() => () => (
<Box flexDirection="column" width={10}>
<Box {...(aligned.value ? { alignSelf: "flex-end" } : {})}>
<Text>Test</Text>
</Box>
</Box>
)),
{ columns: 100 },
);
// flex-end pushes "Test" to the right edge of the width-10 column.
expect(lastFrame({ trimLines: true })).toBe(" Test");
aligned.value = false;
await nextTick();
// After removal, alignSelf resets to AUTO → back to the left (unaligned default).
expect(lastFrame({ trimLines: true })).toBe("Test");
});
test("row - align self baseline", async () => {
const { lastFrame } = await render(
defineComponent(() => () => (
<Box flexDirection="row" alignItems="flex-end" height={3}>
<Text>
A
<Newline />B
</Text>
<Box alignSelf="baseline">
<Text>X</Text>
</Box>
</Box>
)),
{ columns: 100 },
);
expect(lastFrame({ trimLines: true })).toBe("AX\nB\n");
});