You are here

function FileSaveDataTest::testWithFilename in SimpleTest 7

Test the file_save_data() function when a filename is provided.

File

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

Class

FileSaveDataTest
Tests the file_save_data() function.

Code

function testWithFilename() {
  $contents = $this
    ->randomName(8);
  $result = file_save_data($contents, 'public://' . 'asdf.txt');
  $this
    ->assertTrue($result, t('Unnamed file saved correctly.'));
  $this
    ->assertEqual(file_directory_path('public'), file_directory_path(file_stream_wrapper_valid_scheme($result->uri)), t("File was placed in Drupal's files directory."));
  $this
    ->assertEqual('asdf.txt', basename($result->uri), t('File was named correctly.'));
  $this
    ->assertEqual($contents, file_get_contents($result->uri), t('Contents of the file are correct.'));
  $this
    ->assertEqual($result->filemime, 'text/plain', t('A MIME type was set.'));
  $this
    ->assertEqual($result->status, FILE_STATUS_PERMANENT, t("The file's status was set to permanent."));

  // Check that the correct hooks were called.
  $this
    ->assertFileHooksCalled(array(
    'insert',
  ));

  // Verify that what was returned is what's in the database.
  $this
    ->assertFileUnchanged($result, file_load($result->fid, TRUE));
}