-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathhelp_test.ts
More file actions
82 lines (72 loc) · 1.87 KB
/
help_test.ts
File metadata and controls
82 lines (72 loc) · 1.87 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
import "../lib/polyfill.ts";
import { test } from "@denops/test";
import * as fn from "@denops/std/function";
import { fromFileUrl } from "@std/path/from-file-url";
import { assertEquals } from "@std/assert";
import { HelpComponent } from "./help.ts";
const dimension = {
col: 1,
row: 1,
width: 10,
height: 5,
};
const runtimepath = fromFileUrl(new URL("../../../", import.meta.url));
test({
mode: "all",
name: "HelpComponent",
prelude: [
`set runtimepath+=${runtimepath}`,
`runtime plugin/fall/*.vim`,
],
fn: async (denops, t) => {
await t.step("render", async () => {
await using component = new HelpComponent();
await component.open(denops, dimension);
await component.render(denops);
await denops.cmd("redraw");
const info = component.info!;
assertEquals(await fn.getbufline(denops, info.bufnr, 1, "$"), [
"Page 1/0 ",
]);
component.pages = [
{
content: [
"**Help Page 1**",
"**Introduction**",
],
},
];
await component.render(denops);
await denops.cmd("redraw");
// Verify the rendered content
assertEquals(await fn.getbufline(denops, info.bufnr, 1, "$"), [
"Page 1/1 ",
"**Help Page 1**",
"**Introduction**",
]);
component.pages = [
{
content: [
"**Help Page 1**",
"**Introduction**",
],
},
{
content: [
"**Help Page 2**",
"**Details**",
],
},
];
component.page = 2;
await component.render(denops);
await denops.cmd("redraw");
// Verify the content after page update
assertEquals(await fn.getbufline(denops, info.bufnr, 1, "$"), [
"Page 2/2 ",
"**Help Page 2**",
"**Details**",
]);
});
},
});