-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmap_test.ts
88 lines (78 loc) · 1.84 KB
/
map_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
import {
assertEquals,
assertThrowsAsync,
} from "https://deno.land/[email protected]/testing/asserts.ts";
import {
getFirst,
getLines,
getLinesNonEmpty,
getSuccess,
getText,
map,
mapAsync,
pipe,
} from "./map.ts";
Deno.test("getFirst gets first element", async () => {
assertEquals(
await getFirst(Promise.resolve([1, 2, 3])),
1,
);
});
Deno.test("getFirst throws if array is empty", async () => {
await assertThrowsAsync(
() => getFirst(Promise.resolve([])),
Error,
"empty",
);
});
Deno.test("getLines preserves empty lines", async () => {
const buf = new TextEncoder().encode("hello\n\nworld");
assertEquals(
await getLines(Promise.resolve(buf)),
["hello", "", "world"],
);
});
Deno.test("getLinesNonEmpty removes empty lines", async () => {
const buf = new TextEncoder().encode("hello\n\nworld");
assertEquals(
await getLinesNonEmpty(Promise.resolve(buf)),
["hello", "world"],
);
});
Deno.test("getSuccess is true if promise resolves", async () => {
assertEquals(
await getSuccess(Promise.resolve(42)),
true,
);
});
Deno.test("getSuccess is false if promise is rejected", async () => {
assertEquals(
await getSuccess(Promise.reject(42)),
false,
);
});
Deno.test("getText converts buffer to text", async () => {
const buf = new TextEncoder().encode("hello");
assertEquals(
await getText(Promise.resolve(buf)),
"hello",
);
});
Deno.test("map resolves correctly", async () => {
assertEquals(
await map((x: number) => x * 2)(Promise.resolve(21)),
42,
);
});
Deno.test("mapAsync resolves correctly", async () => {
assertEquals(
await mapAsync((x: number) => Promise.resolve(x * 2))(Promise.resolve(21)),
42,
);
});
Deno.test("pipe combines two function", () => {
assertEquals(
pipe((x: number) => x * 2, (x) => x * 3)(2),
12,
);
});