60 lines
1.8 KiB
TypeScript
60 lines
1.8 KiB
TypeScript
import { strict as assert } from "node:assert";
|
|
import test from "node:test";
|
|
import {
|
|
SIDEBAR_TREE_ROW_HEIGHT,
|
|
SIDEBAR_TREE_PRERENDER_COUNT,
|
|
SIDEBAR_TREE_SCROLL_BUFFER,
|
|
flattenTree,
|
|
shouldVirtualizeFlatTree,
|
|
} from "../src/composables/useFlatTree.ts";
|
|
import type { TreeNode } from "../src/types/database.ts";
|
|
|
|
test("flattenTree preserves depth and node type for virtualized sidebar rows", () => {
|
|
const nodes: TreeNode[] = [
|
|
{
|
|
id: "conn",
|
|
label: "Connection",
|
|
type: "connection",
|
|
isExpanded: true,
|
|
children: [
|
|
{ id: "conn:file", label: "Query.sql", type: "saved-sql-file" },
|
|
{
|
|
id: "conn:db",
|
|
label: "db",
|
|
type: "database",
|
|
isExpanded: true,
|
|
children: [{ id: "conn:db:table", label: "table", type: "table" }],
|
|
},
|
|
],
|
|
},
|
|
];
|
|
|
|
const flat = flattenTree(nodes);
|
|
|
|
assert.deepEqual(
|
|
flat.map((item) => ({ id: item.id, depth: item.depth, type: item.type })),
|
|
[
|
|
{ id: "conn", depth: 0, type: "connection" },
|
|
{ id: "conn:file", depth: 1, type: "saved-sql-file" },
|
|
{ id: "conn:db", depth: 1, type: "database" },
|
|
{ id: "conn:db:table", depth: 2, type: "table" },
|
|
],
|
|
);
|
|
});
|
|
|
|
test("shouldVirtualizeFlatTree virtualizes every non-empty sidebar tree", () => {
|
|
assert.equal(shouldVirtualizeFlatTree(0), false);
|
|
assert.equal(shouldVirtualizeFlatTree(1), true);
|
|
assert.equal(shouldVirtualizeFlatTree(100), true);
|
|
});
|
|
|
|
test("sidebar virtual tree keeps enough buffered rows for fast scrolling", () => {
|
|
assert.equal(SIDEBAR_TREE_ROW_HEIGHT, 28);
|
|
assert.equal(SIDEBAR_TREE_SCROLL_BUFFER, 600);
|
|
assert.ok(SIDEBAR_TREE_SCROLL_BUFFER >= SIDEBAR_TREE_ROW_HEIGHT * 20);
|
|
});
|
|
|
|
test("sidebar virtual tree prerenders enough rows for the first frame", () => {
|
|
assert.ok(SIDEBAR_TREE_PRERENDER_COUNT >= 40);
|
|
});
|