1
0
mirror of https://github.com/danog/parallel.git synced 2024-12-02 17:52:14 +01:00
parallel/test/Worker/FunctionsTest.php
2017-05-18 09:51:31 +02:00

80 lines
1.9 KiB
PHP

<?php
namespace Amp\Parallel\Test\Worker;
use Amp\Parallel\Worker;
use Amp\Parallel\Worker\Environment;
use Amp\Parallel\Worker\Pool;
use Amp\Parallel\Worker\Task;
use Amp\Parallel\Worker\WorkerFactory;
use Amp\PHPUnit\TestCase;
use Amp\Promise;
use Amp\Success;
class FunctionsTest extends TestCase {
public function testPool() {
$pool = $this->createMock(Pool::class);
Worker\pool($pool);
$this->assertTrue($pool === Worker\pool());
}
/**
* @depends testPool
*/
public function testEnqueue() {
$pool = $this->createMock(Pool::class);
$pool->method('enqueue')
->will($this->returnCallback(function (Task $task): Promise {
return new Success($task->run($this->createMock(Environment::class)));
}));
Worker\pool($pool);
$value = 42;
$task = new TestTask($value);
$awaitable = Worker\enqueue($task);
$this->assertSame($value, Promise\wait($awaitable));
}
/**
* @depends testPool
*/
public function testGet() {
$pool = $this->createMock(Pool::class);
$pool->expects($this->once())
->method('get')
->will($this->returnValue($this->createMock(Worker\Worker::class)));
Worker\pool($pool);
$worker = Worker\get();
}
public function testFactory() {
$factory = $this->createMock(WorkerFactory::class);
Worker\factory($factory);
$this->assertTrue($factory === Worker\factory());
}
/**
* @depends testFactory
*/
public function testCreate() {
$factory = $this->createMock(WorkerFactory::class);
$factory->expects($this->once())
->method('create')
->will($this->returnValue($this->createMock(Worker\Worker::class)));
Worker\factory($factory);
$worker = Worker\create();
}
}