function ReadOnlyStreamWrapperTest::testWriteFunctions

Test write functionality of the read-only stream wrapper.

File

drupal/core/modules/system/lib/Drupal/system/Tests/File/ReadOnlyStreamWrapperTest.php, line 46
Definition of Drupal\system\Tests\File\ReadOnlyStreamWrapperTest.

Class

ReadOnlyStreamWrapperTest
Tests that files can not be written using ReadOnlyStreamWrapper functions.

Namespace

Drupal\system\Tests\File

Code

function testWriteFunctions() {

  // Generate a test file
  $filename = $this
    ->randomName();
  $filepath = conf_path() . '/files/' . $filename;
  file_put_contents($filepath, $filename);

  // Generate a read-only stream wrapper instance
  $uri = $this->scheme . '://' . $filename;
  $instance = file_stream_wrapper_get_instance_by_scheme($this->scheme);

  // Attempt to open a file in write mode
  $handle = @fopen($uri, 'w+');
  $this
    ->assertFalse($handle, 'Unable to open a file for writing with the read-only stream wrapper.');

  // Attempt to open a file in read mode
  $handle = fopen($uri, 'r');
  $this
    ->assertTrue($handle, 'Able to open a file for reading with the read-only stream wrapper.');

  // Attempt to change file permissions
  $this
    ->assertFalse(@drupal_chmod($uri, 0777), 'Unable to change file permissions when using read-only stream wrapper.');

  // Attempt to acquire an exclusive lock for writing
  $this
    ->assertFalse(@flock($handle, LOCK_EX | LOCK_NB), 'Unable to acquire an exclusive lock using the read-only stream wrapper.');

  // Attempt to obtain a shared lock
  $this
    ->assertTrue(flock($handle, LOCK_SH | LOCK_NB), 'Able to acquire a shared lock using the read-only stream wrapper.');

  // Attempt to release a shared lock
  $this
    ->assertTrue(flock($handle, LOCK_UN | LOCK_NB), 'Able to release a shared lock using the read-only stream wrapper.');

  // Attempt to write to the file
  $this
    ->assertFalse(@fwrite($handle, $this
    ->randomName()), 'Unable to write to file using the read-only stream wrapper.');

  // Attempt to flush output to the file
  $this
    ->assertFalse(@fflush($handle), 'Unable to flush output to file using the read-only stream wrapper.');

  // Attempt to close the stream.  (Suppress errors, as fclose triggers fflush.)
  $this
    ->assertTrue(@fclose($handle), 'Able to close file using the read_only stream wrapper.');

  // Test the rename() function
  $this
    ->assertFalse(@rename($uri, $this->scheme . '://newname.txt'), 'Unable to rename files using the read-only stream wrapper.');

  // Test the unlink() function
  $this
    ->assertTrue(@drupal_unlink($uri), 'Able to unlink file using read-only stream wrapper.');
  $this
    ->assertTrue(file_exists($filepath), 'Unlink File was not actually deleted.');

  // Test the mkdir() function by attempting to create a directory.
  $dirname = $this
    ->randomName();
  $dir = conf_path() . '/files/' . $dirname;
  $readonlydir = $this->scheme . '://' . $dirname;
  $this
    ->assertFalse(@drupal_mkdir($readonlydir, 0775, 0), 'Unable to create directory with read-only stream wrapper.');

  // Create a temporary directory for testing purposes
  $this
    ->assertTrue(drupal_mkdir($dir), 'Test directory created.');

  // Test the rmdir() function by attempting to remove the directory.
  $this
    ->assertFalse(@drupal_rmdir($readonlydir), 'Unable to delete directory with read-only stream wrapper.');

  // Remove the temporary directory.
  drupal_rmdir($dir);
}