1 file.test FileUnmanagedCopyTest::testNonExistent()

Copy a non-existent file.

File

core/modules/simpletest/tests/file.test, line 1654
This provides SimpleTests for the core file handling functionality. These include FileValidateTest and FileSaveTest.

Class

FileUnmanagedCopyTest
Unmanaged copy related tests.

Code

function testNonExistent() {
  // Copy non-existent file
  $desired_filepath = $this->randomName();
  $this->assertFalse(file_exists($desired_filepath), "Randomly named file doesn't exists.");
  $new_filepath = file_unmanaged_copy($desired_filepath, $this->randomName());
  $this->assertFalse($new_filepath, 'Copying a missing file fails.');
}