1
0
mirror of https://github.com/danog/parallel.git synced 2024-12-04 02:27:55 +01:00
parallel/test/Context/ParallelTest.php
Aaron Piotrowski 410c88e859
Serialize function arguments
Maybe this is a horrible idea, but we serialize everything else, so why not?
2019-02-14 00:34:45 -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__ . "/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__ . "/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__ . "/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__ . "/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__ . "/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__ . "/sleep-process.php");
yield $thread->start();
$promise = $thread->join();
$thread->kill();
$this->assertFalse($thread->isRunning());
yield $promise;
});
}
}