protected function MediaLibraryTestHelper::createFileEntity in Media Library 7
1 call to MediaLibraryTestHelper::createFileEntity()
- MediaLibraryAdminTestCase::testFilesAdminPages in ./
media_library.test - Tests files overview with different user permissions.
File
- ./
media_library.test, line 38 - Test integration for the Media Library module.
Class
- MediaLibraryTestHelper
- @file Test integration for the Media Library 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,
'library' => 1,
);
$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'];
$file->library = $settings['library'];
// 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;
}