1
0
mirror of https://github.com/danog/parallel.git synced 2024-12-03 10:07:49 +01:00
parallel/test/Context/AbstractContextTest.php

310 lines
7.9 KiB
PHP
Raw Normal View History

2016-12-30 02:16:04 +01:00
<?php
2017-12-08 04:26:55 +01:00
namespace Amp\Parallel\Test\Context;
2016-08-18 18:04:48 +02:00
use Amp\Loop;
2017-12-27 05:38:22 +01:00
use Amp\Parallel\Sync\Channel;
use Amp\Parallel\Sync\ExitSuccess;
use Amp\PHPUnit\TestCase;
2018-10-07 16:50:45 +02:00
abstract class AbstractContextTest extends TestCase
{
2016-08-19 00:36:58 +02:00
/**
* @param callable $function
*
2017-12-08 04:26:55 +01:00
* @return \Amp\Parallel\Context\Context
2016-08-19 00:36:58 +02:00
*/
abstract public function createContext(callable $function);
2018-10-07 16:50:45 +02:00
public function testIsRunning()
{
Loop::run(function () {
$context = $this->createContext(function () {
2018-10-07 16:50:45 +02:00
\usleep(100);
});
$this->assertFalse($context->isRunning());
yield $context->start();
$this->assertTrue($context->isRunning());
2016-08-19 00:36:58 +02:00
yield $context->join();
$this->assertFalse($context->isRunning());
});
}
2018-10-07 16:50:45 +02:00
public function testKill()
{
Loop::run(function () {
$context = $this->createContext(function () {
2018-10-07 16:50:45 +02:00
\usleep(1e6);
});
yield $context->start();
$this->assertRunTimeLessThan([$context, 'kill'], 1000);
$this->assertFalse($context->isRunning());
});
}
/**
2017-12-08 04:26:55 +01:00
* @expectedException \Amp\Parallel\Context\StatusError
*/
2018-10-07 16:50:45 +02:00
public function testStartWhileRunningThrowsError()
{
Loop::run(function () {
$context = $this->createContext(function () {
2018-10-07 16:50:45 +02:00
\usleep(100);
});
yield $context->start();
yield $context->start();
});
}
/**
2017-12-08 04:26:55 +01:00
* @expectedException \Amp\Parallel\Context\StatusError
*/
2018-10-07 16:50:45 +02:00
public function testStartMultipleTimesThrowsError()
{
$this->assertRunTimeGreaterThan(function () {
Loop::run(function () {
$context = $this->createContext(function () {
2018-10-07 16:50:45 +02:00
\sleep(1);
});
yield $context->start();
2016-08-19 00:36:58 +02:00
yield $context->join();
yield $context->start();
2016-08-19 00:36:58 +02:00
yield $context->join();
});
}, 2000);
}
/**
2017-12-08 04:26:55 +01:00
* @expectedException \Amp\Parallel\Sync\PanicError
*/
2018-10-07 16:50:45 +02:00
public function testExceptionInContextPanics()
{
Loop::run(function () {
$context = $this->createContext(function () {
throw new \Exception('Exception in fork.');
});
yield $context->start();
2016-08-19 00:36:58 +02:00
yield $context->join();
});
}
2015-12-12 07:34:41 +01:00
/**
2017-12-08 04:26:55 +01:00
* @expectedException \Amp\Parallel\Sync\PanicError
2015-12-12 07:34:41 +01:00
*/
2018-10-07 16:50:45 +02:00
public function testReturnUnserializableDataPanics()
{
Loop::run(function () {
2015-12-12 07:34:41 +01:00
$context = $this->createContext(function () {
2016-01-23 07:00:56 +01:00
return yield function () {};
2015-12-12 07:34:41 +01:00
});
yield $context->start();
2016-08-19 00:36:58 +02:00
yield $context->join();
});
2015-12-12 07:34:41 +01:00
}
2018-10-07 16:50:45 +02:00
public function testJoinWaitsForChild()
{
$this->assertRunTimeGreaterThan(function () {
Loop::run(function () {
$context = $this->createContext(function () {
2018-10-07 16:50:45 +02:00
\sleep(1);
});
yield $context->start();
2016-08-19 00:36:58 +02:00
yield $context->join();
});
}, 1000);
}
/**
2017-12-08 04:26:55 +01:00
* @expectedException \Amp\Parallel\Context\StatusError
*/
2018-10-07 16:50:45 +02:00
public function testJoinWithoutStartThrowsError()
{
Loop::run(function () {
$context = $this->createContext(function () {
2018-10-07 16:50:45 +02:00
\usleep(100);
});
2016-08-19 00:36:58 +02:00
yield $context->join();
});
}
2018-10-07 16:50:45 +02:00
public function testJoinResolvesWithContextReturn()
{
Loop::run(function () {
$context = $this->createContext(function () {
return 42;
});
yield $context->start();
2016-08-19 00:36:58 +02:00
$this->assertSame(42, yield $context->join());
});
}
2018-10-07 16:50:45 +02:00
public function testSendAndReceive()
{
Loop::run(function () {
2017-12-27 05:38:22 +01:00
$context = $this->createContext(function (Channel $channel) {
yield $channel->send(1);
$value = yield $channel->receive();
2016-01-23 07:00:56 +01:00
return $value;
});
$value = 42;
yield $context->start();
2016-08-19 00:36:58 +02:00
$this->assertSame(1, yield $context->receive());
yield $context->send($value);
$this->assertSame($value, yield $context->join());
});
}
/**
* @depends testSendAndReceive
2017-12-08 04:26:55 +01:00
* @expectedException \Amp\Parallel\Sync\SynchronizationError
*/
2018-10-07 16:50:45 +02:00
public function testJoinWhenContextSendingData()
{
Loop::run(function () {
2017-12-27 05:38:22 +01:00
$context = $this->createContext(function (Channel $channel) {
yield $channel->send(0);
2016-01-23 07:00:56 +01:00
return 42;
});
yield $context->start();
2016-08-19 00:36:58 +02:00
$value = yield $context->join();
});
}
/**
* @depends testSendAndReceive
2017-12-08 04:26:55 +01:00
* @expectedException \Amp\Parallel\Context\StatusError
*/
2018-10-07 16:50:45 +02:00
public function testReceiveBeforeContextHasStarted()
{
Loop::run(function () {
2017-12-27 05:38:22 +01:00
$context = $this->createContext(function (Channel $channel) {
yield $channel->send(0);
2016-01-23 07:00:56 +01:00
return 42;
});
2016-08-19 00:36:58 +02:00
$value = yield $context->receive();
});
}
/**
* @depends testSendAndReceive
2017-12-08 04:26:55 +01:00
* @expectedException \Amp\Parallel\Context\StatusError
*/
2018-10-07 16:50:45 +02:00
public function testSendBeforeContextHasStarted()
{
Loop::run(function () {
2017-12-27 05:38:22 +01:00
$context = $this->createContext(function (Channel $channel) {
yield $channel->send(0);
2016-01-23 07:00:56 +01:00
return 42;
});
2016-08-19 00:36:58 +02:00
yield $context->send(0);
});
}
/**
* @depends testSendAndReceive
2017-12-08 04:26:55 +01:00
* @expectedException \Amp\Parallel\Sync\SynchronizationError
*/
2018-10-07 16:50:45 +02:00
public function testReceiveWhenContextHasReturned()
{
Loop::run(function () {
2017-12-27 05:38:22 +01:00
$context = $this->createContext(function (Channel $channel) {
yield $channel->send(0);
2016-01-23 07:00:56 +01:00
return 42;
});
yield $context->start();
2016-08-19 00:36:58 +02:00
$value = yield $context->receive();
$value = yield $context->receive();
$value = yield $context->join();
});
}
/**
* @depends testSendAndReceive
2016-08-19 00:36:58 +02:00
* @expectedException \Error
*/
2018-10-07 16:50:45 +02:00
public function testSendExitResult()
{
Loop::run(function () {
2017-12-27 05:38:22 +01:00
$context = $this->createContext(function (Channel $channel) {
$value = yield $channel->receive();
2016-01-23 07:00:56 +01:00
return 42;
});
yield $context->start();
2016-08-19 00:36:58 +02:00
yield $context->send(new ExitSuccess(0));
$value = yield $context->join();
});
}
/**
2017-12-08 04:26:55 +01:00
* @expectedException \Amp\Parallel\Context\ContextException
* @expectedExceptionMessage The context stopped responding
*/
2018-10-07 16:50:45 +02:00
public function testExitingContextOnJoin()
{
Loop::run(function () {
$context = $this->createContext(function () {
exit;
});
yield $context->start();
$value = yield $context->join();
});
}
/**
2017-12-27 05:38:22 +01:00
* @expectedException \Amp\Parallel\Sync\ChannelException
* @expectedExceptionMessage The channel closed unexpectedly
*/
2018-10-07 16:50:45 +02:00
public function testExitingContextOnReceive()
{
Loop::run(function () {
$context = $this->createContext(function () {
exit;
});
yield $context->start();
$value = yield $context->receive();
});
}
2017-05-28 07:09:13 +02:00
/**
2017-12-27 05:38:22 +01:00
* @expectedException \Amp\Parallel\Sync\ChannelException
* @expectedExceptionMessage Sending on the channel failed
2017-05-28 07:09:13 +02:00
*/
2018-10-07 16:50:45 +02:00
public function testExitingContextOnSend()
{
2017-05-28 07:09:13 +02:00
Loop::run(function () {
$context = $this->createContext(function () {
exit;
});
2018-10-22 16:40:19 +02:00
$context->start();
2017-06-19 18:14:38 +02:00
yield $context->send(\str_pad("", 1024 * 1024, "-"));
2017-05-28 07:09:13 +02:00
});
}
}