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

77 lines
1.9 KiB
PHP
Raw Normal View History

<?php
namespace Amp\Test;
use Amp\Delayed;
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;
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()
{
2020-09-28 05:19:52 +02:00
$this->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)];
2020-09-28 05:19:52 +02:00
$this->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)];
2020-09-28 05:19:52 +02:00
$this->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)];
2020-09-28 05:19:52 +02:00
$this->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 = [
new Delayed(20, 1),
new Delayed(30, 2),
new Delayed(10, 3),
];
2020-09-28 05:19:52 +02:00
$this->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 = [
'one' => new Delayed(20, 1),
'two' => new Failure($exception),
'three' => new Delayed(10, 3),
];
2020-09-28 05:19:52 +02:00
$this->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]);
}
}