2016-12-29 21:09:49 +01:00
|
|
|
<?php
|
2016-08-16 23:39:25 +02:00
|
|
|
|
2016-07-12 18:20:06 +02:00
|
|
|
namespace Amp\Test;
|
|
|
|
|
2017-04-28 14:42:02 +02:00
|
|
|
use Amp\Delayed;
|
2017-03-10 21:31:57 +01:00
|
|
|
use Amp\Failure;
|
2020-09-28 05:19:52 +02:00
|
|
|
use Amp\PHPUnit\AsyncTestCase;
|
2017-03-15 17:12:49 +01:00
|
|
|
use Amp\Promise;
|
2017-03-10 21:31:57 +01:00
|
|
|
use Amp\Success;
|
2020-04-15 22:46:31 +02:00
|
|
|
use function Amp\call;
|
2016-07-12 18:20:06 +02:00
|
|
|
|
2020-09-28 05:19:52 +02:00
|
|
|
class WaitTest extends AsyncTestCase
|
2018-06-18 20:00:01 +02:00
|
|
|
{
|
2020-09-28 05:19:52 +02:00
|
|
|
public function testWaitOnSuccessfulPromise(): void
|
2018-06-18 20:00:01 +02:00
|
|
|
{
|
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
|
|
|
|
2017-03-15 17:12:49 +01:00
|
|
|
$result = Promise\wait($promise);
|
2016-07-12 18:20:06 +02:00
|
|
|
|
|
|
|
$this->assertSame($value, $result);
|
|
|
|
}
|
|
|
|
|
2020-09-28 05:19:52 +02:00
|
|
|
public function testWaitOnFailedPromise(): void
|
2018-06-18 20:00:01 +02:00
|
|
|
{
|
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 {
|
2017-03-15 17:12:49 +01:00
|
|
|
$result = Promise\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
|
|
|
*/
|
2020-09-28 05:19:52 +02:00
|
|
|
public function testWaitOnPendingPromise(): void
|
2018-06-18 20:00:01 +02:00
|
|
|
{
|
2020-09-28 05:19:52 +02:00
|
|
|
$value = 1;
|
2016-07-12 18:20:06 +02:00
|
|
|
|
2020-09-28 05:19:52 +02:00
|
|
|
$promise = new Delayed(100, $value);
|
2016-07-12 18:20:06 +02:00
|
|
|
|
2020-09-28 05:19:52 +02:00
|
|
|
$result = Promise\wait($promise);
|
2016-07-12 18:20:06 +02:00
|
|
|
|
2020-09-28 05:19:52 +02:00
|
|
|
$this->assertSame($value, $result);
|
2016-07-12 18:20:06 +02:00
|
|
|
}
|
2017-03-13 05:27:43 +01:00
|
|
|
|
2020-09-28 05:19:52 +02:00
|
|
|
public function testWaitNested(): void
|
2020-04-15 22:46:31 +02:00
|
|
|
{
|
|
|
|
$promise = call(static function () {
|
2020-10-07 06:40:14 +02:00
|
|
|
yield new Delayed(10);
|
2020-04-15 22:46:31 +02:00
|
|
|
|
|
|
|
return Promise\wait(new Delayed(10, 1));
|
|
|
|
});
|
|
|
|
|
|
|
|
$result = Promise\wait($promise);
|
|
|
|
|
|
|
|
$this->assertSame(1, $result);
|
|
|
|
}
|
|
|
|
|
2020-09-28 05:19:52 +02:00
|
|
|
public function testWaitNestedDelayed(): void
|
2020-04-15 22:46:31 +02:00
|
|
|
{
|
|
|
|
$promise = call(static function () {
|
2020-10-07 06:40:14 +02:00
|
|
|
yield new Delayed(10);
|
2020-04-15 22:46:31 +02:00
|
|
|
|
|
|
|
$result = Promise\wait(new Delayed(10, 1));
|
|
|
|
|
2020-10-07 06:40:14 +02:00
|
|
|
yield new Delayed(0);
|
2020-04-15 22:46:31 +02:00
|
|
|
|
|
|
|
return $result;
|
|
|
|
});
|
|
|
|
|
|
|
|
$result = Promise\wait($promise);
|
|
|
|
|
|
|
|
$this->assertSame(1, $result);
|
|
|
|
}
|
2016-07-12 18:20:06 +02:00
|
|
|
}
|