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;
|
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-11 14:43:57 +01:00
|
|
|
use Amp\Success;
|
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 AllTest extends AsyncTestCase
|
2018-06-18 20:00:01 +02:00
|
|
|
{
|
2020-09-28 05:19:52 +02:00
|
|
|
public function testEmptyArray(): void
|
2018-06-18 20:00:01 +02:00
|
|
|
{
|
2020-09-28 05:19:52 +02:00
|
|
|
$this->assertSame([], await(Promise\all([])));
|
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
|
|
|
|
2020-09-28 05:19:52 +02:00
|
|
|
$this->assertSame([1, 2, 3], await(Promise\all($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 = [
|
|
|
|
new Delayed(20, 1),
|
|
|
|
new Delayed(30, 2),
|
|
|
|
new Delayed(10, 3),
|
|
|
|
];
|
2016-07-12 18:20:06 +02:00
|
|
|
|
2020-09-28 05:19:52 +02:00
|
|
|
$this->assertSame([1, 2, 3], await(Promise\all($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-12 18:20:06 +02:00
|
|
|
$expected = ['one' => 1, 'two' => 2, 'three' => 3];
|
|
|
|
|
2020-09-28 05:19:52 +02:00
|
|
|
$promises = [
|
|
|
|
'one' => new Delayed(20, 1),
|
|
|
|
'two' => new Delayed(30, 2),
|
|
|
|
'three' => new Delayed(10, 3),
|
|
|
|
];
|
2016-07-12 18:20:06 +02:00
|
|
|
|
2020-09-28 05:19:52 +02:00
|
|
|
$this->assertEquals($expected, await(Promise\all($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);
|
|
|
|
|
2017-03-15 17:12:49 +01:00
|
|
|
Promise\all([1]);
|
2016-07-12 18:20:06 +02:00
|
|
|
}
|
|
|
|
}
|