1
0
mirror of https://github.com/danog/amp.git synced 2024-11-26 20:15:00 +01:00
amp/test/RethrowTest.php
Niklas Keller c12828081f Fix exceptions bubbling from Coroutine::__destruct
This has been an edge case potentially hiding some exceptions. The tests have been refactored to error if the loop has watchers leaking from one test to another test.
2019-05-31 11:38:02 -05:00

57 lines
1.2 KiB
PHP

<?php
namespace Amp\Test;
use Amp\Failure;
use Amp\Loop;
use Amp\Promise;
use function React\Promise\reject;
class RethrowTest extends BaseTest
{
public function testRethrow()
{
$exception = new \Exception;
try {
Loop::run(function () use ($exception) {
$promise = new Failure($exception);
Promise\rethrow($promise);
});
} catch (\Exception $reason) {
$this->assertSame($exception, $reason);
return;
}
$this->fail('Failed promise reason should be thrown from loop');
}
/**
* @depends testRethrow
*/
public function testReactPromise()
{
$exception = new \Exception;
try {
Loop::run(function () use ($exception) {
$promise = reject($exception);
Promise\rethrow($promise);
});
} catch (\Exception $reason) {
$this->assertSame($exception, $reason);
return;
}
$this->fail('Failed promise reason should be thrown from loop');
}
public function testNonPromise()
{
$this->expectException(\TypeError::class);
Promise\rethrow(42);
}
}