1
0
mirror of https://github.com/danog/amp.git synced 2024-11-26 20:15:00 +01:00
amp/test/FirstTest.php

106 lines
2.6 KiB
PHP
Raw Normal View History

<?php
namespace Amp\Test;
use Amp\Delayed;
use Amp\Failure;
2017-04-23 14:39:19 +02:00
use Amp\Loop;
use Amp\MultiReasonException;
use Amp\Promise;
use Amp\Success;
use React\Promise\FulfilledPromise;
class FirstTest extends BaseTest
2018-06-18 20:00:01 +02:00
{
/**
* @expectedException \Error
* @expectedExceptionMessage No promises provided
*/
2018-06-18 20:00:01 +02:00
public function testEmptyArray()
{
Promise\first([]);
}
2018-06-18 20:00:01 +02:00
public function testSuccessfulPromisesArray()
{
$promises = [new Success(1), new Success(2), new Success(3)];
$callback = function ($exception, $value) use (&$result) {
$result = $value;
};
Promise\first($promises)->onResolve($callback);
$this->assertSame(1, $result);
}
2018-06-18 20:00:01 +02:00
public function testFailedPromisesArray()
{
$exception = new \Exception;
$promises = [new Failure($exception), new Failure($exception), new Failure($exception)];
$callback = function ($exception, $value) use (&$reason) {
$reason = $exception;
};
Promise\first($promises)->onResolve($callback);
$this->assertInstanceOf(MultiReasonException::class, $reason);
$this->assertSame([$exception, $exception, $exception], $reason->getReasons());
}
2018-06-18 20:00:01 +02:00
public function testMixedPromisesArray()
{
$exception = new \Exception;
$promises = [new Failure($exception), new Failure($exception), new Success(3)];
$callback = function ($exception, $value) use (&$result) {
$result = $value;
};
Promise\first($promises)->onResolve($callback);
$this->assertSame(3, $result);
}
2018-06-18 20:00:01 +02:00
public function testReactPromiseArray()
{
$promises = [new FulfilledPromise(1), new FulfilledPromise(2), new Success(3)];
$callback = function ($exception, $value) use (&$result) {
$result = $value;
};
Promise\first($promises)->onResolve($callback);
$this->assertSame(1, $result);
}
2018-06-18 20:00:01 +02:00
public function testPendingPromiseArray()
{
Loop::run(function () use (&$result) {
$promises = [
new Delayed(20, 1),
new Delayed(30, 2),
new Delayed(10, 3),
];
$callback = function ($exception, $value) use (&$result) {
$result = $value;
};
Promise\first($promises)->onResolve($callback);
});
$this->assertSame(3, $result);
}
/**
2017-04-23 19:08:40 +02:00
* @expectedException \TypeError
*/
2018-06-18 20:00:01 +02:00
public function testNonPromise()
{
Promise\first([1]);
}
}