1
0
mirror of https://github.com/danog/amp.git synced 2024-12-12 09:29:45 +01:00
amp/test/FailureTest.php

73 lines
1.7 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\PHPUnit\TestException;
use Amp\Promise;
2020-09-28 05:19:52 +02:00
use function Amp\await;
use function Amp\sleep;
use function React\Promise\reject;
2016-07-12 18:20:06 +02:00
2020-09-28 05:19:52 +02:00
class FailureTest extends AsyncTestCase
2018-06-18 20:00:01 +02:00
{
2020-09-28 05:19:52 +02:00
public function testOnResolve(): void
2018-06-18 20:00:01 +02:00
{
2016-07-12 18:20:06 +02:00
$exception = new \Exception;
$failure = new Failure($exception);
2016-07-12 18:20:06 +02:00
2020-09-28 05:19:52 +02:00
try {
await($failure);
} catch (\Exception $reason) {
$this->assertSame($exception, $reason);
return;
}
2016-07-12 18:20:06 +02:00
2020-09-28 05:19:52 +02:00
$this->fail("Promise was not failed");
2016-07-12 18:20:06 +02:00
}
2020-09-28 05:19:52 +02:00
public function testOnResolveWithReactPromise(): void
2018-06-18 20:00:01 +02:00
{
2020-09-28 05:19:52 +02:00
$failure = new Failure(new \Exception);
$failure->onResolve(function () {
return reject(new \Exception("Success"));
});
Loop::setErrorHandler(function (\Throwable $exception) use (&$reason): void {
$reason = $exception;
});
2020-09-28 05:19:52 +02:00
sleep(0); // Tick event loop to invoke error callback.
$this->assertSame("Success", $reason->getMessage());
}
2020-09-28 05:19:52 +02:00
public function testOnResolveWithGenerator(): void
2018-06-18 20:00:01 +02:00
{
$exception = new \Exception;
$failure = new Failure($exception);
$invoked = false;
2020-09-28 05:19:52 +02:00
$failure->onResolve(function () use (&$invoked): \Generator {
if (false) {
yield;
}
$invoked = true;
});
2020-09-28 05:19:52 +02:00
try {
await($failure);
} catch (\Exception $reason) {
$this->assertSame($exception, $reason);
sleep(0); // Tick event loop to execute coroutine
$this->assertTrue($invoked);
return;
}
$this->fail("Promise was not failed");
}
2016-07-12 18:20:06 +02:00
}