mirror of
https://github.com/danog/amp.git
synced 2024-12-03 18:07:57 +01:00
138 lines
3.4 KiB
PHP
138 lines
3.4 KiB
PHP
<?php
|
|
|
|
namespace Amp\Test\Pipeline;
|
|
|
|
use Amp\Delayed;
|
|
use Amp\Failure;
|
|
use Amp\PHPUnit\AsyncTestCase;
|
|
use Amp\PHPUnit\TestException;
|
|
use Amp\Pipeline;
|
|
use Amp\Success;
|
|
use function Amp\delay;
|
|
|
|
class FromIterableTest extends AsyncTestCase
|
|
{
|
|
const TIMEOUT = 10;
|
|
|
|
public function testSuccessfulPromises(): void
|
|
{
|
|
$expected = \range(1, 3);
|
|
$pipeline = Pipeline\fromIterable([new Success(1), new Success(2), new Success(3)]);
|
|
|
|
while (null !== $value = $pipeline->continue()) {
|
|
$this->assertSame(\array_shift($expected), $value);
|
|
}
|
|
}
|
|
|
|
public function testFailedPromises(): void
|
|
{
|
|
$exception = new \Exception;
|
|
$iterator = Pipeline\fromIterable([new Failure($exception), new Failure($exception)]);
|
|
|
|
$this->expectExceptionObject($exception);
|
|
|
|
$iterator->continue();
|
|
}
|
|
|
|
public function testMixedPromises(): void
|
|
{
|
|
$exception = new TestException;
|
|
$expected = \range(1, 2);
|
|
$pipeline = Pipeline\fromIterable([new Success(1), new Success(2), new Failure($exception), new Success(4)]);
|
|
|
|
try {
|
|
while (null !== $value = $pipeline->continue()) {
|
|
$this->assertSame(\array_shift($expected), $value);
|
|
}
|
|
$this->fail("A failed promise in the iterable should fail the pipeline and be thrown from continue()");
|
|
} catch (TestException $reason) {
|
|
$this->assertSame($exception, $reason);
|
|
}
|
|
|
|
$this->assertEmpty($expected);
|
|
}
|
|
|
|
public function testPendingPromises(): void
|
|
{
|
|
$expected = \range(1, 4);
|
|
$pipeline = Pipeline\fromIterable([
|
|
new Delayed(30, 1),
|
|
new Delayed(10, 2),
|
|
new Delayed(20, 3),
|
|
new Success(4),
|
|
]);
|
|
|
|
while (null !== $value = $pipeline->continue()) {
|
|
$this->assertSame(\array_shift($expected), $value);
|
|
}
|
|
}
|
|
|
|
public function testTraversable(): void
|
|
{
|
|
$expected = \range(1, 4);
|
|
$generator = (static function () {
|
|
foreach (\range(1, 4) as $value) {
|
|
yield $value;
|
|
}
|
|
})();
|
|
|
|
$pipeline = Pipeline\fromIterable($generator);
|
|
|
|
while (null !== $value = $pipeline->continue()) {
|
|
$this->assertSame(\array_shift($expected), $value);
|
|
}
|
|
|
|
$this->assertEmpty($expected);
|
|
}
|
|
|
|
/**
|
|
* @dataProvider provideInvalidIteratorArguments
|
|
*/
|
|
public function testInvalid($arg): void
|
|
{
|
|
$this->expectException(\TypeError::class);
|
|
|
|
Pipeline\fromIterable($arg);
|
|
}
|
|
|
|
public function provideInvalidIteratorArguments(): array
|
|
{
|
|
return [
|
|
[null],
|
|
[new \stdClass],
|
|
[32],
|
|
[false],
|
|
[true],
|
|
["string"],
|
|
];
|
|
}
|
|
|
|
public function testInterval(): void
|
|
{
|
|
$count = 3;
|
|
$pipeline = Pipeline\fromIterable(\range(1, $count), self::TIMEOUT);
|
|
|
|
$i = 0;
|
|
while (null !== $value = $pipeline->continue()) {
|
|
$this->assertSame(++$i, $value);
|
|
}
|
|
|
|
$this->assertSame($count, $i);
|
|
}
|
|
|
|
/**
|
|
* @depends testInterval
|
|
*/
|
|
public function testSlowConsumer(): void
|
|
{
|
|
$count = 5;
|
|
$pipeline = Pipeline\fromIterable(\range(1, $count), self::TIMEOUT);
|
|
|
|
for ($i = 0; $value = $pipeline->continue(); ++$i) {
|
|
delay(self::TIMEOUT * 2);
|
|
}
|
|
|
|
$this->assertSame($count, $i);
|
|
}
|
|
}
|