You are here

public function vfsStreamWrapperFileTestCase::file_put_contentsExistingFileNonWritableDirectory in Zircon Profile 8

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

@test @group permissions @group bug_15

File

vendor/mikey179/vfsStream/src/test/php/org/bovigo/vfs/vfsStreamWrapperFileTestCase.php, line 63

Class

vfsStreamWrapperFileTestCase
Test for org\bovigo\vfs\vfsStreamWrapper.

Namespace

org\bovigo\vfs

Code

public function file_put_contentsExistingFileNonWritableDirectory() {
  vfsStreamWrapper::register();
  vfsStreamWrapper::setRoot(new vfsStreamDirectory('root', 00));
  vfsStream::newFile('new.txt')
    ->at(vfsStreamWrapper::getRoot())
    ->withContent('content');
  $this
    ->assertEquals(15, @file_put_contents(vfsStream::url('root/new.txt'), 'This does work.'));
  $this
    ->assertEquals('This does work.', file_get_contents(vfsStream::url('root/new.txt')));
}