1
0
mirror of https://github.com/danog/amp.git synced 2024-12-04 02:17:54 +01:00
amp/test/RethrowTest.php

33 lines
674 B
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 Amp\delay;
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;
});
delay(0); // Tick the event loop.
2020-09-28 05:19:52 +02:00
$this->assertTrue($invoked);
$this->assertSame($reason, $exception);
2016-07-12 18:20:06 +02:00
}
}