Skip to content

Commit 8cec07f

Browse files
authored
Merge pull request #37 from WyriHaximus-labs/promise-3
Forward compatibility with react/promise 3
2 parents fda8533 + fb261f8 commit 8cec07f

File tree

3 files changed

+10
-8
lines changed

3 files changed

+10
-8
lines changed

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"require": {
2121
"php": ">=5.3",
2222
"react/event-loop": "^1.0 || ^0.5 || ^0.4 || ^0.3.5",
23-
"react/promise": "^2.7.0 || ^1.2.1"
23+
"react/promise": "^3.0 || ^2.7.0 || ^1.2.1"
2424
},
2525
"require-dev": {
2626
"phpunit/phpunit": "^7.0 || ^6.4 || ^5.7 || ^4.8.35"

src/functions.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
namespace React\Promise\Timer;
44

5-
use React\Promise\CancellablePromiseInterface;
65
use React\EventLoop\LoopInterface;
6+
use React\Promise\CancellablePromiseInterface;
77
use React\Promise\PromiseInterface;
88
use React\Promise\Promise;
99

@@ -12,7 +12,7 @@ function timeout(PromiseInterface $promise, $time, LoopInterface $loop)
1212
// cancelling this promise will only try to cancel the input promise,
1313
// thus leaving responsibility to the input promise.
1414
$canceller = null;
15-
if ($promise instanceof CancellablePromiseInterface) {
15+
if ($promise instanceof CancellablePromiseInterface || (!\interface_exists('React\Promise\CancellablePromiseInterface') && \method_exists($promise, 'cancel'))) {
1616
// pass promise by reference to clean reference after cancellation handler
1717
// has been invoked once in order to avoid garbage references in call stack.
1818
$canceller = function () use (&$promise) {
@@ -48,7 +48,7 @@ function timeout(PromiseInterface $promise, $time, LoopInterface $loop)
4848

4949
// try to invoke cancellation handler of input promise and then clean
5050
// reference in order to avoid garbage references in call stack.
51-
if ($promise instanceof CancellablePromiseInterface) {
51+
if ($promise instanceof CancellablePromiseInterface || (!\interface_exists('React\Promise\CancellablePromiseInterface') && \method_exists($promise, 'cancel'))) {
5252
$promise->cancel();
5353
}
5454
$promise = null;

tests/FunctionTimeoutTest.php

+6-4
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public function testResolvedWillNotStartTimer()
4040

4141
public function testRejectedWillRejectRightAway()
4242
{
43-
$promise = Promise\reject();
43+
$promise = Promise\reject(new \Exception('reject'));
4444

4545
$promise = Timer\timeout($promise, 3, $this->loop);
4646

@@ -49,7 +49,7 @@ public function testRejectedWillRejectRightAway()
4949

5050
public function testRejectedWillNotStartTimer()
5151
{
52-
$promise = Promise\reject();
52+
$promise = Promise\reject(new \Exception('reject'));
5353

5454
Timer\timeout($promise, 3, $this->loop);
5555

@@ -73,10 +73,12 @@ public function testPendingWillRejectOnTimeout()
7373

7474
public function testPendingCancellableWillBeCancelledThroughFollowerOnTimeout()
7575
{
76-
$cancellable = $this->getMockBuilder('React\Promise\CancellablePromiseInterface')->getMock();
76+
$cancellableInterface = interface_exists('React\Promise\CancellablePromiseInterface') ?
77+
'React\Promise\CancellablePromiseInterface' : 'React\Promise\PromiseInterface';
78+
$cancellable = $this->getMockBuilder($cancellableInterface)->getMock();
7779
$cancellable->expects($this->once())->method('cancel');
7880

79-
$promise = $this->getMockBuilder('React\Promise\CancellablePromiseInterface')->getMock();
81+
$promise = $this->getMockBuilder($cancellableInterface)->getMock();
8082
$promise->expects($this->once())->method('then')->willReturn($cancellable);
8183

8284
Timer\timeout($promise, 0.01, $this->loop);

0 commit comments

Comments
 (0)