1
0
mirror of https://github.com/danog/amp.git synced 2024-11-27 04:24:42 +01:00
amp/test/WaitTest.php

64 lines
1.4 KiB
PHP
Raw Normal View History

2016-08-18 05:25:54 +02:00
<?php declare(strict_types = 1);
2016-07-12 18:20:06 +02:00
namespace Amp\Test;
use Amp;
2016-11-14 20:59:21 +01:00
use Amp\{ Deferred, Failure, Pause, Success };
2016-07-12 18:20:06 +02:00
use Interop\Async\Loop;
class WaitTest extends \PHPUnit_Framework_TestCase {
2016-11-14 20:59:21 +01:00
public function testWaitOnSuccessfulPromise()
2016-07-12 18:20:06 +02:00
{
$value = 1;
2016-11-14 20:59:21 +01:00
$promise = new Success($value);
2016-07-12 18:20:06 +02:00
2016-11-14 20:59:21 +01:00
$result = Amp\wait($promise);
2016-07-12 18:20:06 +02:00
$this->assertSame($value, $result);
}
2016-11-14 20:59:21 +01:00
public function testWaitOnFailedPromise()
2016-07-12 18:20:06 +02:00
{
$exception = new \Exception();
2016-11-14 20:59:21 +01:00
$promise = new Failure($exception);
2016-07-12 18:20:06 +02:00
try {
2016-11-14 20:59:21 +01:00
$result = Amp\wait($promise);
2016-07-12 18:20:06 +02:00
} catch (\Exception $e) {
$this->assertSame($exception, $e);
return;
}
$this->fail('Rejection exception should be thrown from wait().');
}
/**
2016-11-14 20:59:21 +01:00
* @depends testWaitOnSuccessfulPromise
2016-07-12 18:20:06 +02:00
*/
2016-11-14 20:59:21 +01:00
public function testWaitOnPendingPromise()
2016-07-12 18:20:06 +02:00
{
Loop::execute(function () {
$value = 1;
2016-11-14 20:59:21 +01:00
$promise = new Pause(100, $value);
2016-07-12 18:20:06 +02:00
2016-11-14 20:59:21 +01:00
$result = Amp\wait($promise);
2016-07-12 18:20:06 +02:00
$this->assertSame($value, $result);
});
}
/**
2016-08-11 21:35:58 +02:00
* @expectedException \Error
2016-11-14 23:29:49 +01:00
* @expectedExceptionMessage Loop emptied without resolving promise
2016-07-12 18:20:06 +02:00
*/
2016-11-14 20:59:21 +01:00
public function testPromiseWithNoResolutionPathThrowsException()
2016-07-12 18:20:06 +02:00
{
2016-11-14 20:59:21 +01:00
$promise = new Deferred;
2016-07-12 18:20:06 +02:00
2016-11-14 23:29:49 +01:00
$result = Amp\wait($promise->promise());
2016-07-12 18:20:06 +02:00
}
}