You are here

public function vfsStreamWrapperMkDirTestCase::issue17 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::issue17()

@test @group permissions @group bug_17

File

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

Class

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

Namespace

org\bovigo\vfs

Code

public function issue17() {
  vfsStreamWrapper::register();
  vfsStreamWrapper::setRoot(new vfsStreamDirectory('root', 0770));
  vfsStreamWrapper::getRoot()
    ->chgrp(vfsStream::GROUP_USER_1)
    ->chown(vfsStream::OWNER_USER_1);
  $this
    ->assertFalse(mkdir(vfsStream::url('root/doesNotWork')));
  $this
    ->assertFalse(vfsStreamWrapper::getRoot()
    ->hasChild('doesNotWork'));
}