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

81 lines
2.0 KiB
PHP
Raw Normal View History

<?php
namespace Amp\Test;
use Amp\Delayed;
use Amp\Failure;
use Amp\MultiReasonException;
2020-09-28 05:19:52 +02:00
use Amp\PHPUnit\AsyncTestCase;
use Amp\Promise;
use Amp\Success;
2020-09-28 05:19:52 +02:00
use function Amp\await;
use function React\Promise\resolve;
2020-09-28 05:19:52 +02:00
class FirstTest 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->expectException(\Error::class);
$this->expectExceptionMessage("No promises provided");
Promise\first([]);
}
2020-09-28 05:19:52 +02:00
public function testSuccessfulPromisesArray(): void
2018-06-18 20:00:01 +02:00
{
$promises = [new Success(1), new Success(2), new Success(3)];
2020-09-28 05:19:52 +02:00
$this->assertSame(1, await(Promise\first($promises)));
}
2020-09-28 05:19:52 +02:00
public function testFailedPromisesArray(): void
2018-06-18 20:00:01 +02:00
{
$exception = new \Exception;
$promises = [new Failure($exception), new Failure($exception), new Failure($exception)];
2020-09-28 05:19:52 +02:00
try {
await(Promise\first($promises));
} catch (MultiReasonException $reason) {
$this->assertSame([$exception, $exception, $exception], $reason->getReasons());
return;
}
2020-09-28 05:19:52 +02:00
$this->fail("Promise was not failed");
}
2020-09-28 05:19:52 +02:00
public function testMixedPromisesArray(): void
2018-06-18 20:00:01 +02:00
{
$exception = new \Exception;
$promises = [new Failure($exception), new Failure($exception), new Success(3)];
2020-09-28 05:19:52 +02:00
$this->assertSame(3, await(Promise\first($promises)));
}
2020-09-28 05:19:52 +02:00
public function testReactPromiseArray(): void
2018-06-18 20:00:01 +02:00
{
2020-09-28 05:19:52 +02:00
$promises = [resolve(1), resolve(2), new Success(3)];
2020-09-28 05:19:52 +02:00
$this->assertSame(1, await(Promise\first($promises)));
}
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),
];
2020-09-28 05:19:52 +02:00
$this->assertSame(3, await(Promise\first($promises)));
2020-09-28 05:19:52 +02:00
await(Promise\all($promises)); // Clear event loop.
}
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);
Promise\first([1]);
}
}