2016-12-29 21:09:49 +01:00
|
|
|
<?php
|
2016-12-16 00:28:22 +01:00
|
|
|
|
|
|
|
namespace Amp\Test;
|
|
|
|
|
2017-04-28 14:42:02 +02:00
|
|
|
use Amp\Delayed;
|
2017-03-11 14:43:57 +01:00
|
|
|
use Amp\Failure;
|
2017-04-23 14:39:19 +02:00
|
|
|
use Amp\Loop;
|
2017-03-15 17:12:49 +01:00
|
|
|
use Amp\Promise;
|
2017-03-11 14:43:57 +01:00
|
|
|
use Amp\Success;
|
2016-12-16 00:28:22 +01:00
|
|
|
|
2017-03-11 14:57:03 +01:00
|
|
|
class AnyTest extends \PHPUnit\Framework\TestCase {
|
2016-12-16 00:28:22 +01:00
|
|
|
public function testEmptyArray() {
|
|
|
|
$callback = function ($exception, $value) use (&$result) {
|
|
|
|
$result = $value;
|
|
|
|
};
|
|
|
|
|
2017-03-21 17:23:37 +01:00
|
|
|
Promise\any([])->onResolve($callback);
|
2016-12-16 00:28:22 +01:00
|
|
|
|
|
|
|
$this->assertSame([[], []], $result);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testSuccessfulPromisesArray() {
|
|
|
|
$promises = [new Success(1), new Success(2), new Success(3)];
|
|
|
|
|
|
|
|
$callback = function ($exception, $value) use (&$result) {
|
|
|
|
$result = $value;
|
|
|
|
};
|
|
|
|
|
2017-03-21 17:23:37 +01:00
|
|
|
Promise\any($promises)->onResolve($callback);
|
2016-12-16 00:28:22 +01:00
|
|
|
|
2017-04-24 15:39:08 +02:00
|
|
|
$this->assertSame([[], [1, 2, 3]], $result);
|
2016-12-16 00:28:22 +01:00
|
|
|
}
|
2017-01-07 13:47:45 +01:00
|
|
|
|
2016-12-16 00:28:22 +01:00
|
|
|
public function testFailedPromisesArray() {
|
|
|
|
$exception = new \Exception;
|
|
|
|
$promises = [new Failure($exception), new Failure($exception), new Failure($exception)];
|
2017-01-07 13:47:45 +01:00
|
|
|
|
2016-12-16 00:28:22 +01:00
|
|
|
$callback = function ($exception, $value) use (&$result) {
|
|
|
|
$result = $value;
|
|
|
|
};
|
2017-01-07 13:47:45 +01:00
|
|
|
|
2017-03-21 17:23:37 +01:00
|
|
|
Promise\any($promises)->onResolve($callback);
|
2017-01-07 13:47:45 +01:00
|
|
|
|
2017-04-24 15:39:08 +02:00
|
|
|
$this->assertSame([[$exception, $exception, $exception], []], $result);
|
2016-12-16 00:28:22 +01:00
|
|
|
}
|
2017-01-07 13:47:45 +01:00
|
|
|
|
2016-12-16 00:28:22 +01:00
|
|
|
public function testMixedPromisesArray() {
|
|
|
|
$exception = new \Exception;
|
|
|
|
$promises = [new Success(1), new Failure($exception), new Success(3)];
|
2017-01-07 13:47:45 +01:00
|
|
|
|
2016-12-16 00:28:22 +01:00
|
|
|
$callback = function ($exception, $value) use (&$result) {
|
|
|
|
$result = $value;
|
|
|
|
};
|
2017-01-07 13:47:45 +01:00
|
|
|
|
2017-03-21 17:23:37 +01:00
|
|
|
Promise\any($promises)->onResolve($callback);
|
2017-01-07 13:47:45 +01:00
|
|
|
|
2017-04-24 15:39:08 +02:00
|
|
|
$this->assertSame([[1 => $exception], [0 => 1, 2 => 3]], $result);
|
2016-12-16 00:28:22 +01:00
|
|
|
}
|
|
|
|
|
2017-05-02 18:59:52 +02:00
|
|
|
public function testPendingPromiseArray() {
|
2017-03-10 21:31:57 +01:00
|
|
|
Loop::run(function () use (&$result) {
|
2016-12-16 00:28:22 +01:00
|
|
|
$promises = [
|
2017-04-28 14:42:02 +02:00
|
|
|
new Delayed(20, 1),
|
|
|
|
new Delayed(30, 2),
|
|
|
|
new Delayed(10, 3),
|
2016-12-16 00:28:22 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
$callback = function ($exception, $value) use (&$result) {
|
|
|
|
$result = $value;
|
|
|
|
};
|
|
|
|
|
2017-03-21 17:23:37 +01:00
|
|
|
Promise\any($promises)->onResolve($callback);
|
2016-12-16 00:28:22 +01:00
|
|
|
});
|
|
|
|
|
2017-04-24 16:28:56 +02:00
|
|
|
$this->assertEquals([[], [1, 2, 3]], $result);
|
2016-12-16 00:28:22 +01:00
|
|
|
}
|
2017-01-07 13:47:45 +01:00
|
|
|
|
2016-12-16 00:28:22 +01:00
|
|
|
/**
|
|
|
|
* @depends testMixedPromisesArray
|
|
|
|
*/
|
|
|
|
public function testArrayKeysPreserved() {
|
|
|
|
$exception = new \Exception;
|
|
|
|
$expected = [['two' => $exception], ['one' => 1, 'three' => 3]];
|
|
|
|
|
2017-03-10 21:31:57 +01:00
|
|
|
Loop::run(function () use (&$result, $exception) {
|
2016-12-16 00:28:22 +01:00
|
|
|
$promises = [
|
2017-04-28 14:42:02 +02:00
|
|
|
'one' => new Delayed(20, 1),
|
2016-12-16 00:28:22 +01:00
|
|
|
'two' => new Failure($exception),
|
2017-04-28 14:42:02 +02:00
|
|
|
'three' => new Delayed(10, 3),
|
2016-12-16 00:28:22 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
$callback = function ($exception, $value) use (&$result) {
|
|
|
|
$result = $value;
|
|
|
|
};
|
|
|
|
|
2017-03-21 17:23:37 +01:00
|
|
|
Promise\any($promises)->onResolve($callback);
|
2016-12-16 00:28:22 +01:00
|
|
|
});
|
|
|
|
|
2017-04-24 16:28:56 +02:00
|
|
|
$this->assertEquals($expected, $result);
|
2016-12-16 00:28:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-04-23 19:08:40 +02:00
|
|
|
* @expectedException \TypeError
|
2016-12-16 00:28:22 +01:00
|
|
|
*/
|
|
|
|
public function testNonPromise() {
|
2017-03-15 17:12:49 +01:00
|
|
|
Promise\any([1]);
|
2016-12-16 00:28:22 +01:00
|
|
|
}
|
|
|
|
}
|