2016-08-22 06:40:48 +02:00
|
|
|
<?php declare(strict_types = 1);
|
2016-01-15 01:08:06 +01:00
|
|
|
|
2016-08-23 23:47:40 +02:00
|
|
|
namespace Amp\Parallel\Test\Worker;
|
2016-08-18 18:04:48 +02:00
|
|
|
|
2016-08-23 23:47:40 +02:00
|
|
|
use Amp\Parallel\Worker;
|
|
|
|
use Amp\Parallel\Worker\{ Environment, Pool, Task, WorkerFactory };
|
|
|
|
use Amp\Parallel\Test\TestCase;
|
2016-08-19 00:36:58 +02:00
|
|
|
use Amp\Success;
|
|
|
|
use Interop\Async\Awaitable;
|
2016-01-15 01:08:06 +01:00
|
|
|
|
2016-08-19 00:36:58 +02:00
|
|
|
class FunctionsTest extends TestCase {
|
|
|
|
public function testPool() {
|
|
|
|
$pool = $this->createMock(Pool::class);
|
2016-01-15 01:08:06 +01:00
|
|
|
|
|
|
|
Worker\pool($pool);
|
|
|
|
|
2016-01-23 18:37:01 +01:00
|
|
|
$this->assertTrue($pool === Worker\pool());
|
2016-01-15 01:08:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2016-01-15 16:06:57 +01:00
|
|
|
* @depends testPool
|
2016-01-15 01:08:06 +01:00
|
|
|
*/
|
2016-08-19 00:36:58 +02:00
|
|
|
public function testEnqueue() {
|
|
|
|
$pool = $this->createMock(Pool::class);
|
2016-01-15 01:08:06 +01:00
|
|
|
$pool->method('enqueue')
|
2016-08-19 00:36:58 +02:00
|
|
|
->will($this->returnCallback(function (Task $task): Awaitable {
|
|
|
|
return new Success($task->run($this->createMock(Environment::class)));
|
2016-01-15 01:08:06 +01:00
|
|
|
}));
|
|
|
|
|
|
|
|
Worker\pool($pool);
|
|
|
|
|
|
|
|
$value = 42;
|
|
|
|
|
|
|
|
$task = new TestTask($value);
|
|
|
|
|
2016-08-19 00:36:58 +02:00
|
|
|
$awaitable = Worker\enqueue($task);
|
2016-01-15 01:08:06 +01:00
|
|
|
|
2016-08-19 00:36:58 +02:00
|
|
|
$this->assertSame($value, \Amp\wait($awaitable));
|
2016-01-15 01:08:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2016-01-15 16:06:57 +01:00
|
|
|
* @depends testPool
|
2016-01-15 01:08:06 +01:00
|
|
|
*/
|
2016-08-19 00:36:58 +02:00
|
|
|
public function testGet() {
|
|
|
|
$pool = $this->createMock(Pool::class);
|
2016-01-15 01:54:53 +01:00
|
|
|
$pool->expects($this->once())
|
|
|
|
->method('get')
|
2016-08-19 00:36:58 +02:00
|
|
|
->will($this->returnValue($this->createMock(Worker\Worker::class)));
|
2016-01-15 01:08:06 +01:00
|
|
|
|
2016-01-15 01:54:53 +01:00
|
|
|
Worker\pool($pool);
|
2016-01-15 01:08:06 +01:00
|
|
|
|
2016-01-15 01:54:53 +01:00
|
|
|
$worker = Worker\get();
|
2016-01-15 01:08:06 +01:00
|
|
|
}
|
|
|
|
|
2016-08-19 00:36:58 +02:00
|
|
|
public function testFactory() {
|
|
|
|
$factory = $this->createMock(WorkerFactory::class);
|
2016-01-15 01:08:06 +01:00
|
|
|
|
|
|
|
Worker\factory($factory);
|
|
|
|
|
2016-01-23 18:37:01 +01:00
|
|
|
$this->assertTrue($factory === Worker\factory());
|
2016-01-15 01:08:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2016-01-15 16:06:57 +01:00
|
|
|
* @depends testFactory
|
2016-01-15 01:08:06 +01:00
|
|
|
*/
|
2016-08-19 00:36:58 +02:00
|
|
|
public function testCreate() {
|
|
|
|
$factory = $this->createMock(WorkerFactory::class);
|
2016-01-15 01:08:06 +01:00
|
|
|
$factory->expects($this->once())
|
|
|
|
->method('create')
|
2016-08-19 00:36:58 +02:00
|
|
|
->will($this->returnValue($this->createMock(Worker\Worker::class)));
|
2016-01-15 01:08:06 +01:00
|
|
|
|
|
|
|
Worker\factory($factory);
|
|
|
|
|
|
|
|
$worker = Worker\create();
|
|
|
|
}
|
|
|
|
}
|