forked from reactphp/async
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAsyncTest.php
More file actions
265 lines (211 loc) · 8.17 KB
/
AsyncTest.php
File metadata and controls
265 lines (211 loc) · 8.17 KB
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
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
<?php
namespace React\Tests\Async;
use React;
use React\EventLoop\Loop;
use React\Promise\Deferred;
use React\Promise\Promise;
use function React\Async\async;
use function React\Async\await;
use function React\Promise\all;
use function React\Promise\reject;
use function React\Promise\resolve;
class AsyncTest extends TestCase
{
public function testAsyncReturnsPromiseThatFulfillsWithValueWhenCallbackReturnsValue()
{
$promise = async(function () {
return 42;
})();
$value = null;
$promise->then(function ($v) use (&$value) {
$value = $v;
});
$this->assertEquals(42, $value);
}
public function testAsyncReturnsPromiseThatFulfillsWithValueWhenCallbackReturnsPromiseThatFulfillsWithValue()
{
$promise = async(function () {
return resolve(42);
})();
$value = null;
$promise->then(function ($v) use (&$value) {
$value = $v;
});
$this->assertEquals(42, $value);
}
public function testAsyncReturnsPromiseThatRejectsWithExceptionWhenCallbackThrows()
{
$promise = async(function () {
throw new \RuntimeException('Foo', 42);
})();
$exception = null;
$promise->then(null, function ($reason) use (&$exception) {
$exception = $reason;
});
assert($exception instanceof \RuntimeException);
$this->assertInstanceOf(\RuntimeException::class, $exception);
$this->assertEquals('Foo', $exception->getMessage());
$this->assertEquals(42, $exception->getCode());
}
public function testAsyncReturnsPromiseThatRejectsWithExceptionWhenCallbackReturnsPromiseThatRejectsWithException()
{
$promise = async(function () {
return reject(new \RuntimeException('Foo', 42));
})();
$exception = null;
$promise->then(null, function ($reason) use (&$exception) {
$exception = $reason;
});
assert($exception instanceof \RuntimeException);
$this->assertInstanceOf(\RuntimeException::class, $exception);
$this->assertEquals('Foo', $exception->getMessage());
$this->assertEquals(42, $exception->getCode());
}
public function testAsyncReturnsPendingPromiseWhenCallbackReturnsPendingPromise()
{
$promise = async(function () {
return new Promise(function () { });
})();
$promise->then($this->expectCallableNever(), $this->expectCallableNever());
}
public function testAsyncWithAwaitReturnsReturnsPromiseFulfilledWithValueImmediatelyWhenPromiseIsFulfilled()
{
$deferred = new Deferred();
$promise = async(function () use ($deferred) {
return await($deferred->promise());
})();
$return = null;
$promise->then(function ($value) use (&$return) {
$return = $value;
});
$this->assertNull($return);
$deferred->resolve(42);
$this->assertEquals(42, $return);
}
public function testAsyncWithAwaitReturnsPromiseRejectedWithExceptionImmediatelyWhenPromiseIsRejected()
{
$deferred = new Deferred();
$promise = async(function () use ($deferred) {
return await($deferred->promise());
})();
$exception = null;
$promise->then(null, function ($reason) use (&$exception) {
$exception = $reason;
});
$this->assertNull($exception);
$deferred->reject(new \RuntimeException('Test', 42));
$this->assertInstanceof(\RuntimeException::class, $exception);
assert($exception instanceof \RuntimeException);
$this->assertEquals('Test', $exception->getMessage());
$this->assertEquals(42, $exception->getCode());
}
public function testAsyncReturnsPromiseThatFulfillsWithValueWhenCallbackReturnsAfterAwaitingPromise()
{
$promise = async(function () {
$promise = new Promise(function ($resolve) {
Loop::addTimer(0.001, fn () => $resolve(42));
});
return await($promise);
})();
$value = await($promise);
$this->assertEquals(42, $value);
}
public function testAsyncReturnsPromiseThatRejectsWithExceptionWhenCallbackThrowsAfterAwaitingPromise()
{
$promise = async(function () {
$promise = new Promise(function ($_, $reject) {
Loop::addTimer(0.001, fn () => $reject(new \RuntimeException('Foo', 42)));
});
return await($promise);
})();
$this->expectException(\RuntimeException::class);
$this->expectExceptionMessage('Foo');
$this->expectExceptionCode(42);
await($promise);
}
public function testAsyncReturnsPromiseThatFulfillsWithValueWhenCallbackReturnsAfterAwaitingTwoConcurrentPromises()
{
$promise1 = async(function () {
$promise = new Promise(function ($resolve) {
Loop::addTimer(0.11, fn () => $resolve(21));
});
return await($promise);
})();
$promise2 = async(function (int $theAnswerToLifeTheUniverseAndEverything): int {
$promise = new Promise(function ($resolve) use ($theAnswerToLifeTheUniverseAndEverything): void {
Loop::addTimer(0.11, fn () => $resolve($theAnswerToLifeTheUniverseAndEverything));
});
return await($promise);
})(42);
$time = microtime(true);
$values = await(all([$promise1, $promise2]));
$time = microtime(true) - $time;
$this->assertEquals([21, 42], $values);
$this->assertGreaterThan(0.1, $time);
$this->assertLessThan(0.12, $time);
}
public function testCancelAsyncWillReturnRejectedPromiseWhenCancellingPendingPromiseRejects()
{
$promise = async(function () {
await(new Promise(function () { }, function () {
throw new \RuntimeException('Operation cancelled');
}));
})();
$promise->cancel();
$promise->then(null, $this->expectCallableOnceWith(new \RuntimeException('Operation cancelled')));
}
public function testCancelAsyncWillReturnFulfilledPromiseWhenCancellingPendingPromiseRejectsInsideCatchThatReturnsValue()
{
$promise = async(function () {
try {
await(new Promise(function () { }, function () {
throw new \RuntimeException('Operation cancelled');
}));
} catch (\RuntimeException $e) {
return 42;
}
})();
$promise->cancel();
$promise->then($this->expectCallableOnceWith(42));
}
public function testCancelAsycWillReturnPendigPromiseWhenCancellingFirstPromiseRejectsInsideCatchThatAwaitsSecondPromise()
{
$promise = async(function () {
try {
await(new Promise(function () { }, function () {
throw new \RuntimeException('First operation cancelled');
}));
} catch (\RuntimeException $e) {
await(new Promise(function () { }, function () {
throw new \RuntimeException('Second operation never cancelled');
}));
}
})();
$promise->cancel();
$promise->then($this->expectCallableNever(), $this->expectCallableNever());
}
public function testCancelAsyncWillCancelNestedAwait()
{
self::expectOutputString('abc');
$this->expectException(\RuntimeException::class);
$this->expectExceptionMessage('Operation cancelled');
$promise = async(static function (): int {
echo 'a';
await(async(static function(): void {
echo 'b';
await(async(static function(): void {
echo 'c';
await(new Promise(function () { }, function () {
throw new \RuntimeException('Operation cancelled');
}));
echo 'd';
})());
echo 'e';
})());
echo 'f';
return time();
})();
$promise->cancel();
await($promise);
}
}