2016-12-29 21:09:49 +01:00
|
|
|
<?php
|
2016-08-16 23:39:25 +02:00
|
|
|
|
2016-07-12 18:20:06 +02:00
|
|
|
namespace Amp\Test;
|
|
|
|
|
|
|
|
use Amp\Failure;
|
2017-03-10 21:31:57 +01:00
|
|
|
use Amp\Loop;
|
2017-03-15 17:12:49 +01:00
|
|
|
use Amp\Promise;
|
2017-03-12 22:09:19 +01:00
|
|
|
use PHPUnit\Framework\TestCase;
|
2017-03-13 05:27:43 +01:00
|
|
|
use function React\Promise\reject;
|
2016-07-12 18:20:06 +02:00
|
|
|
|
2017-03-12 22:09:19 +01:00
|
|
|
class RethrowTest extends TestCase {
|
2017-03-13 05:27:43 +01:00
|
|
|
public function testRethrow() {
|
2016-07-12 18:20:06 +02:00
|
|
|
$exception = new \Exception;
|
|
|
|
|
|
|
|
try {
|
2017-03-10 21:31:57 +01:00
|
|
|
Loop::run(function () use ($exception) {
|
2016-11-14 20:59:21 +01:00
|
|
|
$promise = new Failure($exception);
|
2016-07-12 18:20:06 +02:00
|
|
|
|
2017-03-15 17:12:49 +01:00
|
|
|
Promise\rethrow($promise);
|
2016-07-12 18:20:06 +02:00
|
|
|
});
|
|
|
|
} catch (\Exception $reason) {
|
|
|
|
$this->assertSame($exception, $reason);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-11-14 20:59:21 +01:00
|
|
|
$this->fail('Failed promise reason should be thrown from loop');
|
2016-07-12 18:20:06 +02:00
|
|
|
}
|
2017-03-13 05:27:43 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @depends testRethrow
|
|
|
|
*/
|
|
|
|
public function testReactPromise() {
|
|
|
|
$exception = new \Exception;
|
|
|
|
|
|
|
|
try {
|
|
|
|
Loop::run(function () use ($exception) {
|
|
|
|
$promise = reject($exception);
|
|
|
|
|
2017-03-15 17:12:49 +01:00
|
|
|
Promise\rethrow($promise);
|
2017-03-13 05:27:43 +01:00
|
|
|
});
|
|
|
|
} catch (\Exception $reason) {
|
|
|
|
$this->assertSame($exception, $reason);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->fail('Failed promise reason should be thrown from loop');
|
|
|
|
}
|
2017-03-14 22:15:36 +01:00
|
|
|
|
|
|
|
public function testNonPromise() {
|
2017-03-15 17:12:49 +01:00
|
|
|
$this->expectException(\Amp\UnionTypeError::class);
|
|
|
|
Promise\rethrow(42);
|
2017-03-14 22:15:36 +01:00
|
|
|
}
|
2016-07-12 18:20:06 +02:00
|
|
|
}
|