2015-08-10 05:16:34 +02:00
|
|
|
<?php
|
|
|
|
|
2016-08-19 00:36:58 +02:00
|
|
|
namespace Amp\Concurrent\Test\Sync;
|
2016-08-18 18:04:48 +02:00
|
|
|
|
|
|
|
use Amp\Concurrent\Sync\SharedMemoryParcel;
|
2015-08-10 05:16:34 +02:00
|
|
|
|
2015-08-28 22:09:07 +02:00
|
|
|
/**
|
|
|
|
* @requires extension shmop
|
2015-08-31 19:26:11 +02:00
|
|
|
* @requires extension sysvmsg
|
2015-08-28 22:09:07 +02:00
|
|
|
*/
|
2016-08-19 00:36:58 +02:00
|
|
|
class SharedMemoryParcelTest extends AbstractParcelTest {
|
2015-08-28 23:58:15 +02:00
|
|
|
private $parcel;
|
2015-08-10 05:16:34 +02:00
|
|
|
|
2016-08-19 00:36:58 +02:00
|
|
|
protected function createParcel($value) {
|
2015-12-05 06:50:32 +01:00
|
|
|
$this->parcel = new SharedMemoryParcel($value);
|
2015-08-28 23:58:15 +02:00
|
|
|
return $this->parcel;
|
2015-08-10 05:16:34 +02:00
|
|
|
}
|
|
|
|
|
2016-08-19 00:36:58 +02:00
|
|
|
public function tearDown() {
|
2015-08-28 23:58:15 +02:00
|
|
|
if ($this->parcel !== null) {
|
|
|
|
$this->parcel->free();
|
|
|
|
}
|
2015-08-10 05:16:34 +02:00
|
|
|
}
|
|
|
|
|
2016-08-19 00:36:58 +02:00
|
|
|
public function testNewObjectIsNotFreed() {
|
2015-12-05 06:50:32 +01:00
|
|
|
$object = new SharedMemoryParcel(new \stdClass());
|
2015-08-10 05:16:34 +02:00
|
|
|
$this->assertFalse($object->isFreed());
|
|
|
|
$object->free();
|
|
|
|
}
|
|
|
|
|
2016-08-19 00:36:58 +02:00
|
|
|
public function testFreeReleasesObject() {
|
2015-12-05 06:50:32 +01:00
|
|
|
$object = new SharedMemoryParcel(new \stdClass());
|
2015-08-10 05:16:34 +02:00
|
|
|
$object->free();
|
|
|
|
$this->assertTrue($object->isFreed());
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2016-08-19 00:36:58 +02:00
|
|
|
* @expectedException \Amp\Concurrent\SharedMemoryException
|
2015-08-10 05:16:34 +02:00
|
|
|
*/
|
2016-08-19 00:36:58 +02:00
|
|
|
public function testUnwrapThrowsErrorIfFreed() {
|
2015-12-05 06:50:32 +01:00
|
|
|
$object = new SharedMemoryParcel(new \stdClass());
|
2015-08-10 05:16:34 +02:00
|
|
|
$object->free();
|
2015-08-25 06:23:42 +02:00
|
|
|
$object->unwrap();
|
2015-08-10 05:16:34 +02:00
|
|
|
}
|
|
|
|
|
2016-08-19 00:36:58 +02:00
|
|
|
public function testCloneIsNewObject() {
|
2015-08-10 05:16:34 +02:00
|
|
|
$object = new \stdClass();
|
2015-12-05 06:50:32 +01:00
|
|
|
$shared = new SharedMemoryParcel($object);
|
2015-08-10 05:16:34 +02:00
|
|
|
$clone = clone $shared;
|
2015-08-10 20:21:22 +02:00
|
|
|
|
2015-08-10 05:16:34 +02:00
|
|
|
$this->assertNotSame($shared, $clone);
|
2015-08-25 06:23:42 +02:00
|
|
|
$this->assertNotSame($object, $clone->unwrap());
|
2015-08-10 05:16:34 +02:00
|
|
|
$this->assertNotEquals($shared->__debugInfo()['id'], $clone->__debugInfo()['id']);
|
2015-08-10 20:21:22 +02:00
|
|
|
|
|
|
|
$clone->free();
|
2015-08-10 05:16:34 +02:00
|
|
|
$shared->free();
|
|
|
|
}
|
2015-08-10 21:28:47 +02:00
|
|
|
|
2016-08-19 00:36:58 +02:00
|
|
|
public function testObjectOverflowMoved() {
|
2015-12-05 06:50:32 +01:00
|
|
|
$object = new SharedMemoryParcel('hi', 14);
|
2016-08-19 00:36:58 +02:00
|
|
|
$awaitable = $object->synchronized(function () {
|
2015-10-18 09:12:46 +02:00
|
|
|
return 'hello world';
|
2016-08-19 00:36:58 +02:00
|
|
|
});
|
|
|
|
\Amp\wait($awaitable);
|
2015-08-10 23:36:01 +02:00
|
|
|
|
2015-08-25 06:23:42 +02:00
|
|
|
$this->assertEquals('hello world', $object->unwrap());
|
2015-08-10 23:36:01 +02:00
|
|
|
$object->free();
|
|
|
|
}
|
|
|
|
|
2015-08-10 21:28:47 +02:00
|
|
|
/**
|
|
|
|
* @group posix
|
2015-08-28 22:09:07 +02:00
|
|
|
* @requires extension pcntl
|
2015-08-10 21:28:47 +02:00
|
|
|
*/
|
2016-08-19 00:36:58 +02:00
|
|
|
public function testSetInSeparateProcess() {
|
2015-12-05 06:50:32 +01:00
|
|
|
$object = new SharedMemoryParcel(42);
|
2015-08-10 21:28:47 +02:00
|
|
|
|
|
|
|
$this->doInFork(function () use ($object) {
|
2016-08-19 00:36:58 +02:00
|
|
|
$awaitable = $object->synchronized(function () {
|
2015-10-18 09:12:46 +02:00
|
|
|
return 43;
|
2016-08-19 00:36:58 +02:00
|
|
|
});
|
|
|
|
\Amp\wait($awaitable);
|
2015-08-10 21:28:47 +02:00
|
|
|
});
|
|
|
|
|
2015-08-25 06:23:42 +02:00
|
|
|
$this->assertEquals(43, $object->unwrap());
|
2015-08-10 21:28:47 +02:00
|
|
|
$object->free();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @group posix
|
2015-08-28 22:09:07 +02:00
|
|
|
* @requires extension pcntl
|
2015-08-10 21:28:47 +02:00
|
|
|
*/
|
2016-08-19 00:36:58 +02:00
|
|
|
public function testFreeInSeparateProcess() {
|
2015-12-05 06:50:32 +01:00
|
|
|
$object = new SharedMemoryParcel(42);
|
2015-08-10 21:28:47 +02:00
|
|
|
|
|
|
|
$this->doInFork(function () use ($object) {
|
|
|
|
$object->free();
|
|
|
|
});
|
|
|
|
|
|
|
|
$this->assertTrue($object->isFreed());
|
|
|
|
}
|
2015-08-10 05:16:34 +02:00
|
|
|
}
|