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
128 lines (102 loc) · 3.85 KB
/
AsyncTest.php
File metadata and controls
128 lines (102 loc) · 3.85 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
<?php
namespace React\Tests\Async;
use React;
use React\EventLoop\Loop;
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 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 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);
}
}