public function vfsStreamWrapperFlockTestCase::canAquireSharedLockIfAlreadySelfSharedLocked in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/mikey179/vfsStream/src/test/php/org/bovigo/vfs/vfsStreamWrapperFlockTestCase.php \org\bovigo\vfs\vfsStreamWrapperFlockTestCase::canAquireSharedLockIfAlreadySelfSharedLocked()
@test @group issue_40
See also
https://github.com/mikey179/vfsStream/issues/40
File
- vendor/
mikey179/ vfsStream/ src/ test/ php/ org/ bovigo/ vfs/ vfsStreamWrapperFlockTestCase.php, line 333
Class
- vfsStreamWrapperFlockTestCase
- Test for flock() implementation.
Namespace
org\bovigo\vfsCode
public function canAquireSharedLockIfAlreadySelfSharedLocked() {
$file = vfsStream::newFile('foo.txt')
->at($this->root);
$fp = fopen(vfsStream::url('root/foo.txt'), 'rb');
$file
->lock($fp, LOCK_SH);
$this
->assertTrue(flock($fp, LOCK_SH));
$this
->assertTrue($file
->isLocked());
$this
->assertTrue($file
->hasSharedLock());
$this
->assertFalse($file
->hasExclusiveLock());
fclose($fp);
}