2016-12-29 21:09:49 +01:00
|
|
|
<?php
|
2016-12-16 00:28:22 +01: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;
|
2017-04-23 14:39:19 +02:00
|
|
|
use Amp\Loop;
|
2017-03-10 21:31:57 +01:00
|
|
|
use Amp\MultiReasonException;
|
2017-03-15 17:12:49 +01:00
|
|
|
use Amp\Promise;
|
2017-03-10 21:31:57 +01:00
|
|
|
use Amp\Success;
|
2017-05-02 18:59:52 +02:00
|
|
|
use React\Promise\FulfilledPromise;
|
2016-12-16 00:28:22 +01:00
|
|
|
|
2019-05-14 21:37:08 +02:00
|
|
|
class FirstTest extends BaseTest
|
2018-06-18 20:00:01 +02:00
|
|
|
{
|
2016-12-16 00:28:22 +01:00
|
|
|
/**
|
|
|
|
* @expectedException \Error
|
|
|
|
* @expectedExceptionMessage No promises provided
|
|
|
|
*/
|
2018-06-18 20:00:01 +02:00
|
|
|
public function testEmptyArray()
|
|
|
|
{
|
2017-03-15 17:12:49 +01:00
|
|
|
Promise\first([]);
|
2016-12-16 00:28:22 +01:00
|
|
|
}
|
|
|
|
|
2018-06-18 20:00:01 +02:00
|
|
|
public function testSuccessfulPromisesArray()
|
|
|
|
{
|
2016-12-16 00:28:22 +01:00
|
|
|
$promises = [new Success(1), new Success(2), new Success(3)];
|
|
|
|
|
|
|
|
$callback = function ($exception, $value) use (&$result) {
|
|
|
|
$result = $value;
|
|
|
|
};
|
|
|
|
|
2017-03-21 17:23:37 +01:00
|
|
|
Promise\first($promises)->onResolve($callback);
|
2016-12-16 00:28:22 +01:00
|
|
|
|
|
|
|
$this->assertSame(1, $result);
|
|
|
|
}
|
2017-01-07 13:47:45 +01:00
|
|
|
|
2018-06-18 20:00:01 +02:00
|
|
|
public function testFailedPromisesArray()
|
|
|
|
{
|
2016-12-16 00:28:22 +01:00
|
|
|
$exception = new \Exception;
|
|
|
|
$promises = [new Failure($exception), new Failure($exception), new Failure($exception)];
|
2017-01-07 13:47:45 +01:00
|
|
|
|
2016-12-16 00:28:22 +01:00
|
|
|
$callback = function ($exception, $value) use (&$reason) {
|
|
|
|
$reason = $exception;
|
|
|
|
};
|
2017-01-07 13:47:45 +01:00
|
|
|
|
2017-03-21 17:23:37 +01:00
|
|
|
Promise\first($promises)->onResolve($callback);
|
2017-01-07 13:47:45 +01:00
|
|
|
|
2016-12-16 00:28:22 +01:00
|
|
|
$this->assertInstanceOf(MultiReasonException::class, $reason);
|
2017-04-24 15:39:08 +02:00
|
|
|
$this->assertSame([$exception, $exception, $exception], $reason->getReasons());
|
2016-12-16 00:28:22 +01:00
|
|
|
}
|
2017-01-07 13:47:45 +01:00
|
|
|
|
2018-06-18 20:00:01 +02:00
|
|
|
public function testMixedPromisesArray()
|
|
|
|
{
|
2016-12-16 00:28:22 +01:00
|
|
|
$exception = new \Exception;
|
|
|
|
$promises = [new Failure($exception), new Failure($exception), new Success(3)];
|
2017-01-07 13:47:45 +01:00
|
|
|
|
2016-12-16 00:28:22 +01:00
|
|
|
$callback = function ($exception, $value) use (&$result) {
|
|
|
|
$result = $value;
|
|
|
|
};
|
2017-01-07 13:47:45 +01:00
|
|
|
|
2017-03-21 17:23:37 +01:00
|
|
|
Promise\first($promises)->onResolve($callback);
|
2017-01-07 13:47:45 +01:00
|
|
|
|
2016-12-16 00:28:22 +01:00
|
|
|
$this->assertSame(3, $result);
|
|
|
|
}
|
|
|
|
|
2018-06-18 20:00:01 +02:00
|
|
|
public function testReactPromiseArray()
|
|
|
|
{
|
2017-05-02 18:59:52 +02:00
|
|
|
$promises = [new FulfilledPromise(1), new FulfilledPromise(2), new Success(3)];
|
|
|
|
|
|
|
|
$callback = function ($exception, $value) use (&$result) {
|
|
|
|
$result = $value;
|
|
|
|
};
|
|
|
|
|
|
|
|
Promise\first($promises)->onResolve($callback);
|
|
|
|
|
|
|
|
$this->assertSame(1, $result);
|
|
|
|
}
|
|
|
|
|
2018-06-18 20:00:01 +02:00
|
|
|
public function testPendingPromiseArray()
|
|
|
|
{
|
2017-03-10 21:31:57 +01:00
|
|
|
Loop::run(function () use (&$result) {
|
2016-12-16 00:28:22 +01:00
|
|
|
$promises = [
|
2017-04-28 14:42:02 +02:00
|
|
|
new Delayed(20, 1),
|
|
|
|
new Delayed(30, 2),
|
|
|
|
new Delayed(10, 3),
|
2016-12-16 00:28:22 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
$callback = function ($exception, $value) use (&$result) {
|
|
|
|
$result = $value;
|
|
|
|
};
|
|
|
|
|
2017-03-21 17:23:37 +01:00
|
|
|
Promise\first($promises)->onResolve($callback);
|
2016-12-16 00:28:22 +01:00
|
|
|
});
|
2017-01-07 13:47:45 +01:00
|
|
|
|
2016-12-16 00:28:22 +01:00
|
|
|
$this->assertSame(3, $result);
|
|
|
|
}
|
2017-01-07 13:47:45 +01:00
|
|
|
|
2016-12-16 00:28:22 +01:00
|
|
|
/**
|
2017-04-23 19:08:40 +02:00
|
|
|
* @expectedException \TypeError
|
2016-12-16 00:28:22 +01:00
|
|
|
*/
|
2018-06-18 20:00:01 +02:00
|
|
|
public function testNonPromise()
|
|
|
|
{
|
2017-03-15 17:12:49 +01:00
|
|
|
Promise\first([1]);
|
2016-12-16 00:28:22 +01:00
|
|
|
}
|
|
|
|
}
|