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-13 05:27:43 +01:00
|
|
|
use function React\Promise\reject;
|
2016-07-12 18:20:06 +02:00
|
|
|
|
2019-05-14 21:37:08 +02:00
|
|
|
class RethrowTest extends BaseTest
|
2018-06-18 20:00:01 +02: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
|
|
|
|
*/
|
2018-06-18 20:00:01 +02:00
|
|
|
public function testReactPromise()
|
|
|
|
{
|
2017-03-13 05:27:43 +01:00
|
|
|
$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
|
|
|
|
2018-06-18 20:00:01 +02:00
|
|
|
public function testNonPromise()
|
|
|
|
{
|
2017-04-23 19:08:40 +02:00
|
|
|
$this->expectException(\TypeError::class);
|
2017-03-15 17:12:49 +01:00
|
|
|
Promise\rethrow(42);
|
2017-03-14 22:15:36 +01:00
|
|
|
}
|
2016-07-12 18:20:06 +02:00
|
|
|
}
|