1
0
mirror of https://github.com/danog/parallel.git synced 2024-12-04 02:27:55 +01:00
parallel/test/Worker/AbstractPoolTest.php
Aaron Piotrowski c545be1dc5
More tests
2017-12-13 23:06:38 -06:00

134 lines
3.4 KiB
PHP

<?php
namespace Amp\Parallel\Test\Worker;
use Amp\Loop;
use Amp\Parallel\Worker\Pool;
use Amp\Parallel\Worker\Task;
use Amp\Parallel\Worker\Worker;
use Amp\PHPUnit\TestCase;
use Amp\Promise;
abstract class AbstractPoolTest extends TestCase {
/**
* @param int $min
* @param int $max
*
* @return \Amp\Parallel\Worker\Pool
*/
abstract protected function createPool($max = Pool::DEFAULT_MAX_SIZE): Pool;
public function testIsRunning() {
Loop::run(function () {
$pool = $this->createPool();
$this->assertTrue($pool->isRunning());
yield $pool->shutdown();
$this->assertFalse($pool->isRunning());
});
}
public function testIsIdleOnStart() {
Loop::run(function () {
$pool = $this->createPool();
$this->assertTrue($pool->isIdle());
yield $pool->shutdown();
});
}
public function testGetMaxSize() {
$pool = $this->createPool(17);
$this->assertEquals(17, $pool->getMaxSize());
}
public function testWorkersIdleOnStart() {
Loop::run(function () {
$pool = $this->createPool();
$this->assertEquals(0, $pool->getIdleWorkerCount());
yield $pool->shutdown();
});
}
public function testEnqueue() {
Loop::run(function () {
$pool = $this->createPool();
$returnValue = yield $pool->enqueue(new TestTask(42));
$this->assertEquals(42, $returnValue);
yield $pool->shutdown();
});
}
public function testEnqueueMultiple() {
Loop::run(function () {
$pool = $this->createPool();
$values = yield \Amp\Promise\all([
$pool->enqueue(new TestTask(42)),
$pool->enqueue(new TestTask(56)),
$pool->enqueue(new TestTask(72))
]);
$this->assertEquals([42, 56, 72], $values);
yield $pool->shutdown();
});
}
public function testKill() {
$pool = $this->createPool();
$this->assertRunTimeLessThan([$pool, 'kill'], 1000);
$this->assertFalse($pool->isRunning());
}
public function testGet() {
Loop::run(function () {
$pool = $this->createPool();
$worker = $pool->get();
$this->assertInstanceOf(Worker::class, $worker);
$this->assertFalse($worker->isRunning());
$this->assertTrue($worker->isIdle());
$this->assertSame(42, yield $worker->enqueue(new TestTask(42)));
yield $worker->shutdown();
$worker->kill();
});
}
public function testBusyPool() {
Loop::run(function () {
$pool = $this->createPool(2);
$values = [42, 56, 72];
$tasks = \array_map(function (int $value): Task {
return new TestTask($value);
}, $values);
$promises = \array_map(function (Task $task) use ($pool): Promise {
return $pool->enqueue($task);
}, $tasks);
$this->assertSame($values, yield $promises);
$promises = \array_map(function (Task $task) use ($pool): Promise {
return $pool->enqueue($task);
}, $tasks);
$this->assertSame($values, yield $promises);
yield $pool->shutdown();
});
}
}