1
0
mirror of https://github.com/danog/amp.git synced 2024-11-26 20:15:00 +01:00
amp/test/FailureTest.php

65 lines
1.5 KiB
PHP
Raw Permalink Normal View History

<?php
2016-07-12 18:20:06 +02:00
namespace Amp\Test;
use Amp\Failure;
use Amp\Loop;
use React\Promise\RejectedPromise as RejectedReactPromise;
2016-07-12 18:20:06 +02:00
class FailureTest extends BaseTest
2018-06-18 20:00:01 +02:00
{
2016-07-12 18:20:06 +02:00
/**
2016-08-11 21:35:58 +02:00
* @expectedException \TypeError
2016-07-12 18:20:06 +02:00
*/
2018-06-18 20:00:01 +02:00
public function testConstructWithNonException()
{
2016-07-12 18:20:06 +02:00
$failure = new Failure(1);
}
2018-06-18 20:00:01 +02:00
public function testOnResolve()
{
2016-07-12 18:20:06 +02:00
$exception = new \Exception;
$invoked = 0;
$callback = function ($exception, $value) use (&$invoked, &$reason) {
++$invoked;
$reason = $exception;
};
$failure = new Failure($exception);
2016-07-12 18:20:06 +02:00
$failure->onResolve($callback);
2016-07-12 18:20:06 +02:00
$this->assertSame(1, $invoked);
$this->assertSame($exception, $reason);
}
/**
* @expectedException \Exception
* @expectedExceptionMessage Success
*/
2018-06-18 20:00:01 +02:00
public function testOnResolveWithReactPromise()
{
Loop::run(function () {
$failure = new Failure(new \Exception);
$failure->onResolve(function ($exception, $value) {
return new RejectedReactPromise(new \Exception("Success"));
});
});
}
2018-06-18 20:00:01 +02:00
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);
}
2016-07-12 18:20:06 +02:00
}