-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpromise.test.js
179 lines (165 loc) · 4.31 KB
/
promise.test.js
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
import Promise from './promise';
import sleep from './../../shared/sleep';
// ref: https://github.com/promises-aplus/promises-tests
describe('Promise', () => {
const time = 500;
it('take a function as an argument', () => {
expect(() => {
new Promise(1);
}).toThrowError('is not a function');
});
it('return a promise instace, exposes the public API', () => {
const promise = new Promise(function (resolve, reject) {
+new Date() % 2 === 0 ? resolve() : reject();
});
expect(promise).toHaveProperty('then');
expect(promise).toHaveProperty('catch');
expect(promise).toHaveProperty('finally');
});
it('promise.then, onFulfilled', done => {
const promise = new Promise(function (resolve) {
setTimeout(function () {
resolve(time);
}, time);
});
promise.then(ms => {
expect(ms).toBe(time);
done();
});
});
it('promise.then, onRejected', done => {
const promise = new Promise(function (resolve, reject) {
setTimeout(function () {
reject(time);
}, time);
});
promise.then(() => {
// onFulfilled
}, reason => {
// onRejected
expect(reason).toBe(time);
done();
});
});
it('promise.catch', done => {
const promise = new Promise(function (resolve, reject) {
setTimeout(function () {
reject(time);
}, time);
});
promise.then(() => {
// onFulfilled
}).catch(reason => {
expect(reason).toBe(time);
done();
});
});
it('promise.finally', done => {
const promise = new Promise(function (resolve, reject) {
setTimeout(function () {
reject(time);
}, time);
});
promise.then(() => {
// onFulfilled
}).catch(() => {
// onRejected
}).finally(() => {
// Finally
expect(true).toBe(true);
done();
});
});
it('chain call, onFulfilled', done => {
new Promise(function (resolve) {
setTimeout(function () {
resolve(time);
}, time);
}).then(ms => {
return new Promise(function (resolve) {
setTimeout(function () {
resolve(ms + time);
}, time);
});
}).then(total => {
expect(total).toBe(time * 2);
done();
});
});
it('chain call, onRejected', done => {
new Promise(function (resolve, reject) {
setTimeout(function () {
reject(time);
}, time);
}).then(ms => {
return new Promise(function (resolve) {
setTimeout(function () {
resolve(ms + time);
}, time);
});
}).then(total => {
return new Promise(function (resolve) {
setTimeout(function () {
resolve(total + time);
}, time);
});
}).catch(reason => {
expect(reason).toBe(time);
done();
});
});
it('can only change status once, cannot from fulfilled to rejected', async () => {
let result = '';
const promise = new Promise(function (resolve, reject) {
setTimeout(function () {
resolve(time);
setTimeout(function () { // 设定之后再 reject 一次
reject(time);
}, 0);
}, time);
});
promise.then(() => {
result += '=fulfilled=';
}).catch(() => {
result += '=rejected=';
});
await sleep(2000);
// 不等于 'fulfilled rejected'
expect(result).not.toBe('=fulfilled==rejected=');
// 等于 'fulfilled'
expect(result).toBe('=fulfilled=');
});
it('can only change status once, cannot from rejected to fulfilled', async () => {
let result = '';
const promise = new Promise(function (resolve, reject) {
setTimeout(function () {
reject(time);
setTimeout(function () { // 设定之后再 resolve 一次
resolve(time);
}, 0);
}, time);
});
promise.then(() => {
result += '=fulfilled=';
}).catch(() => {
result += '=rejected=';
});
await sleep(2000);
// 不等于 'fulfilled rejected'
expect(result).not.toBe('=rejected==fulfilled=');
// 等于 'rejected'
expect(result).toBe('=rejected=');
});
it('Promise.resolve', done => {
Promise.resolve(1).then(num => {
expect(num).toBe(1);
done();
});
});
it('Promise.reject', done => {
Promise.reject(1).catch(num => {
expect(num).toBe(1);
done();
});
});
});