-
Notifications
You must be signed in to change notification settings - Fork 1
/
test.ts
220 lines (173 loc) Β· 3.81 KB
/
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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
import {
assert,
assertEquals,
} from "https://deno.land/[email protected]/testing/asserts.ts";
import { parry } from "./mod.ts";
const { test } = Deno;
test({
name: "returns async function from sync function",
async fn(): Promise<void> {
const f = parry(() => {
return;
});
const r = f();
assertEquals(typeof f, "function");
assert(r instanceof Promise);
await r;
f.close();
},
});
test(
{
name: "returns async function from async function",
async fn(): Promise<void> {
const f = parry(async () => {
return;
});
const r = f();
assertEquals(typeof f, "function");
assert(r instanceof Promise);
await r;
f.close();
},
},
);
test({
name: "returns promise",
async fn(): Promise<void> {
const f = parry((a) => {
return a;
});
const r = f(1);
assert(r instanceof Promise);
assertEquals(await r, 1);
f.close();
},
});
test({
name: "calls sync function",
async fn(): Promise<void> {
const f = parry((a) => {
return a;
});
const r = await f(1);
assertEquals(r, 1);
f.close();
},
});
test({
name: "calls async function",
async fn(): Promise<void> {
const f = parry(async (a) => {
return a;
});
const r = await f(1);
assertEquals(r, 1);
f.close();
},
});
test({
name: "forwards arguments",
async fn(): Promise<void> {
const f = parry((a, b, c, d, e, f) => {
return [a, b, c, d, e, f];
});
const r = await f(1, 2, 3, 4, 5, 6);
assertEquals(r, [1, 2, 3, 4, 5, 6]);
f.close();
},
});
test({
name: "multiple works in parallel",
async fn(): Promise<void> {
const f1 = parry((a, b, c, d, e, f) => {
return [a, b, c, d, e, f];
});
const f2 = parry((a, b, c, d, e, f) => {
return [f, a, b, c, d, e];
});
const f3 = parry((a, b, c, d, e, f) => {
return [e, f, a, b, c, d];
});
const a1 = f1(1, 2, 3, 4, 5, 6);
const a2 = f2(1, 2, 3, 4, 5, 6);
const a3 = f3(1, 2, 3, 4, 5, 6);
const [r1, r2, r3] = await Promise.all([a1, a2, a3]);
assertEquals(r1, [1, 2, 3, 4, 5, 6]);
assertEquals(r2, [6, 1, 2, 3, 4, 5]);
assertEquals(r3, [5, 6, 1, 2, 3, 4]);
f1.close();
f2.close();
f3.close();
},
});
test({
name: "call multiple times",
async fn(): Promise<void> {
const f = parry((a, b, c, d, e, f) => {
return [a, b, c, d, e, f];
});
const r1 = await f(1, 2, 3, 4, 5, 6);
const r2 = await f(6, 1, 2, 3, 4, 5);
const r3 = await f(5, 6, 1, 2, 3, 4);
assertEquals(r1, [1, 2, 3, 4, 5, 6]);
assertEquals(r2, [6, 1, 2, 3, 4, 5]);
assertEquals(r3, [5, 6, 1, 2, 3, 4]);
f.close();
},
});
test({
name: "run sync function",
async fn(): Promise<void> {
const p = parry((x) => x);
const r = await p.run(((x: number): number => x + 1), 1);
assertEquals(r, 2);
p.close();
},
});
test({
name: "run async function",
async fn(): Promise<void> {
const p = parry((x) => x);
const r = await p.run(
(async (x: number) => {
return x + 1;
}),
1,
);
assertEquals(r, 2);
p.close();
},
});
test({
name: "declare value",
async fn(): Promise<void> {
const p = parry((x) => x);
p.declare("value", 1);
const r = await p.run(
(async () => {
// deno-lint-ignore ban-ts-comment
// @ts-ignore
return value;
}),
);
assertEquals(r, 1);
p.close();
},
});
test({
name: "define function",
async fn(): Promise<void> {
const p = parry((x) => x);
p.define("add", (a: number, b: number): number => a + b);
const r = await p.run(
(async () => {
// deno-lint-ignore ban-ts-comment
// @ts-ignore
return add(1, 1);
}),
);
assertEquals(r, 2);
p.close();
},
});