deno.land / std@0.91.0 / node / _util / _util_promisify_test.ts

_util_promisify_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
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.//// Adapted from Node.js. Copyright Joyent, Inc. and other Node contributors.//// Permission is hereby granted, free of charge, to any person obtaining a// copy of this software and associated documentation files (the// "Software"), to deal in the Software without restriction, including// without limitation the rights to use, copy, modify, merge, publish,// distribute, sublicense, and/or sell copies of the Software, and to permit// persons to whom the Software is furnished to do so, subject to the// following conditions://// The above copyright notice and this permission notice shall be included// in all copies or substantial portions of the Software.//// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE// USE OR OTHER DEALINGS IN THE SOFTWARE.import { assert, assertEquals, assertStrictEquals, assertThrowsAsync,} from "../../testing/asserts.ts";import { promisify } from "./_util_promisify.ts";import * as fs from "../fs.ts";
// deno-lint-ignore no-explicit-anytype VoidFunction = (...args: any[]) => void;
const readFile = promisify(fs.readFile);const customPromisifyArgs = Symbol.for("nodejs.util.promisify.customArgs");
Deno.test( "Errors should reject the promise", async function testPromiseRejection() { await assertThrowsAsync(() => readFile("/dontexist"), Deno.errors.NotFound); },);
Deno.test("Promisify.custom", async function testPromisifyCustom() { function fn(): void {}
function promisifedFn(): void {} // @ts-expect-error TypeScript (as of 3.7) does not support indexing namespaces by symbol fn[promisify.custom] = promisifedFn;
const promisifiedFnA = promisify(fn); const promisifiedFnB = promisify(promisifiedFnA); assertStrictEquals(promisifiedFnA, promisifedFn); assertStrictEquals(promisifiedFnB, promisifedFn);
await promisifiedFnA; await promisifiedFnB;});
Deno.test("promiisfy.custom symbol", function testPromisifyCustomSymbol() { function fn(): void {}
function promisifiedFn(): void {}
// util.promisify.custom is a shared symbol which can be accessed // as `Symbol.for("nodejs.util.promisify.custom")`. const kCustomPromisifiedSymbol = Symbol.for("nodejs.util.promisify.custom"); // @ts-expect-error TypeScript (as of 3.7) does not support indexing namespaces by symbol fn[kCustomPromisifiedSymbol] = promisifiedFn;
assertStrictEquals(kCustomPromisifiedSymbol, promisify.custom); assertStrictEquals(promisify(fn), promisifiedFn); assertStrictEquals(promisify(promisify(fn)), promisifiedFn);});
Deno.test("Invalid argument should throw", function testThrowInvalidArgument() { function fn(): void {} // @ts-expect-error TypeScript (as of 3.7) does not support indexing namespaces by symbol fn[promisify.custom] = 42; try { promisify(fn); } catch (e) { assertStrictEquals(e.code, "ERR_INVALID_ARG_TYPE"); assert(e instanceof TypeError); }});
Deno.test("Custom promisify args", async function testPromisifyCustomArgs() { const firstValue = 5; const secondValue = 17;
function fn(callback: VoidFunction): void { callback(null, firstValue, secondValue); }
// @ts-expect-error TypeScript (as of 3.7) does not support indexing namespaces by symbol fn[customPromisifyArgs] = ["first", "second"];
const obj = await promisify(fn)(); assertEquals(obj, { first: firstValue, second: secondValue });});
Deno.test( "Multiple callback args without custom promisify args", async function testPromisifyWithoutCustomArgs() { function fn(callback: VoidFunction): void { callback(null, "foo", "bar"); } const value = await promisify(fn)(); assertStrictEquals(value, "foo"); },);
Deno.test( "Undefined resolved value", async function testPromisifyWithUndefinedResolvedValue() { function fn(callback: VoidFunction): void { callback(null); } const value = await promisify(fn)(); assertStrictEquals(value, undefined); },);
Deno.test( "Undefined resolved value II", async function testPromisifyWithUndefinedResolvedValueII() { function fn(callback: VoidFunction): void { callback(); } const value = await promisify(fn)(); assertStrictEquals(value, undefined); },);
Deno.test( "Resolved value: number", async function testPromisifyWithNumberResolvedValue() { function fn(err: Error | null, val: number, callback: VoidFunction): void { callback(err, val); } const value = await promisify(fn)(null, 42); assertStrictEquals(value, 42); },);
Deno.test( "Rejected value", async function testPromisifyWithNumberRejectedValue() { function fn(err: Error | null, val: null, callback: VoidFunction): void { callback(err, val); } await assertThrowsAsync( () => promisify(fn)(new Error("oops"), null), Error, "oops", ); },);
Deno.test("Rejected value", async function testPromisifyWithAsObjectMethod() { const o: { fn?: VoidFunction } = {}; const fn = promisify(function (this: unknown, cb: VoidFunction): void { cb(null, this === o); });
o.fn = fn;
const val = await o.fn(); assert(val);});
Deno.test( "Multiple callback", async function testPromisifyWithMultipleCallback() { const err = new Error( "Should not have called the callback with the error.", ); const stack = err.stack;
const fn = promisify(function (cb: VoidFunction): void { cb(null); cb(err); });
await fn(); await Promise.resolve(); return assertStrictEquals(stack, err.stack); },);
Deno.test("Promisify a promise", function testPromisifyPromise() { function c(): void {} const a = promisify(function (): void {}); const b = promisify(a); assert(c !== a); assertStrictEquals(a, b);});
Deno.test("Test error", async function testInvalidArguments() { let errToThrow;
const thrower = promisify(function ( a: number, b: number, c: number, cb: VoidFunction, ): void { errToThrow = new Error(`${a}-${b}-${c}-${cb}`); throw errToThrow; });
try { await thrower(1, 2, 3); throw new Error(`should've failed`); } catch (e) { assertStrictEquals(e, errToThrow); }});
Deno.test("Test invalid arguments", function testInvalidArguments() { [undefined, null, true, 0, "str", {}, [], Symbol()].forEach((input) => { try { // @ts-expect-error TypeScript promisify(input); } catch (e) { assertStrictEquals(e.code, "ERR_INVALID_ARG_TYPE"); assert(e instanceof TypeError); assertEquals( e.message, `The "original" argument must be of type Function. Received ${typeof input}`, ); } });});
std

Version Info

Tagged at
3 years ago

External Dependencies

No external dependencies 🎉