2016-12-29 21:09:49 +01:00
|
|
|
<?php
|
2016-08-16 23:39:25 +02:00
|
|
|
|
2016-07-12 18:20:06 +02:00
|
|
|
namespace Amp\Test;
|
|
|
|
|
|
|
|
use Amp;
|
2017-03-10 21:31:57 +01:00
|
|
|
use Amp\Failure;
|
|
|
|
use Amp\MultiReasonException;
|
|
|
|
use Amp\Pause;
|
|
|
|
use Amp\Success;
|
|
|
|
use Amp\Loop;
|
2016-07-12 18:20:06 +02:00
|
|
|
|
|
|
|
class SomeTest extends \PHPUnit_Framework_TestCase {
|
|
|
|
/**
|
2016-08-11 21:35:58 +02:00
|
|
|
* @expectedException \Error
|
2016-12-16 00:28:22 +01:00
|
|
|
* @expectedExceptionMessage No promises provided
|
2016-07-12 18:20:06 +02:00
|
|
|
*/
|
|
|
|
public function testEmptyArray() {
|
2016-07-31 07:31:04 +02:00
|
|
|
Amp\some([]);
|
2016-07-12 18:20:06 +02:00
|
|
|
}
|
|
|
|
|
2016-11-14 20:59:21 +01:00
|
|
|
public function testSuccessfulPromisesArray() {
|
|
|
|
$promises = [new Success(1), new Success(2), new Success(3)];
|
2016-07-12 18:20:06 +02:00
|
|
|
|
|
|
|
$callback = function ($exception, $value) use (&$result) {
|
|
|
|
$result = $value;
|
|
|
|
};
|
|
|
|
|
2016-11-14 20:59:21 +01:00
|
|
|
Amp\some($promises)->when($callback);
|
2016-07-12 18:20:06 +02:00
|
|
|
|
2016-07-31 07:31:04 +02:00
|
|
|
$this->assertSame([[], [1, 2, 3]], $result);
|
2016-07-12 18:20:06 +02: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 (&$reason) {
|
|
|
|
$reason = $exception;
|
|
|
|
};
|
2017-01-07 13:47:45 +01:00
|
|
|
|
2016-12-16 00:28:22 +01:00
|
|
|
Amp\some($promises)->when($callback);
|
2017-01-07 13:47:45 +01:00
|
|
|
|
2016-12-16 00:28:22 +01:00
|
|
|
$this->assertInstanceOf(MultiReasonException::class, $reason);
|
|
|
|
$this->assertEquals([$exception, $exception, $exception], $reason->getReasons());
|
|
|
|
}
|
2016-07-12 18:20:06 +02:00
|
|
|
|
2016-11-14 20:59:21 +01:00
|
|
|
public function testSuccessfulAndFailedPromisesArray() {
|
2016-07-31 07:31:04 +02:00
|
|
|
$exception = new \Exception;
|
2016-11-14 20:59:21 +01:00
|
|
|
$promises = [new Failure($exception), new Failure($exception), new Success(3)];
|
2016-07-12 18:20:06 +02:00
|
|
|
|
|
|
|
$callback = function ($exception, $value) use (&$result) {
|
|
|
|
$result = $value;
|
|
|
|
};
|
|
|
|
|
2016-11-14 20:59:21 +01:00
|
|
|
Amp\some($promises)->when($callback);
|
2016-07-12 18:20:06 +02:00
|
|
|
|
2016-07-31 07:31:04 +02:00
|
|
|
$this->assertSame([[0 => $exception, 1 => $exception], [2 => 3]], $result);
|
2016-07-12 18:20:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testPendingAwatiablesArray() {
|
2017-03-10 21:31:57 +01:00
|
|
|
Loop::run(function () use (&$result) {
|
2016-11-14 20:59:21 +01:00
|
|
|
$promises = [
|
2016-08-16 23:39:25 +02:00
|
|
|
new Pause(20, 1),
|
|
|
|
new Pause(30, 2),
|
|
|
|
new Pause(10, 3),
|
2016-07-12 18:20:06 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
$callback = function ($exception, $value) use (&$result) {
|
|
|
|
$result = $value;
|
|
|
|
};
|
|
|
|
|
2016-11-14 20:59:21 +01:00
|
|
|
Amp\some($promises)->when($callback);
|
2016-07-12 18:20:06 +02:00
|
|
|
});
|
|
|
|
|
2016-07-31 07:31:04 +02:00
|
|
|
$this->assertEquals([[], [0 => 1, 1 => 2, 2 => 3]], $result);
|
2016-07-12 18:20:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testArrayKeysPreserved() {
|
2016-07-31 07:31:04 +02:00
|
|
|
$expected = [[], ['one' => 1, 'two' => 2, 'three' => 3]];
|
2016-07-12 18:20:06 +02:00
|
|
|
|
2017-03-10 21:31:57 +01:00
|
|
|
Loop::run(function () use (&$result) {
|
2016-11-14 20:59:21 +01:00
|
|
|
$promises = [
|
2016-08-16 23:39:25 +02:00
|
|
|
'one' => new Pause(20, 1),
|
|
|
|
'two' => new Pause(30, 2),
|
|
|
|
'three' => new Pause(10, 3),
|
2016-07-12 18:20:06 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
$callback = function ($exception, $value) use (&$result) {
|
|
|
|
$result = $value;
|
|
|
|
};
|
|
|
|
|
2016-11-14 20:59:21 +01:00
|
|
|
Amp\some($promises)->when($callback);
|
2016-07-12 18:20:06 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
$this->assertEquals($expected, $result);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2016-08-11 21:35:58 +02:00
|
|
|
* @expectedException \Error
|
2016-07-12 18:20:06 +02:00
|
|
|
*/
|
2016-11-14 20:59:21 +01:00
|
|
|
public function testNonPromise() {
|
2016-07-31 07:31:04 +02:00
|
|
|
Amp\some([1]);
|
2016-07-12 18:20:06 +02:00
|
|
|
}
|
|
|
|
}
|