mirror of
https://github.com/danog/amp.git
synced 2024-11-27 04:24:42 +01:00
90 lines
2.3 KiB
PHP
90 lines
2.3 KiB
PHP
<?php
|
|
|
|
namespace Amp\Test;
|
|
|
|
use Amp;
|
|
use Amp\Failure;
|
|
use Amp\MultiReasonException;
|
|
use Amp\Pause;
|
|
use Amp\Success;
|
|
use Interop\Async\Loop;
|
|
|
|
class SomeTest extends \PHPUnit_Framework_TestCase {
|
|
/**
|
|
* @expectedException \Error
|
|
*/
|
|
public function testEmptyArray() {
|
|
Amp\some([]);
|
|
}
|
|
|
|
public function testSuccessfulAwaitablesArray() {
|
|
$awaitables = [new Success(1), new Success(2), new Success(3)];
|
|
|
|
$callback = function ($exception, $value) use (&$result) {
|
|
$result = $value;
|
|
};
|
|
|
|
Amp\some($awaitables)->when($callback);
|
|
|
|
$this->assertSame([[], [1, 2, 3]], $result);
|
|
}
|
|
|
|
public function testSuccessfulAndFailedAwaitablesArray() {
|
|
$exception = new \Exception;
|
|
$awaitables = [new Failure($exception), new Failure($exception), new Success(3)];
|
|
|
|
$callback = function ($exception, $value) use (&$result) {
|
|
$result = $value;
|
|
};
|
|
|
|
Amp\some($awaitables)->when($callback);
|
|
|
|
$this->assertSame([[0 => $exception, 1 => $exception], [2 => 3]], $result);
|
|
}
|
|
|
|
public function testPendingAwatiablesArray() {
|
|
Loop::execute(function () use (&$result) {
|
|
$awaitables = [
|
|
new Pause(0.2, 1),
|
|
new Pause(0.3, 2),
|
|
new Pause(0.1, 3),
|
|
];
|
|
|
|
$callback = function ($exception, $value) use (&$result) {
|
|
$result = $value;
|
|
};
|
|
|
|
Amp\some($awaitables)->when($callback);
|
|
});
|
|
|
|
$this->assertEquals([[], [0 => 1, 1 => 2, 2 => 3]], $result);
|
|
}
|
|
|
|
public function testArrayKeysPreserved() {
|
|
$expected = [[], ['one' => 1, 'two' => 2, 'three' => 3]];
|
|
|
|
Loop::execute(function () use (&$result) {
|
|
$awaitables = [
|
|
'one' => new Pause(0.2, 1),
|
|
'two' => new Pause(0.3, 2),
|
|
'three' => new Pause(0.1, 3),
|
|
];
|
|
|
|
$callback = function ($exception, $value) use (&$result) {
|
|
$result = $value;
|
|
};
|
|
|
|
Amp\some($awaitables)->when($callback);
|
|
});
|
|
|
|
$this->assertEquals($expected, $result);
|
|
}
|
|
|
|
/**
|
|
* @expectedException \Error
|
|
*/
|
|
public function testNonAwaitable() {
|
|
Amp\some([1]);
|
|
}
|
|
}
|