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

54 lines
1.3 KiB
PHP
Raw Normal View History

2016-08-22 06:40:48 +02:00
<?php declare(strict_types = 1);
2016-08-23 23:47:40 +02:00
namespace Amp\Parallel\Test\Threading;
2016-08-18 18:04:48 +02:00
2016-08-23 23:47:40 +02:00
use Amp\Parallel\Sync\Semaphore as SyncSemaphore;
use Amp\Parallel\Threading\{Semaphore, Thread};
use Amp\Parallel\Test\Sync\AbstractSemaphoreTest;
/**
* @group threading
* @requires extension pthreads
*/
2016-08-19 00:36:58 +02:00
class SemaphoreTest extends AbstractSemaphoreTest {
public function createSemaphore(int $locks) {
2015-09-04 06:23:12 +02:00
return new Semaphore($locks);
}
2016-08-19 00:36:58 +02:00
public function testAcquireInMultipleThreads() {
\Amp\execute(function () {
2015-09-04 06:23:12 +02:00
$this->semaphore = $this->createSemaphore(1);
2015-12-05 06:50:32 +01:00
$thread1 = new Thread(function (SyncSemaphore $semaphore) {
2016-08-19 00:36:58 +02:00
$lock = yield $semaphore->acquire();
2016-08-23 01:25:19 +02:00
usleep(100000);
$lock->release();
2016-01-23 07:00:56 +01:00
return 0;
2015-09-04 06:23:12 +02:00
}, $this->semaphore);
2015-12-05 06:50:32 +01:00
$thread2 = new Thread(function (SyncSemaphore $semaphore) {
2016-08-19 00:36:58 +02:00
$lock = yield $semaphore->acquire();
2016-08-23 01:25:19 +02:00
usleep(100000);
$lock->release();
2016-01-23 07:00:56 +01:00
return 1;
2015-09-04 06:23:12 +02:00
}, $this->semaphore);
$start = microtime(true);
$thread1->start();
$thread2->start();
2016-08-19 00:36:58 +02:00
yield $thread1->join();
yield $thread2->join();
2016-08-19 00:36:58 +02:00
$this->assertGreaterThan(0.1, microtime(true) - $start);
});
}
}