1
0
mirror of https://github.com/danog/amp.git synced 2024-11-30 04:29:08 +01:00
amp/test/WaitTest.php
Niklas Keller a66f25e4f6 Fix tests
2016-12-11 16:39:58 +01:00

64 lines
1.4 KiB
PHP

<?php declare(strict_types = 1);
namespace Amp\Test;
use Amp;
use Amp\{ Deferred, Failure, Pause, Success };
use Interop\Async\Loop;
class WaitTest extends \PHPUnit_Framework_TestCase {
public function testWaitOnSuccessfulPromise()
{
$value = 1;
$promise = new Success($value);
$result = Amp\wait($promise);
$this->assertSame($value, $result);
}
public function testWaitOnFailedPromise()
{
$exception = new \Exception();
$promise = new Failure($exception);
try {
$result = Amp\wait($promise);
} catch (\Exception $e) {
$this->assertSame($exception, $e);
return;
}
$this->fail('Rejection exception should be thrown from wait().');
}
/**
* @depends testWaitOnSuccessfulPromise
*/
public function testWaitOnPendingPromise()
{
Loop::execute(function () {
$value = 1;
$promise = new Pause(100, $value);
$result = Amp\wait($promise);
$this->assertSame($value, $result);
});
}
/**
* @expectedException \Error
* @expectedExceptionMessage Loop stopped without resolving promise
*/
public function testPromiseWithNoResolutionPathThrowsException()
{
$promise = new Deferred;
$result = Amp\wait($promise->promise());
}
}