You are here

public function vfsStreamWrapperFlockTestCase::canAquireSharedLock in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/mikey179/vfsStream/src/test/php/org/bovigo/vfs/vfsStreamWrapperFlockTestCase.php \org\bovigo\vfs\vfsStreamWrapperFlockTestCase::canAquireSharedLock()

@test

File

vendor/mikey179/vfsStream/src/test/php/org/bovigo/vfs/vfsStreamWrapperFlockTestCase.php, line 57

Class

vfsStreamWrapperFlockTestCase
Test for flock() implementation.

Namespace

org\bovigo\vfs

Code

public function canAquireSharedLock() {
  $file = vfsStream::newFile('foo.txt')
    ->at($this->root);
  $fp = fopen(vfsStream::url('root/foo.txt'), 'rb');
  $this
    ->assertTrue(flock($fp, LOCK_SH));
  $this
    ->assertTrue($file
    ->isLocked());
  $this
    ->assertTrue($file
    ->hasSharedLock());
  $this
    ->assertFalse($file
    ->hasExclusiveLock());
  fclose($fp);
}