1
0
mirror of https://github.com/danog/amp.git synced 2024-12-11 17:09:40 +01:00
amp/test/AnyTest.php

77 lines
1.9 KiB
PHP
Raw Normal View History

<?php
namespace Amp\Test;
2017-03-11 14:43:57 +01:00
use Amp\Failure;
2020-09-28 05:19:52 +02:00
use Amp\PHPUnit\AsyncTestCase;
use Amp\Promise;
2017-03-11 14:43: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;
2020-09-28 05:19:52 +02:00
class AnyTest 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\any([])));
}
2018-06-18 20:00:01 +02:00
public function testSuccessfulPromisesArray()
{
$promises = [new Success(1), new Success(2), new Success(3)];
2021-03-26 22:34:32 +01:00
self::assertSame([[], [1, 2, 3]], await(Promise\any($promises)));
}
2018-06-18 20:00:01 +02:00
public function testFailedPromisesArray()
{
$exception = new \Exception;
$promises = [new Failure($exception), new Failure($exception), new Failure($exception)];
2021-03-26 22:34:32 +01:00
self::assertSame([[$exception, $exception, $exception], []], await(Promise\any($promises)));
}
2018-06-18 20:00:01 +02:00
public function testMixedPromisesArray()
{
$exception = new \Exception;
$promises = [new Success(1), new Failure($exception), new Success(3)];
2021-03-26 22:34:32 +01:00
self::assertSame([[1 => $exception], [0 => 1, 2 => 3]], await(Promise\any($promises)));
}
2018-06-18 20:00:01 +02:00
public function testPendingPromiseArray()
{
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
];
2021-03-26 22:34:32 +01:00
self::assertEquals([[], [1, 2, 3]], await(Promise\any($promises)));
}
/**
* @depends testMixedPromisesArray
*/
2018-06-18 20:00:01 +02:00
public function testArrayKeysPreserved()
{
$exception = new \Exception;
$expected = [['two' => $exception], ['one' => 1, 'three' => 3]];
2020-09-28 05:19:52 +02:00
$promises = [
2021-03-26 22:34:32 +01:00
'one' => asyncValue(20, 1),
2020-09-28 05:19:52 +02:00
'two' => new Failure($exception),
2021-03-26 22:34:32 +01:00
'three' => asyncValue(10, 3),
2020-09-28 05:19:52 +02:00
];
2021-03-26 22:34:32 +01:00
self::assertEquals($expected, await(Promise\any($promises)));
}
2018-06-18 20:00:01 +02:00
public function testNonPromise()
{
2020-09-28 05:19:52 +02:00
$this->expectException(\TypeError::class);
Promise\any([1]);
}
}