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-03-10 21:31:57 +01:00
|
|
|
use Amp\Failure;
|
|
|
|
use Amp\MultiReasonException;
|
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;
|
2021-03-26 22:34:32 +01:00
|
|
|
use function Amp\asyncValue;
|
2020-09-28 05:19:52 +02:00
|
|
|
use function Amp\await;
|
2016-07-12 18:20:06 +02:00
|
|
|
|
2020-09-28 05:19:52 +02:00
|
|
|
class SomeTest extends AsyncTestCase
|
2018-06-18 20:00:01 +02:00
|
|
|
{
|
|
|
|
public function testEmptyArray()
|
|
|
|
{
|
2021-03-26 22:34:32 +01:00
|
|
|
self::assertSame([[], []], await(Promise\some([], 0)));
|
2017-03-27 18:42:11 +02:00
|
|
|
}
|
|
|
|
|
2020-09-28 05:19:52 +02:00
|
|
|
public function testEmptyArrayWithNonZeroRequired(): void
|
2018-06-18 20:00:01 +02:00
|
|
|
{
|
2020-09-28 05:19:52 +02:00
|
|
|
$this->expectException(\Error::class);
|
|
|
|
$this->expectExceptionMessage("Too few promises provided");
|
|
|
|
|
2017-03-27 18:42:11 +02:00
|
|
|
Promise\some([], 1);
|
|
|
|
}
|
|
|
|
|
2020-09-28 05:19:52 +02:00
|
|
|
public function testInvalidRequiredNumberOfPromises(): void
|
2018-06-18 20:00:01 +02:00
|
|
|
{
|
2020-09-28 05:19:52 +02:00
|
|
|
$this->expectException(\Error::class);
|
|
|
|
$this->expectExceptionMessage("non-negative");
|
|
|
|
|
2017-03-27 18:42:11 +02:00
|
|
|
Promise\some([], -1);
|
2016-07-12 18:20:06 +02:00
|
|
|
}
|
|
|
|
|
2020-09-28 05:19:52 +02:00
|
|
|
public function testSuccessfulPromisesArray(): void
|
2018-06-18 20:00:01 +02:00
|
|
|
{
|
2016-11-14 20:59:21 +01:00
|
|
|
$promises = [new Success(1), new Success(2), new Success(3)];
|
2016-07-12 18:20:06 +02:00
|
|
|
|
2021-03-26 22:34:32 +01:00
|
|
|
self::assertSame([[], [1, 2, 3]], await(Promise\some($promises)));
|
2016-07-12 18:20:06 +02:00
|
|
|
}
|
2017-01-07 13:47:45 +01:00
|
|
|
|
2020-09-28 05:19:52 +02:00
|
|
|
public function testFailedPromisesArray(): void
|
2018-06-18 20:00:01 +02:00
|
|
|
{
|
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
|
|
|
|
2020-09-28 05:19:52 +02:00
|
|
|
try {
|
|
|
|
await(Promise\some($promises));
|
|
|
|
} catch (MultiReasonException $reason) {
|
2021-03-26 22:34:32 +01:00
|
|
|
self::assertSame([$exception, $exception, $exception], $reason->getReasons());
|
2020-09-28 05:19:52 +02:00
|
|
|
return;
|
|
|
|
}
|
2017-01-07 13:47:45 +01:00
|
|
|
|
2021-03-26 22:34:32 +01:00
|
|
|
self::fail("Promise should have failed");
|
2016-12-16 00:28:22 +01:00
|
|
|
}
|
2016-07-12 18:20:06 +02:00
|
|
|
|
2020-09-28 05:19:52 +02:00
|
|
|
public function testSuccessfulAndFailedPromisesArray(): void
|
2018-06-18 20:00:01 +02:00
|
|
|
{
|
2016-07-31 07:31:04 +02:00
|
|
|
$exception = new \Exception;
|
2016-11-14 20:59:21 +01:00
|
|
|
$promises = [new Failure($exception), new Failure($exception), new Success(3)];
|
2016-07-12 18:20:06 +02:00
|
|
|
|
2021-03-26 22:34:32 +01:00
|
|
|
self::assertSame([[0 => $exception, 1 => $exception], [2 => 3]], await(Promise\some($promises)));
|
2016-07-12 18:20:06 +02:00
|
|
|
}
|
|
|
|
|
2020-09-28 05:19:52 +02:00
|
|
|
public function testPendingPromiseArray(): void
|
2018-06-18 20:00:01 +02:00
|
|
|
{
|
2020-09-28 05:19:52 +02:00
|
|
|
$promises = [
|
2021-03-26 22:34:32 +01:00
|
|
|
asyncValue(20, 1),
|
|
|
|
asyncValue(30, 2),
|
|
|
|
asyncValue(10, 3),
|
2020-09-28 05:19:52 +02:00
|
|
|
];
|
2016-07-12 18:20:06 +02:00
|
|
|
|
2021-03-26 22:34:32 +01:00
|
|
|
self::assertEquals([[], [0 => 1, 1 => 2, 2 => 3]], await(Promise\some($promises)));
|
2016-07-12 18:20:06 +02:00
|
|
|
}
|
|
|
|
|
2020-09-28 05:19:52 +02:00
|
|
|
public function testArrayKeysPreserved(): void
|
2018-06-18 20:00:01 +02:00
|
|
|
{
|
2016-07-31 07:31:04 +02:00
|
|
|
$expected = [[], ['one' => 1, 'two' => 2, 'three' => 3]];
|
2016-07-12 18:20:06 +02:00
|
|
|
|
2020-09-28 05:19:52 +02:00
|
|
|
$promises = [
|
2021-03-26 22:34:32 +01:00
|
|
|
'one' => asyncValue(20, 1),
|
|
|
|
'two' => asyncValue(30, 2),
|
|
|
|
'three' => asyncValue(10, 3),
|
2020-09-28 05:19:52 +02:00
|
|
|
];
|
2016-07-12 18:20:06 +02:00
|
|
|
|
2021-03-26 22:34:32 +01:00
|
|
|
self::assertEquals($expected, await(Promise\some($promises)));
|
2016-07-12 18:20:06 +02:00
|
|
|
}
|
|
|
|
|
2020-09-28 05:19:52 +02:00
|
|
|
public function testNonPromise(): void
|
2018-06-18 20:00:01 +02:00
|
|
|
{
|
2020-09-28 05:19:52 +02:00
|
|
|
$this->expectException(\TypeError::class);
|
|
|
|
|
|
|
|
await(Promise\some([1]));
|
2016-07-12 18:20:06 +02:00
|
|
|
}
|
|
|
|
}
|