-
Notifications
You must be signed in to change notification settings - Fork 2
/
tester_test.ts
169 lines (159 loc) · 3.31 KB
/
tester_test.ts
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
import {
assert,
assertEquals,
assertFalse,
assertThrows,
} from "jsr:@std/assert@^1.0.0";
import { test } from "./tester.ts";
test({
mode: "vim",
name: "test(mode:vim) start vim to test denops features",
fn: async (denops) => {
assertFalse(await denops.call("has", "nvim"));
},
});
test(
"vim",
"test(mode:vim) start vim to test denops features",
async (denops) => {
assertFalse(await denops.call("has", "nvim"));
},
);
test({
mode: "nvim",
name: "test(mode:nvim) start nvim to test denops features",
fn: async (denops) => {
assert(await denops.call("has", "nvim"));
},
});
test(
"nvim",
"test(mode:nvim) start nvim to test denops features",
async (denops) => {
assert(await denops.call("has", "nvim"));
},
);
test({
mode: "any",
name: "test(mode:any) start vim or nvim to test denops features",
fn: async (denops) => {
// Test if `call` works
assertEquals(
await denops.call("range", 10),
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
);
},
});
test(
"any",
"test(mode:any) start vim or nvim to test denops features",
async (denops) => {
// Test if `call` works
assertEquals(
await denops.call("range", 10),
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
);
},
);
test({
mode: "all",
name: "test(mode:all) start both vim and nvim to test denops features",
fn: async (denops) => {
// Test if `call` works
assertEquals(
await denops.call("range", 10),
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
);
},
});
test(
"all",
"test(mode:all) start both vim and nvim to test denops features",
async (denops) => {
// Test if `call` works
assertEquals(
await denops.call("range", 10),
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
);
},
);
test({
mode: "all",
name: "test(mode:all) start both vim and nvim with plugin name",
fn: (denops) => {
assertEquals(
denops.name,
"denops-test",
);
},
});
test({
mode: "all",
name: "test(mode:all) pass TestContext to the second argument",
fn: async (denops, t) => {
await t.step("step1", async () => {
assertEquals(
await denops.call("range", 10),
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
);
});
await t.step("step2", async () => {
assertEquals(
await denops.call("range", 10),
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
);
});
},
});
Deno.test("test() throws if 'mode' option is empty", () => {
assertThrows(
() => {
test({
mode: "" as "vim",
name: "name",
fn: () => {},
});
},
Error,
"'mode' attribute is required",
);
});
Deno.test("test() throws if 'mode' option is invalid", () => {
assertThrows(
() => {
test({
mode: "foo" as "vim",
name: "name",
fn: () => {},
});
},
Error,
"'mode' attribute is invalid",
);
});
Deno.test("test() throws if 'name' option is empty", () => {
assertThrows(
() => {
test({
mode: "vim",
name: "",
fn: () => {},
});
},
Error,
"'name' attribute is required",
);
});
Deno.test("test() throws if 'fn' option is empty", () => {
assertThrows(
() => {
test({
mode: "vim",
name: "name",
fn: undefined as unknown as () => void,
});
},
Error,
"'fn' attribute is required",
);
});