function FileUnmanagedMoveTest::testNormal

Move a normal file.

File

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

Class

FileUnmanagedMoveTest
Unmanaged move related tests.

Code

function testNormal() {

  // Create a file for testing
  $file = $this
    ->createFile();

  // Moving to a new name.
  $desired_filepath = 'public://' . $this
    ->randomName();
  $new_filepath = file_unmanaged_move($file->uri, $desired_filepath, FILE_EXISTS_ERROR);
  $this
    ->assertTrue($new_filepath, 'Move was successful.');
  $this
    ->assertEqual($new_filepath, $desired_filepath, 'Returned expected filepath.');
  $this
    ->assertTrue(file_exists($new_filepath), 'File exists at the new location.');
  $this
    ->assertFalse(file_exists($file->uri), 'No file remains at the old location.');
  $this
    ->assertFilePermissions($new_filepath, variable_get('file_chmod_file', 0664));

  // Moving with rename.
  $desired_filepath = 'public://' . $this
    ->randomName();
  $this
    ->assertTrue(file_exists($new_filepath), 'File exists before moving.');
  $this
    ->assertTrue(file_put_contents($desired_filepath, ' '), 'Created a file so a rename will have to happen.');
  $newer_filepath = file_unmanaged_move($new_filepath, $desired_filepath, FILE_EXISTS_RENAME);
  $this
    ->assertTrue($newer_filepath, 'Move was successful.');
  $this
    ->assertNotEqual($newer_filepath, $desired_filepath, 'Returned expected filepath.');
  $this
    ->assertTrue(file_exists($newer_filepath), 'File exists at the new location.');
  $this
    ->assertFalse(file_exists($new_filepath), 'No file remains at the old location.');
  $this
    ->assertFilePermissions($newer_filepath, variable_get('file_chmod_file', 0664));

  // TODO: test moving to a directory (rather than full directory/file path)
  // TODO: test creating and moving normal files (rather than streams)
}