forked from sinonjs/sinon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpromise-test.js
225 lines (186 loc) · 7.23 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
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
"use strict";
var sinon = require("../lib/sinon.js");
var { assert, refute } = require("@sinonjs/referee");
async function getPromiseStatus(promise) {
var status = "pending";
var value = null;
promise
.then(function (val) {
status = "resolved";
value = val;
})
.catch(function (reason) {
status = "rejected";
value = reason;
});
await new Promise(function (resolve) {
setTimeout(resolve, 0);
});
return { status, value };
}
describe("promise", function () {
context("with default executor", function () {
it("returns an unresolved promise", async function () {
var promise = sinon.promise();
var { status, value } = await getPromiseStatus(promise);
assert.equals(promise.toString(), "[object Promise]");
assert.equals(status, "pending");
assert.isNull(value);
assert.equals(promise.status, status);
assert.isUndefined(promise.resolvedValue);
assert.isUndefined(promise.rejectedValue);
});
it("resolves the promise", async function () {
var result = Symbol("promise result");
var promise = sinon.promise();
var returnValue = promise.resolve(result);
var { status, value } = await getPromiseStatus(promise);
assert.equals(status, "resolved");
assert.same(value, result);
assert.equals(promise.status, status);
assert.same(promise.resolvedValue, result);
assert.isUndefined(promise.rejectedValue);
assert.same(returnValue, promise);
});
it("rejects the promise", async function () {
var error = new Error("promise error");
var promise = sinon.promise();
var returnValue = promise.reject(error);
var { status, value } = await getPromiseStatus(promise);
assert.equals(status, "rejected");
assert.same(value, error);
assert.equals(promise.status, status);
assert.isUndefined(promise.resolvedValue);
assert.same(promise.rejectedValue, error);
refute.same(returnValue, promise);
assert.equals(returnValue.toString(), "[object Promise]");
await assert.resolves(returnValue, undefined);
});
context("with resolved promise", function () {
var promise;
beforeEach(function () {
promise = sinon.promise();
promise.resolve(1);
});
it("fails to resolve again", function () {
assert.exception(
() => {
promise.resolve(2);
},
{
name: "Error",
message: "Promise already resolved",
}
);
});
it("fails to reject", function () {
assert.exception(
() => {
promise.reject(2);
},
{
name: "Error",
message: "Promise already resolved",
}
);
});
});
context("with rejected promise", function () {
var promise;
beforeEach(function () {
promise = sinon.promise();
promise.reject(1);
});
it("fails to reject again", function () {
assert.exception(
() => {
promise.reject(2);
},
{
name: "Error",
message: "Promise already rejected",
}
);
});
it("fails to resolve", function () {
assert.exception(
() => {
promise.resolve(2);
},
{
name: "Error",
message: "Promise already rejected",
}
);
});
});
});
context("with custom executor", function () {
it("accepts a fake as the custom executor", function () {
var executor = sinon.fake();
sinon.promise(executor);
assert.equals(executor.callCount, 1);
assert.equals(executor.firstCall.args.length, 2);
assert.isFunction(executor.firstCall.firstArg);
assert.isFunction(executor.firstCall.lastArg);
});
it("accepts a stub as the custom executor", function () {
var executor = sinon.stub();
sinon.promise(executor);
assert.equals(executor.callCount, 1);
assert.equals(executor.firstCall.args.length, 2);
assert.isFunction(executor.firstCall.firstArg);
assert.isFunction(executor.firstCall.lastArg);
});
it("accepts a function as the custom executor", function () {
var args;
function executor(resolve, reject) {
args = [resolve, reject];
}
sinon.promise(executor);
assert.equals(args.length, 2);
assert.isFunction(args[0]);
assert.isFunction(args[1]);
});
it("sets resolvedValue when custom executor resolves", async function () {
var result = Symbol("executor result");
function executor(resolve) {
resolve(result);
}
var promise = sinon.promise(executor);
await assert.resolves(promise, result);
assert.equals(promise.status, "resolved");
assert.same(promise.resolvedValue, result);
assert.isUndefined(promise.rejectedValue);
});
it("sets rejectedValue when custom executor fails", async function () {
var reason = new Error("executor failure");
function executor(resolve, reject) {
reject(reason);
}
var promise = sinon.promise(executor);
await assert.rejects(promise, reason);
assert.equals(promise.status, "rejected");
assert.same(promise.rejectedValue, reason);
assert.isUndefined(promise.resolvedValue);
});
it("resolves the promise", async function () {
var result = Symbol("promise result");
var promise = sinon.promise(sinon.fake());
promise.resolve(result);
await assert.resolves(promise, result);
assert.equals(promise.status, "resolved");
assert.same(promise.resolvedValue, result);
assert.isUndefined(promise.rejectedValue);
});
it("rejects the promise", async function () {
var error = new Error("promise error");
var promise = sinon.promise(sinon.fake());
promise.reject(error);
await assert.rejects(promise, error);
assert.equals(promise.status, "rejected");
assert.isUndefined(promise.resolvedValue);
assert.same(promise.rejectedValue, error);
});
});
});