mirror of
https://github.com/danog/amp.git
synced 2024-11-26 20:15:00 +01:00
c12828081f
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.
65 lines
1.5 KiB
PHP
65 lines
1.5 KiB
PHP
<?php
|
|
|
|
namespace Amp\Test;
|
|
|
|
use Amp\Failure;
|
|
use Amp\Loop;
|
|
use React\Promise\RejectedPromise as RejectedReactPromise;
|
|
|
|
class FailureTest extends BaseTest
|
|
{
|
|
/**
|
|
* @expectedException \TypeError
|
|
*/
|
|
public function testConstructWithNonException()
|
|
{
|
|
$failure = new Failure(1);
|
|
}
|
|
|
|
public function testOnResolve()
|
|
{
|
|
$exception = new \Exception;
|
|
|
|
$invoked = 0;
|
|
$callback = function ($exception, $value) use (&$invoked, &$reason) {
|
|
++$invoked;
|
|
$reason = $exception;
|
|
};
|
|
|
|
$failure = new Failure($exception);
|
|
|
|
$failure->onResolve($callback);
|
|
|
|
$this->assertSame(1, $invoked);
|
|
$this->assertSame($exception, $reason);
|
|
}
|
|
|
|
/**
|
|
* @expectedException \Exception
|
|
* @expectedExceptionMessage Success
|
|
*/
|
|
public function testOnResolveWithReactPromise()
|
|
{
|
|
Loop::run(function () {
|
|
$failure = new Failure(new \Exception);
|
|
$failure->onResolve(function ($exception, $value) {
|
|
return new RejectedReactPromise(new \Exception("Success"));
|
|
});
|
|
});
|
|
}
|
|
|
|
public function testOnResolveWithGenerator()
|
|
{
|
|
$exception = new \Exception;
|
|
$failure = new Failure($exception);
|
|
$invoked = false;
|
|
$failure->onResolve(function ($exception, $value) use (&$invoked) {
|
|
$invoked = true;
|
|
return $exception;
|
|
yield; // Unreachable, but makes function a generator.
|
|
});
|
|
|
|
$this->assertTrue($invoked);
|
|
}
|
|
}
|