1
0
mirror of https://github.com/danog/parallel.git synced 2024-12-03 10:07:49 +01:00
parallel/test/Context/ParallelTest.php
2019-02-14 01:10:40 -06:00

101 lines
2.9 KiB
PHP

<?php
namespace Amp\Parallel\Test\Context;
use Amp\Loop;
use Amp\Parallel\Context\Parallel;
use Amp\PHPUnit\TestCase;
class ParallelTest extends TestCase
{
public function testBasicProcess()
{
Loop::run(function () {
$thread = new Parallel(__DIR__ . "/Fixtures/test-parallel.php", "Test");
yield $thread->start();
$this->assertSame("Test", yield $thread->join());
});
}
/**
* @expectedException \Amp\Parallel\Sync\PanicError
* @expectedExceptionMessage No string provided
*/
public function testFailingProcess()
{
Loop::run(function () {
$thread = new Parallel(__DIR__ . "/Fixtures/test-process.php");
yield $thread->start();
yield $thread->join();
});
}
/**
* @expectedException \Amp\Parallel\Sync\PanicError
* @expectedExceptionMessage No script found at '../test-process.php'
*/
public function testInvalidScriptPath()
{
Loop::run(function () {
$thread = new Parallel("../test-process.php");
yield $thread->start();
yield $thread->join();
});
}
/**
* @expectedException \Amp\Parallel\Sync\PanicError
* @expectedExceptionMessage The given data cannot be sent because it is not serializable
*/
public function testInvalidResult()
{
Loop::run(function () {
$thread = new Parallel(__DIR__ . "/Fixtures/invalid-result-process.php");
yield $thread->start();
\var_dump(yield $thread->join());
});
}
/**
* @expectedException \Amp\Parallel\Sync\PanicError
* @expectedExceptionMessage did not return a callable function
*/
public function testNoCallbackReturned()
{
Loop::run(function () {
$thread = new Parallel(__DIR__ . "/Fixtures/no-callback-process.php");
yield $thread->start();
\var_dump(yield $thread->join());
});
}
/**
* @expectedException \Amp\Parallel\Sync\PanicError
* @expectedExceptionMessageRegExp /Script (.*) contains a parse error/
*/
public function testParseError()
{
Loop::run(function () {
$thread = new Parallel(__DIR__ . "/Fixtures/parse-error-process.inc");
yield $thread->start();
\var_dump(yield $thread->join());
});
}
/**
* @expectedException \Amp\Parallel\Context\ContextException
* @expectedExceptionMessage The context stopped responding, potentially due to a fatal error or calling exit
*/
public function testKillWhenJoining()
{
Loop::run(function () {
$thread = new Parallel(__DIR__ . "/Fixtures/sleep-parallel.php", 10);
yield $thread->start();
$promise = $thread->join();
$thread->kill();
$this->assertFalse($thread->isRunning());
yield $promise;
});
}
}