1
0
mirror of https://github.com/danog/parallel.git synced 2024-12-03 18:17:52 +01:00
parallel/test/Threading/SemaphoreTest.php
2016-08-18 17:36:58 -05:00

54 lines
1.3 KiB
PHP

<?php
namespace Amp\Concurrent\Test\Threading;
use Amp\Concurrent\Sync\Semaphore as SyncSemaphore;
use Amp\Concurrent\Threading\{Semaphore, Thread};
use Amp\Concurrent\Test\Sync\AbstractSemaphoreTest;
/**
* @group threading
* @requires extension pthreads
*/
class SemaphoreTest extends AbstractSemaphoreTest {
public function createSemaphore(int $locks) {
return new Semaphore($locks);
}
public function testAcquireInMultipleThreads() {
\Amp\execute(function () {
$this->semaphore = $this->createSemaphore(1);
$thread1 = new Thread(function (SyncSemaphore $semaphore) {
$lock = yield $semaphore->acquire();
usleep(1e5);
$lock->release();
return 0;
}, $this->semaphore);
$thread2 = new Thread(function (SyncSemaphore $semaphore) {
$lock = yield $semaphore->acquire();
usleep(1e5);
$lock->release();
return 1;
}, $this->semaphore);
$start = microtime(true);
$thread1->start();
$thread2->start();
yield $thread1->join();
yield $thread2->join();
$this->assertGreaterThan(0.1, microtime(true) - $start);
});
}
}