2016-12-29 19:16:04 -06:00
|
|
|
<?php
|
2015-08-09 22:16:34 -05:00
|
|
|
|
2016-08-23 16:47:40 -05:00
|
|
|
namespace Amp\Parallel\Test\Sync;
|
2016-08-18 11:04:48 -05:00
|
|
|
|
2017-11-29 14:40:07 -06:00
|
|
|
use Amp\Loop;
|
2016-08-23 16:47:40 -05:00
|
|
|
use Amp\Parallel\Sync\SharedMemoryParcel;
|
2017-11-26 23:03:18 -06:00
|
|
|
use Amp\Promise;
|
2015-08-09 22:16:34 -05:00
|
|
|
|
2015-08-28 15:09:07 -05:00
|
|
|
/**
|
|
|
|
* @requires extension shmop
|
2015-08-31 12:26:11 -05:00
|
|
|
* @requires extension sysvmsg
|
2015-08-28 15:09:07 -05:00
|
|
|
*/
|
2016-08-18 17:36:58 -05:00
|
|
|
class SharedMemoryParcelTest extends AbstractParcelTest {
|
2017-11-29 14:40:07 -06:00
|
|
|
const ID = __CLASS__;
|
|
|
|
|
2015-08-28 16:58:15 -05:00
|
|
|
private $parcel;
|
2015-08-09 22:16:34 -05:00
|
|
|
|
2016-08-18 17:36:58 -05:00
|
|
|
protected function createParcel($value) {
|
2017-11-29 14:40:07 -06:00
|
|
|
$this->parcel = SharedMemoryParcel::create(self::ID, $value);
|
2015-08-28 16:58:15 -05:00
|
|
|
return $this->parcel;
|
2015-08-09 22:16:34 -05:00
|
|
|
}
|
|
|
|
|
2016-08-18 17:36:58 -05:00
|
|
|
public function tearDown() {
|
2017-11-29 14:40:07 -06:00
|
|
|
$this->parcel = null;
|
2015-08-09 22:16:34 -05:00
|
|
|
}
|
2015-08-10 14:28:47 -05:00
|
|
|
|
2016-08-18 17:36:58 -05:00
|
|
|
public function testObjectOverflowMoved() {
|
2017-11-29 14:40:07 -06:00
|
|
|
$object = SharedMemoryParcel::create(self::ID, 'hi', 2);
|
2016-08-18 17:36:58 -05:00
|
|
|
$awaitable = $object->synchronized(function () {
|
2015-10-18 02:12:46 -05:00
|
|
|
return 'hello world';
|
2016-08-18 17:36:58 -05:00
|
|
|
});
|
2017-11-26 23:03:18 -06:00
|
|
|
Promise\wait($awaitable);
|
2015-08-10 16:36:01 -05:00
|
|
|
|
2017-11-26 23:03:18 -06:00
|
|
|
$this->assertEquals('hello world', Promise\wait($object->unwrap()));
|
2015-08-10 16:36:01 -05:00
|
|
|
}
|
|
|
|
|
2015-08-10 14:28:47 -05:00
|
|
|
/**
|
|
|
|
* @group posix
|
2015-08-28 15:09:07 -05:00
|
|
|
* @requires extension pcntl
|
2015-08-10 14:28:47 -05:00
|
|
|
*/
|
2016-08-18 17:36:58 -05:00
|
|
|
public function testSetInSeparateProcess() {
|
2017-11-29 14:40:07 -06:00
|
|
|
$object = SharedMemoryParcel::create(self::ID, 42);
|
2015-08-10 14:28:47 -05:00
|
|
|
|
|
|
|
$this->doInFork(function () use ($object) {
|
2017-11-29 14:40:07 -06:00
|
|
|
$awaitable = $object->synchronized(function ($value) {
|
|
|
|
return $value + 1;
|
2016-08-18 17:36:58 -05:00
|
|
|
});
|
2017-11-26 23:03:18 -06:00
|
|
|
Promise\wait($awaitable);
|
2015-08-10 14:28:47 -05:00
|
|
|
});
|
|
|
|
|
2017-11-26 23:03:18 -06:00
|
|
|
$this->assertEquals(43, Promise\wait($object->unwrap()));
|
2015-08-10 14:28:47 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @group posix
|
2015-08-28 15:09:07 -05:00
|
|
|
* @requires extension pcntl
|
2015-08-10 14:28:47 -05:00
|
|
|
*/
|
2017-11-29 14:40:07 -06:00
|
|
|
public function testInSeparateProcess() {
|
|
|
|
$parcel = SharedMemoryParcel::create(self::ID, 42);
|
|
|
|
|
|
|
|
$this->doInFork(function () {
|
|
|
|
Loop::run(function () {
|
|
|
|
$parcel = SharedMemoryParcel::use(self::ID);
|
|
|
|
$this->assertSame(43, yield $parcel->synchronized(function ($value) {
|
|
|
|
$this->assertSame(42, $value);
|
|
|
|
return $value + 1;
|
|
|
|
}));
|
|
|
|
});
|
2015-08-10 14:28:47 -05:00
|
|
|
});
|
|
|
|
|
2017-11-29 14:40:07 -06:00
|
|
|
Loop::run(function () use ($parcel) {
|
|
|
|
$this->assertSame(43, yield $parcel->unwrap());
|
|
|
|
});
|
2015-08-10 14:28:47 -05:00
|
|
|
}
|
2015-08-09 22:16:34 -05:00
|
|
|
}
|