parallel-functions/test/MapTest.php
2017-12-17 19:33:29 +01:00

59 lines
1.6 KiB
PHP

<?php
namespace Amp\ParallelFunctions\Test;
use Amp\MultiReasonException;
use Amp\PHPUnit\TestCase;
use function Amp\ParallelFunctions\parallelMap;
use function Amp\Promise\wait;
class MapTest extends TestCase {
public function testValidInput() {
$this->assertSame([3, 4, 5], wait(parallelMap([1, 2, 3], function ($input) {
return $input + 2;
})));
}
public function testCorrectOutputOrder() {
$this->assertSame([0, 1, 0], wait(parallelMap([0, 1, 0], function ($input) {
\sleep($input);
return $input;
})));
}
public function testException() {
$this->expectException(MultiReasonException::class);
wait(parallelMap([1, 2, 3], function () {
throw new \Exception;
}));
}
public function testExecutesAllTasksOnException() {
$files = [
[0, \tempnam(\sys_get_temp_dir(), 'amp-parallel-functions-')],
[1, \tempnam(\sys_get_temp_dir(), 'amp-parallel-functions-')],
[2, \tempnam(\sys_get_temp_dir(), 'amp-parallel-functions-')],
];
try {
wait(parallelMap($files, function ($args) {
list($id, $filename) = $args;
if ($id === 0) {
throw new \Exception;
}
\sleep(1);
\file_put_contents($filename, $id);
}));
$this->fail('No exception thrown.');
} catch (MultiReasonException $e) {
$this->assertStringEqualsFile($files[1][1], '1');
$this->assertStringEqualsFile($files[2][1], '2');
}
}
}