2015-08-07 22:32:18 +02:00
|
|
|
<?php
|
2015-08-31 01:25:44 +02:00
|
|
|
namespace Icicle\Tests\Concurrent\Threading;
|
2015-08-07 22:32:18 +02:00
|
|
|
|
2015-08-31 01:25:44 +02:00
|
|
|
use Icicle\Concurrent\Threading\Semaphore;
|
2015-08-07 22:32:18 +02:00
|
|
|
use Icicle\Coroutine;
|
|
|
|
use Icicle\Loop;
|
|
|
|
use Icicle\Tests\Concurrent\TestCase;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @group threading
|
2015-08-28 22:09:07 +02:00
|
|
|
* @requires extension pthreads
|
2015-08-07 22:32:18 +02:00
|
|
|
*/
|
2015-08-31 01:25:44 +02:00
|
|
|
class SemaphoreTest extends TestCase
|
2015-08-07 22:32:18 +02:00
|
|
|
{
|
|
|
|
public function testCount()
|
|
|
|
{
|
2015-08-31 01:25:44 +02:00
|
|
|
$semaphore = new Semaphore(1);
|
2015-08-07 22:32:18 +02:00
|
|
|
$this->assertEquals(1, $semaphore->count());
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testAcquire()
|
|
|
|
{
|
|
|
|
Coroutine\create(function () {
|
2015-08-31 01:25:44 +02:00
|
|
|
$semaphore = new Semaphore(1);
|
2015-08-07 22:32:18 +02:00
|
|
|
$lock = (yield $semaphore->acquire());
|
|
|
|
$lock->release();
|
|
|
|
$this->assertTrue($lock->isReleased());
|
|
|
|
});
|
|
|
|
|
|
|
|
Loop\run();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testAcquireMultiple()
|
|
|
|
{
|
2015-08-28 23:58:15 +02:00
|
|
|
Loop\loop();
|
|
|
|
|
2015-08-31 21:00:07 +02:00
|
|
|
$this->assertRunTimeGreaterThan(function () {
|
2015-08-07 22:32:18 +02:00
|
|
|
Coroutine\create(function () {
|
2015-08-31 01:25:44 +02:00
|
|
|
$semaphore = new Semaphore(1);
|
2015-08-07 22:32:18 +02:00
|
|
|
|
|
|
|
$lock1 = (yield $semaphore->acquire());
|
|
|
|
Loop\timer(0.5, function () use ($lock1) {
|
|
|
|
$lock1->release();
|
|
|
|
});
|
|
|
|
|
|
|
|
$lock2 = (yield $semaphore->acquire());
|
|
|
|
Loop\timer(0.5, function () use ($lock2) {
|
|
|
|
$lock2->release();
|
|
|
|
});
|
|
|
|
|
|
|
|
$lock3 = (yield $semaphore->acquire());
|
|
|
|
Loop\timer(0.5, function () use ($lock3) {
|
|
|
|
$lock3->release();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
Loop\run();
|
2015-08-31 21:00:07 +02:00
|
|
|
}, 1.5);
|
2015-08-07 22:32:18 +02:00
|
|
|
}
|
|
|
|
}
|