public function vfsStreamWrapperFlockTestCase::canRemoveLockWithNonBlockingFlockCall 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::canRemoveLockWithNonBlockingFlockCall()
@test
File
- vendor/
mikey179/ vfsStream/ src/ test/ php/ org/ bovigo/ vfs/ vfsStreamWrapperFlockTestCase.php, line 206
Class
- vfsStreamWrapperFlockTestCase
- Test for flock() implementation.
Namespace
org\bovigo\vfsCode
public function canRemoveLockWithNonBlockingFlockCall() {
$file = vfsStream::newFile('foo.txt')
->at($this->root);
$fp = fopen(vfsStream::url('root/foo.txt'), 'rb');
$file
->lock($fp, LOCK_EX);
$this
->assertTrue(flock($fp, LOCK_UN | LOCK_NB));
$this
->assertFalse($file
->isLocked());
$this
->assertFalse($file
->hasSharedLock());
$this
->assertFalse($file
->hasExclusiveLock());
fclose($fp);
}