You are here

public function vfsStreamWrapperMkDirTestCase::mkdirRecursivelyDifferentPermissions in Zircon Profile 8

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

assert that mkdir() creates the correct directory structure

@test @group permissions

File

vendor/mikey179/vfsStream/src/test/php/org/bovigo/vfs/vfsStreamWrapperDirTestCase.php, line 130

Class

vfsStreamWrapperMkDirTestCase
Test for org\bovigo\vfs\vfsStreamWrapper around mkdir().

Namespace

org\bovigo\vfs

Code

public function mkdirRecursivelyDifferentPermissions() {
  $this
    ->assertTrue(mkdir($this->fooURL . '/another/more', 0755, true));
  $this
    ->assertEquals(3, count($this->foo
    ->getChildren()));
  $another = $this->foo
    ->getChild('another');
  $this
    ->assertTrue($another
    ->hasChild('more'));
  $this
    ->assertEquals(0755, $this->foo
    ->getChild('another')
    ->getPermissions());
  $this
    ->assertEquals(0755, $this->foo
    ->getChild('another')
    ->getChild('more')
    ->getPermissions());
}