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; }); } }