-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.spec.ts
223 lines (207 loc) · 6.03 KB
/
index.spec.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
import {BeCancelable, CancelError, CancelablePromise} from '../index.js';
import * as ava from 'ava';
import delay from 'delay';
const test = ava.default;
test('CancelablePromise resolve as promise', async (t) => {
const result = 'test';
void new CancelablePromise((resolve) => {
resolve(result);
}).then((res) => {
t.is(res, result);
});
});
test('CancelablePromise finally as promise', async (t) => {
const result = 'test';
void new CancelablePromise((resolve) => {
resolve(result);
}).finally(() => {
t.pass();
});
});
test('CancelablePromise use await', async (t) => {
const result = 'test';
t.is(await new CancelablePromise((resolve) => {
resolve(result);
}), result);
});
test('CancelablePromise reject as promise', async (t) => {
const reason = 'reject as promise';
await t.throwsAsync(new CancelablePromise((resolve, reject) => {
reject(new Error(reason));
}), {instanceOf: Error, message: reason});
});
test('CancelablePromise finally as promise with reject', async (t) => {
t.plan(2);
const reason = 'finally as promise with reject';
const cancelablePromise = new CancelablePromise((resolve, reject) => {
setTimeout(() => {
reject(new Error(reason));
}, 100);
});
await t.throwsAsync(cancelablePromise.finally(() => {
t.pass();
}), {instanceOf: Error, message: reason});
});
test('CancelablePromise finally as promise with reject and delay', async (t) => {
t.plan(2);
const reason = 'finally as promise with reject and delay';
const cancelablePromise = new CancelablePromise(async (resolve, reject) => {
await delay(100);
reject(new Error(reason));
});
await t.throwsAsync(cancelablePromise.finally(() => {
t.pass();
}), {instanceOf: Error, message: reason});
});
test('CancelablePromise catch as promise', async (t) => {
const reason = 'catch as promise';
new CancelablePromise((resolve, reject) => {
reject(new Error(reason));
}).catch((err: Error) => {
t.deepEqual(err, new Error(reason));
});
});
test('CancelablePromise with timeout', async (t) => {
const result = 'test';
const res = await new CancelablePromise((resolve) => {
setTimeout(() => {
resolve(result);
}, 100);
});
t.is(res, result);
});
test('CancelablePromise with cancel', async (t) => {
t.plan(3);
const result = 'test';
const reason = 'with cancel';
const cancelablePromise = new CancelablePromise((resolve, reject, onCancel) => {
onCancel.cancelHandler(() => {
t.pass();
});
setTimeout(() => {
resolve(result);
}, 100);
});
setTimeout(() => {
cancelablePromise.cancel(reason);
}, 10);
await t.throwsAsync(cancelablePromise.then(() => {
t.fail();
}), {instanceOf: CancelError, message: reason});
t.is(cancelablePromise.isCanceled, true);
});
test('CancelablePromise with cancel and not should reject', async (t) => {
t.plan(4);
const result = 'test';
const cancelablePromise = new CancelablePromise((resolve, reject, onCancel) => {
onCancel.cancelHandler(() => {
t.pass();
});
onCancel.shouldReject = false;
setTimeout(() => {
resolve(result);
}, 100);
});
setTimeout(() => {
cancelablePromise.cancel();
}, 10);
await t.notThrowsAsync(cancelablePromise.then(() => {
t.pass();
}));
t.is(cancelablePromise.isCanceled, true);
});
test('CancelablePromise with cancel and onCancel throw Error', async (t) => {
t.plan(4);
const result = 'test';
const reason = 'with cancel and onCancel throw Error';
const cancelablePromise = new CancelablePromise((resolve, reject, onCancel) => {
onCancel.cancelHandler(() => {
t.pass();
});
onCancel.cancelHandler(() => {
throw new Error(reason);
});
setTimeout(() => {
resolve(result);
}, 100);
});
setTimeout(() => {
t.throws(() => { cancelablePromise.cancel(); }, {instanceOf: Error, message: reason});
}, 10);
await t.throwsAsync(cancelablePromise.then(() => {
t.fail();
}), {instanceOf: CancelError, message: 'Promise was canceled'});
t.is(cancelablePromise.isCanceled, true);
});
test('BeCancelable resolve as promise', async (t) => {
const result = 'test';
t.is(await BeCancelable(new Promise((resolve) => {
resolve(result);
})), result);
});
test('BeCancelable use async', async (t) => {
const result = 'test';
t.is(await BeCancelable((async () => {
await delay(50);
return result;
})), result);
});
test('BeCancelable with cancel', async (t) => {
t.plan(3);
const result = 'test';
const reason = 'with cancel';
const cancelablePromise = BeCancelable(new Promise((resolve) => {
setTimeout(() => {
resolve(result);
}, 100);
}), () => {
t.pass();
});
setTimeout(() => {
cancelablePromise.cancel(reason);
}, 10);
await t.throwsAsync(cancelablePromise.then(() => {
t.fail();
}), {instanceOf: CancelError, message: reason});
t.is(cancelablePromise.isCanceled, true);
});
test('BeCancelable with cancel and not should reject', async (t) => {
t.plan(4);
const result = 'test';
const cancelablePromise = BeCancelable(new Promise((resolve,) => {
setTimeout(() => {
resolve(result);
}, 100);
}), () => {
t.pass();
}, false);
setTimeout(() => {
cancelablePromise.cancel();
}, 10);
await t.notThrowsAsync(cancelablePromise.then(() => {
t.pass();
}));
t.is(cancelablePromise.isCanceled, true);
});
test('BeCancelable with cancel and onCancel throw Error', async (t) => {
t.plan(4);
const result = 'test';
const reason = 'with cancel and onCancel throw Error';
const cancelablePromise = BeCancelable(new Promise((resolve) => {
setTimeout(() => {
resolve(result);
}, 100);
}), () => {
t.pass();
});
cancelablePromise.addCancelHandler(() => {
throw new Error(reason);
});
setTimeout(() => {
t.throws(() => { cancelablePromise.cancel(); }, {instanceOf: Error, message: reason});
}, 10);
await t.throwsAsync(cancelablePromise.then(() => {
t.fail();
}), {instanceOf: CancelError, message: 'Promise was canceled'});
t.is(cancelablePromise.isCanceled, true);
});