mirror of
https://github.com/danog/amp.git
synced 2024-12-03 18:07:57 +01:00
79 lines
2.0 KiB
PHP
79 lines
2.0 KiB
PHP
<?php
|
|
|
|
namespace Amp\Test\Pipeline;
|
|
|
|
use Amp\AsyncGenerator;
|
|
use Amp\PHPUnit\AsyncTestCase;
|
|
use Amp\PHPUnit\TestException;
|
|
use Amp\Pipeline;
|
|
|
|
class ConcatTest extends AsyncTestCase
|
|
{
|
|
public function getArrays(): array
|
|
{
|
|
return [
|
|
[[\range(1, 3), \range(4, 6)], \range(1, 6)],
|
|
[[\range(1, 5), \range(6, 8)], \range(1, 8)],
|
|
[[\range(1, 4), \range(5, 10)], \range(1, 10)],
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @dataProvider getArrays
|
|
*
|
|
* @param array $array
|
|
* @param array $expected
|
|
*/
|
|
public function testConcat(array $array, array $expected): void
|
|
{
|
|
$pipelines = \array_map(static function (iterable $iterable): Pipeline {
|
|
return Pipeline\fromIterable($iterable);
|
|
}, $array);
|
|
|
|
$pipeline = Pipeline\concat($pipelines);
|
|
|
|
while (null !== $value = $pipeline->continue()) {
|
|
$this->assertSame(\array_shift($expected), $value);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @depends testConcat
|
|
*/
|
|
public function testConcatWithFailedPipeline(): void
|
|
{
|
|
$exception = new TestException;
|
|
$expected = \range(1, 6);
|
|
$generator = new AsyncGenerator(static function () use ($exception) {
|
|
yield 6; // Emit once before failing.
|
|
throw $exception;
|
|
});
|
|
|
|
$pipeline = Pipeline\concat([
|
|
Pipeline\fromIterable(\range(1, 5)),
|
|
$generator,
|
|
Pipeline\fromIterable(\range(7, 10)),
|
|
]);
|
|
|
|
try {
|
|
while (null !== $value = $pipeline->continue()) {
|
|
$this->assertSame(\array_shift($expected), $value);
|
|
}
|
|
|
|
$this->fail("The exception used to fail the pipeline should be thrown from continue()");
|
|
} catch (TestException $reason) {
|
|
$this->assertSame($exception, $reason);
|
|
}
|
|
|
|
$this->assertEmpty($expected);
|
|
}
|
|
|
|
public function testNonPipeline(): void
|
|
{
|
|
$this->expectException(\TypeError::class);
|
|
|
|
/** @noinspection PhpParamsInspection */
|
|
Pipeline\concat([1]);
|
|
}
|
|
}
|