1
0
mirror of https://github.com/danog/amp.git synced 2024-12-03 18:07:57 +01:00
amp/test/RethrowTest.php

57 lines
1.2 KiB
PHP
Raw Normal View History

<?php
2016-07-12 18:20:06 +02:00
namespace Amp\Test;
use Amp\Failure;
use Amp\Loop;
2020-09-28 05:19:52 +02:00
use Amp\PHPUnit\AsyncTestCase;
use Amp\Promise;
use function React\Promise\reject;
2020-09-28 05:19:52 +02:00
use function Amp\sleep;
2016-07-12 18:20:06 +02:00
2020-09-28 05:19:52 +02:00
class RethrowTest extends AsyncTestCase
2018-06-18 20:00:01 +02:00
{
2020-09-28 05:19:52 +02:00
public function testRethrow(): void
2018-06-18 20:00:01 +02:00
{
2016-07-12 18:20:06 +02:00
$exception = new \Exception;
2020-09-28 05:19:52 +02:00
$promise = new Failure($exception);
2016-07-12 18:20:06 +02:00
2020-09-28 05:19:52 +02:00
Promise\rethrow($promise);
2016-07-12 18:20:06 +02:00
2020-09-28 05:19:52 +02:00
$invoked = false;
Loop::setErrorHandler(function (\Throwable $exception) use (&$invoked, &$reason): void {
$invoked = true;
$reason = $exception;
});
sleep(0); // Tick the event loop.
$this->assertTrue($invoked);
$this->assertSame($reason, $exception);
2016-07-12 18:20:06 +02:00
}
/**
* @depends testRethrow
*/
2020-09-28 05:19:52 +02:00
public function testReactPromise(): void
2018-06-18 20:00:01 +02:00
{
$exception = new \Exception;
2020-09-28 05:19:52 +02:00
$promise = reject($exception);
2020-09-28 05:19:52 +02:00
Promise\rethrow($promise);
2020-09-28 05:19:52 +02:00
$invoked = false;
Loop::setErrorHandler(function (\Throwable $exception) use (&$invoked, &$reason): void {
$invoked = true;
$reason = $exception;
});
2017-03-14 22:15:36 +01:00
2020-09-28 05:19:52 +02:00
sleep(0); // Tick the event loop.
$this->assertTrue($invoked);
$this->assertSame($reason, $exception);
2017-03-14 22:15:36 +01:00
}
2016-07-12 18:20:06 +02:00
}