You are here

protected function FileEntityTestHelper::createFileEntity in File Entity (fieldable files) 7.2

Same name and namespace in other branches
  1. 7.3 file_entity.test \FileEntityTestHelper::createFileEntity()
10 calls to FileEntityTestHelper::createFileEntity()
FileEntityAccessTestCase::testFileEntityAccess in ./file_entity.test
Runs basic tests for file_entity_access function.
FileEntityAccessTestCase::testFileEntityPageAccess in ./file_entity.test
Tests page access.
FileEntityAccessTestCase::testFileEntityPrivateDownloadAccess in ./file_entity.test
Test to see if we have access to download private files when granted the permissions.
FileEntityAdminTestCase::testFilesAdminPages in ./file_entity.test
Tests files overview with different user permissions.
FileEntityAdminTestCase::testFilesAdminSort in ./file_entity.test
Tests that the table sorting works on the files admin pages.

... See full list

File

./file_entity.test, line 56
Test integration for the file_entity module.

Class

FileEntityTestHelper
@file Test integration for the file_entity module.

Code

protected function createFileEntity($settings = array()) {

  // Populate defaults array.
  $settings += array(
    'filepath' => 'Файл для тестирования ' . $this
      ->randomName(),
    // Prefix with non-latin characters to ensure that all file-related tests work with international filenames.
    'filemime' => 'text/plain',
    'uid' => 1,
    'timestamp' => REQUEST_TIME,
    'status' => FILE_STATUS_PERMANENT,
    'contents' => "file_put_contents() doesn't seem to appreciate empty strings so let's put in some data.",
    'scheme' => file_default_scheme(),
    'type' => NULL,
  );
  $filepath = $settings['scheme'] . '://' . $settings['filepath'];
  file_put_contents($filepath, $settings['contents']);
  $this
    ->assertTrue(is_file($filepath), t('The test file exists on the disk.'), 'Create test file');
  $file = new stdClass();
  $file->uri = $filepath;
  $file->filename = drupal_basename($file->uri);
  $file->filemime = $settings['filemime'];
  $file->uid = $settings['uid'];
  $file->timestamp = $settings['timestamp'];
  $file->filesize = filesize($file->uri);
  $file->status = $settings['status'];
  $file->type = $settings['type'];

  // The file type is used as a bundle key, and therefore, must not be NULL.
  if (!isset($file->type)) {
    $file->type = FILE_TYPE_NONE;
  }

  // If the file isn't already assigned a real type, determine what type should
  // be assigned to it.
  if ($file->type === FILE_TYPE_NONE) {
    $type = file_get_type($file);
    if (isset($type)) {
      $file->type = $type;
    }
  }

  // Write the record directly rather than calling file_save() so we don't
  // invoke the hooks.
  $this
    ->assertNotIdentical(drupal_write_record('file_managed', $file), FALSE, t('The file was added to the database.'), 'Create test file');
  return $file;
}