- <?php
- * @file
- * This provides SimpleTests for the core file handling functionality.
- * These include FileValidateTest and FileSaveTest.
- */
-
- * Helper validator that returns the $errors parameter.
- */
- function file_test_validator(File $file, $errors) {
- return $errors;
- }
-
- * Helper function for testing file_scan_directory().
- *
- * Each time the function is called the file is stored in a static variable.
- * When the function is called with no $filepath parameter, the results are
- * returned.
- *
- * @param $filepath
- * File path
- * @return
- * If $filepath is NULL, an array of all previous $filepath parameters
- */
- function file_test_file_scan_callback($filepath = NULL) {
- $files = &backdrop_static(__FUNCTION__, array());
- if (isset($filepath)) {
- $files[] = $filepath;
- }
- else {
- return $files;
- }
- }
-
- * Reset static variables used by file_test_file_scan_callback().
- */
- function file_test_file_scan_callback_reset() {
- backdrop_static_reset('file_test_file_scan_callback');
- }
-
- * Base class for file tests that adds some additional file specific
- * assertions and helper functions.
- */
- class FileTestCase extends BackdropWebTestCase {
- protected $profile = 'testing';
-
-
- * Check that two files have the same values for all fields other than the
- * timestamp.
- *
- * @param $before
- * File object to compare.
- * @param $after
- * File object to compare.
- */
- function assertFileUnchanged($before, $after) {
- $this->assertEqual($before->fid, $after->fid, format_string('File id is the same: %file1 == %file2.', array('%file1' => $before->fid, '%file2' => $after->fid)), 'File unchanged');
- $this->assertEqual($before->uid, $after->uid, format_string('File owner is the same: %file1 == %file2.', array('%file1' => $before->uid, '%file2' => $after->uid)), 'File unchanged');
- $this->assertEqual($before->filename, $after->filename, format_string('File name is the same: %file1 == %file2.', array('%file1' => $before->filename, '%file2' => $after->filename)), 'File unchanged');
- $this->assertEqual($before->uri, $after->uri, format_string('File path is the same: %file1 == %file2.', array('%file1' => $before->uri, '%file2' => $after->uri)), 'File unchanged');
- $this->assertEqual($before->filemime, $after->filemime, format_string('File MIME type is the same: %file1 == %file2.', array('%file1' => $before->filemime, '%file2' => $after->filemime)), 'File unchanged');
- $this->assertEqual($before->filesize, $after->filesize, format_string('File size is the same: %file1 == %file2.', array('%file1' => $before->filesize, '%file2' => $after->filesize)), 'File unchanged');
- $this->assertEqual($before->status, $after->status, format_string('File status is the same: %file1 == %file2.', array('%file1' => $before->status, '%file2' => $after->status)), 'File unchanged');
- }
-
-
- * Check that two files are not the same by comparing the fid and filepath.
- *
- * @param $file1
- * File object to compare.
- * @param $file2
- * File object to compare.
- */
- function assertDifferentFile($file1, $file2) {
- $this->assertNotEqual($file1->fid, $file2->fid, format_string('Files have different ids: %file1 != %file2.', array('%file1' => $file1->fid, '%file2' => $file2->fid)), 'Different file');
- $this->assertNotEqual($file1->uri, $file2->uri, format_string('Files have different paths: %file1 != %file2.', array('%file1' => $file1->uri, '%file2' => $file2->uri)), 'Different file');
- }
-
-
- * Check that two files are the same by comparing the fid and filepath.
- *
- * @param $file1
- * File object to compare.
- * @param $file2
- * File object to compare.
- */
- function assertSameFile($file1, $file2) {
- $this->assertEqual($file1->fid, $file2->fid, format_string('Files have the same ids: %file1 == %file2.', array('%file1' => $file1->fid, '%file2-fid' => $file2->fid)), 'Same file');
- $this->assertEqual($file1->uri, $file2->uri, format_string('Files have the same path: %file1 == %file2.', array('%file1' => $file1->uri, '%file2' => $file2->uri)), 'Same file');
- }
-
-
- * Helper function to test the permissions of a file.
- *
- * @param $filepath
- * String file path.
- * @param $expected_mode
- * Octal integer like 0664 or 0777.
- * @param $message
- * Optional message.
- */
- function assertFilePermissions($filepath, $expected_mode, $message = NULL) {
-
- clearstatcache();
-
-
- $actual_mode = fileperms($filepath) & 0777;
-
-
-
-
-
-
- if (substr(PHP_OS, 0, 3) == 'WIN') {
-
- $expected_mode = $expected_mode & 0700;
-
- $expected_mode = $expected_mode | $expected_mode >> 3 | $expected_mode >> 6;
- }
-
- if (!isset($message)) {
- $message = format_string('Expected file permission to be %expected, actually were %actual.', array('%actual' => decoct($actual_mode), '%expected' => decoct($expected_mode)));
- }
- $this->assertEqual($actual_mode, $expected_mode, $message);
- }
-
-
- * Helper function to test the permissions of a directory.
- *
- * @param $directory
- * String directory path.
- * @param $expected_mode
- * Octal integer like 0664 or 0777.
- * @param $message
- * Optional message.
- */
- function assertDirectoryPermissions($directory, $expected_mode, $message = NULL) {
-
- clearstatcache();
-
-
- $actual_mode = fileperms($directory) & 0777;
-
-
-
-
-
-
- if (substr(PHP_OS, 0, 3) == 'WIN') {
-
- $expected_mode = $expected_mode & 0700;
-
- $expected_mode = $expected_mode | $expected_mode >> 3 | $expected_mode >> 6;
- }
-
- if (!isset($message)) {
- $message = format_string('Expected directory permission to be %expected, actually were %actual.', array('%actual' => decoct($actual_mode), '%expected' => decoct($expected_mode)));
- }
- $this->assertEqual($actual_mode, $expected_mode, $message);
- }
-
-
- * Create a directory and assert it exists.
- *
- * @param $path
- * Optional string with a directory path. If none is provided, a random
- * name in the site's files directory will be used.
- * @return
- * The path to the directory.
- */
- function createDirectory($path = NULL) {
-
- if (!isset($path)) {
- $path = file_default_scheme() . '://' . $this->randomName();
- }
- $this->assertTrue(backdrop_mkdir($path) && is_dir($path), 'Directory was created successfully.');
- return $path;
- }
-
-
- * Create a file and save it to the files table and assert that it occurs
- * correctly.
- *
- * @param $filepath
- * Optional string specifying the file path. If none is provided then a
- * randomly named file will be created in the site's files directory.
- * @param $contents
- * Optional contents to save into the file. If a NULL value is provided an
- * arbitrary string will be used.
- * @param $scheme
- * Optional string indicating the stream scheme to use. Backdrop core
- * includes public, private, and temporary. The public wrapper is the
- * default.
- * @return File
- * File object.
- */
- function createFile($filepath = NULL, $contents = NULL, $scheme = NULL) {
- if (!isset($filepath)) {
-
-
-
- $filepath = 'Файл для тестирования ' . $this->randomName();
- }
- if (!isset($scheme)) {
- $scheme = file_default_scheme();
- }
- $filepath = $scheme . '://' . $filepath;
-
- if (!isset($contents)) {
- $contents = "file_put_contents() doesn't seem to appreciate empty strings so let's put in some data.";
- }
-
- file_put_contents($filepath, $contents);
- $this->assertTrue(is_file($filepath), 'The test file exists on the disk.', 'Create test file');
-
- $file = new stdClass();
- $file->uri = $filepath;
- $file->filename = backdrop_basename($file->uri);
- $file->filemime = 'text/plain';
- $file->uid = 1;
- $file->timestamp = REQUEST_TIME;
- $file->filesize = filesize($file->uri);
- $file->status = 0;
-
-
- $this->assertNotIdentical(backdrop_write_record('file_managed', $file), FALSE, 'The file was added to the database.', 'Create test file');
-
- return entity_create('file', (array) $file);
- }
- }
-
- * Base class for file tests that use the file_test module to test uploads and
- * hooks.
- */
- class FileHookTestCase extends FileTestCase {
- function setUp() {
-
- parent::setUp('file_test');
-
- file_test_reset();
- }
-
-
- * Assert that all of the specified hook_file_* hooks were called once, other
- * values result in failure.
- *
- * @param $expected
- * Array with string containing with the hook name, e.g. 'load', 'save',
- * 'insert', etc.
- */
- function assertFileHooksCalled($expected) {
-
- $actual = array_keys(array_filter(file_test_get_all_calls()));
-
-
- $uncalled = array_diff($expected, $actual);
- if (count($uncalled)) {
- $this->assertTrue(FALSE, format_string('Expected hooks %expected to be called but %uncalled was not called.', array('%expected' => implode(', ', $expected), '%uncalled' => implode(', ', $uncalled))));
- }
- else {
- $this->assertTrue(TRUE, format_string('All the expected hooks were called: %expected', array('%expected' => empty($expected) ? '(none)' : implode(', ', $expected))));
- }
-
-
- $unexpected = array_diff($actual, $expected);
- if (count($unexpected)) {
- $this->assertTrue(FALSE, format_string('Unexpected hooks were called: %unexpected.', array('%unexpected' => empty($unexpected) ? t('(none)') : implode(', ', $unexpected))));
- }
- else {
- $this->assertTrue(TRUE, 'No unexpected hooks were called.');
- }
- }
-
-
- * Assert that a hook_file_* hook was called a certain number of times.
- *
- * @param $hook
- * String with the hook name, e.g. 'load', 'save', 'insert', etc.
- * @param $expected_count
- * Optional integer count.
- * @param $message
- * Optional translated string message.
- */
- function assertFileHookCalled($hook, $expected_count = 1, $message = NULL) {
- $actual_count = count(file_test_get_calls($hook));
-
- if (!isset($message)) {
- if ($actual_count == $expected_count) {
- $message = format_string('hook_file_@name was called correctly.', array('@name' => $hook));
- }
- elseif ($expected_count == 0) {
- $message = format_plural($actual_count, 'hook_file_@name was not expected to be called but was actually called once.', 'hook_file_@name was not expected to be called but was actually called @count times.', array('@name' => $hook, '@count' => $actual_count));
- }
- else {
- $message = format_string('hook_file_@name was expected to be called %expected times but was called %actual times.', array('@name' => $hook, '%expected' => $expected_count, '%actual' => $actual_count));
- }
- }
- $this->assertEqual($actual_count, $expected_count, $message);
- }
- }
-
-
- * This will run tests against the file_space_used() function.
- */
- class FileSpaceUsedTest extends FileTestCase {
- function setUp() {
- parent::setUp();
-
-
- $file = array('uid' => 2, 'uri' => 'public://example1.txt', 'filesize' => 50, 'status' => FILE_STATUS_PERMANENT);
- backdrop_write_record('file_managed', $file);
- $file = array('uid' => 2, 'uri' => 'public://example2.txt', 'filesize' => 20, 'status' => FILE_STATUS_PERMANENT);
- backdrop_write_record('file_managed', $file);
- $file = array('uid' => 3, 'uri' => 'public://example3.txt', 'filesize' => 100, 'status' => FILE_STATUS_PERMANENT);
- backdrop_write_record('file_managed', $file);
- $file = array('uid' => 3, 'uri' => 'public://example4.txt', 'filesize' => 200, 'status' => FILE_STATUS_PERMANENT);
- backdrop_write_record('file_managed', $file);
-
-
- $file = array('uid' => 2, 'uri' => 'public://example5.txt', 'filesize' => 1, 'status' => 0);
- backdrop_write_record('file_managed', $file);
- $file = array('uid' => 3, 'uri' => 'public://example6.txt', 'filesize' => 3, 'status' => 0);
- backdrop_write_record('file_managed', $file);
- }
-
-
- * Test different users with the default status.
- */
- function testFileSpaceUsed() {
-
- $this->assertEqual(file_space_used(2), 70);
- $this->assertEqual(file_space_used(3), 300);
- $this->assertEqual(file_space_used(), 370);
-
-
- $this->assertEqual(file_space_used(NULL, 0), 4);
- $this->assertEqual(file_space_used(NULL, FILE_STATUS_PERMANENT), 370);
-
-
- $this->assertEqual(file_space_used(1, 0), 0);
- $this->assertEqual(file_space_used(1, FILE_STATUS_PERMANENT), 0);
- $this->assertEqual(file_space_used(2, 0), 1);
- $this->assertEqual(file_space_used(2, FILE_STATUS_PERMANENT), 70);
- $this->assertEqual(file_space_used(3, 0), 3);
- $this->assertEqual(file_space_used(3, FILE_STATUS_PERMANENT), 300);
- }
- }
-
- * This will run tests against the file validation functions (file_validate_*).
- */
- class FileValidatorTest extends BackdropWebTestCase {
- protected $profile = 'testing';
- protected $image;
- protected $non_image;
- protected $file;
-
- function setUp() {
- parent::setUp(array('file'));
-
- $this->image = new File(array());
- $this->image->uri = 'core/misc/feed.png';
- $this->image->filename = backdrop_basename($this->image->uri);
-
- $this->non_image = new File(array());
- $this->non_image->uri = 'core/misc/jquery.js';
- $this->non_image->filename = backdrop_basename($this->non_image->uri);
- }
-
-
- * Test the file_validate_extensions() function.
- */
- function testFileValidateExtensions() {
- $file = new File(array('filename' => 'asdf.txt'));
- $errors = file_validate_extensions($file, 'asdf txt pork');
- $this->assertEqual(count($errors), 0, 'Valid extension accepted.', 'File');
-
- $file->filename = 'asdf.txt';
- $errors = file_validate_extensions($file, 'exe png');
- $this->assertEqual(count($errors), 1, 'Invalid extension blocked.', 'File');
- }
-
-
- * This ensures a specific file is actually an image.
- */
- function testFileValidateIsImage() {
- $this->assertTrue(file_exists($this->image->uri), 'The image being tested exists.', 'File');
- $errors = file_validate_is_image($this->image);
- $this->assertEqual(count($errors), 0, 'No error reported for our image file.', 'File');
-
- $this->assertTrue(file_exists($this->non_image->uri), 'The non-image being tested exists.', 'File');
- $errors = file_validate_is_image($this->non_image);
- $this->assertEqual(count($errors), 1, 'An error reported for our non-image file.', 'File');
- }
-
-
- * This ensures the resolution of a specific file is within bounds.
- * The image will be resized if it's too large.
- */
- function testFileValidateImageResolution() {
-
- $errors = file_validate_image_resolution($this->non_image);
- $this->assertEqual(count($errors), 0, "Shouldn't get any errors for a non-image file.", 'File');
- $errors = file_validate_image_resolution($this->non_image, '50x50', '100x100');
- $this->assertEqual(count($errors), 0, "Don't check the resolution on non files.", 'File');
-
-
- $errors = file_validate_image_resolution($this->image);
- $this->assertEqual(count($errors), 0, 'No errors for an image when there is no minimum or maximum resolution.', 'File');
- $errors = file_validate_image_resolution($this->image, 0, '200x1');
- $this->assertEqual(count($errors), 1, "Got an error for an image that wasn't wide enough.", 'File');
- $errors = file_validate_image_resolution($this->image, 0, '1x200');
- $this->assertEqual(count($errors), 1, "Got an error for an image that wasn't tall enough.", 'File');
- $errors = file_validate_image_resolution($this->image, 0, '200x200');
- $this->assertEqual(count($errors), 1, 'Small images report an error.', 'File');
-
-
- if (image_get_toolkit()) {
-
- copy('core/misc/feed.png', 'temporary://feed.png');
- $this->image->uri = 'temporary://feed.png';
-
- $errors = file_validate_image_resolution($this->image, '10x5');
- $this->assertEqual(count($errors), 0, 'No errors should be reported when an oversized image can be scaled down.', 'File');
-
- $info = image_get_info($this->image->uri);
- $this->assertTrue($info['width'] <= 10, 'Image scaled to correct width.', 'File');
- $this->assertTrue($info['height'] <= 5, 'Image scaled to correct height.', 'File');
-
- backdrop_unlink('temporary://feed.png');
- }
- else {
-
- $errors = file_validate_image_resolution($this->image, '5x10');
- $this->assertEqual(count($errors), 1, "Oversize images that can't be scaled get an error.", 'File');
- }
- }
-
-
- * This will ensure the filename length is valid.
- */
- function testFileValidateNameLength() {
-
- $file = new File();
-
-
- $file->filename = str_repeat('x', 240);
- $this->assertEqual(strlen($file->filename), 240);
- $errors = file_validate_name_length($file);
- $this->assertEqual(count($errors), 0, 'No errors reported for 240 length filename.', 'File');
-
-
- $file->filename = str_repeat('x', 241);
- $errors = file_validate_name_length($file);
- $this->assertEqual(count($errors), 1, 'An error reported for 241 length filename.', 'File');
-
-
- $file->filename = '';
- $errors = file_validate_name_length($file);
- $this->assertEqual(count($errors), 1, 'An error reported for 0 length filename.', 'File');
- }
-
-
-
- * Test file_validate_size().
- */
- function testFileValidateSize() {
-
- $file = new File(array('filesize' => 1000));
- $errors = file_validate_size($file, 0, 0);
- $this->assertEqual(count($errors), 0, 'No limits means no errors.', 'File');
- $errors = file_validate_size($file, 1, 0);
- $this->assertEqual(count($errors), 1, 'Error for the file being over the limit.', 'File');
- $errors = file_validate_size($file, 0, 1);
- $this->assertEqual(count($errors), 1, 'Error for the user being over their limit.', 'File');
- $errors = file_validate_size($file, 1, 1);
- $this->assertEqual(count($errors), 2, 'Errors for both the file and their limit.', 'File');
- }
- }
-
-
-
- * Tests the file_unmanaged_save_data() function.
- */
- class FileUnmanagedSaveDataTest extends FileTestCase {
-
- * Test the file_unmanaged_save_data() function.
- */
- function testFileSaveData() {
- $contents = $this->randomName(8);
-
-
- $filepath = file_unmanaged_save_data($contents);
- $this->assertTrue($filepath, 'Unnamed file saved correctly.');
- $this->assertEqual(file_uri_scheme($filepath), file_default_scheme(), "File was placed in Backdrop's files directory.");
- $this->assertEqual($contents, file_get_contents($filepath), 'Contents of the file are correct.');
-
-
- $filepath = file_unmanaged_save_data($contents, 'public://asdf.txt', FILE_EXISTS_REPLACE);
- $this->assertTrue($filepath, 'Unnamed file saved correctly.');
- $this->assertEqual('asdf.txt', backdrop_basename($filepath), 'File was named correctly.');
- $this->assertEqual($contents, file_get_contents($filepath), 'Contents of the file are correct.');
- $this->assertFilePermissions($filepath, settings_get('file_chmod_file', 0664));
- }
- }
-
- * Tests the file_unmanaged_save_data() function on remote filesystems.
- */
- class RemoteFileUnmanagedSaveDataTest extends FileUnmanagedSaveDataTest {
- function setUp() {
- parent::setUp('file_test');
- config_set('system.core', 'file_default_scheme', 'dummy-remote');
- }
- }
-
- * Test the file_save_upload() function.
- */
- class FileSaveUploadTest extends FileHookTestCase {
-
- * An image file path for uploading.
- */
- protected $image;
- protected $image_extension;
-
-
- * A PHP file path for upload security testing.
- */
- protected $php_file;
-
-
- * The largest file id when the test starts.
- */
- protected $maxFidBefore;
-
- function setUp() {
- parent::setUp();
-
- $image_files = $this->backdropGetTestFiles('image');
- $this->image = new File((array) current($image_files));
-
- list(, $this->image_extension) = explode('.', $this->image->filename);
- $this->assertTrue(is_file($this->image->uri), "The image file we're going to upload exists.");
-
- $this->php_file = current($this->backdropGetTestFiles('php'));
- $this->assertTrue(is_file($this->php_file->uri), "The PHP file we're going to upload exists.");
-
- $this->maxFidBefore = db_query('SELECT MAX(fid) AS fid FROM {file_managed}')->fetchField();
-
-
- $edit = array(
- 'file_test_replace' => FILE_EXISTS_REPLACE,
- 'files[file_test_upload]' => backdrop_realpath($this->image->uri),
- );
- $this->backdropPost('file-test/upload', $edit, t('Submit'));
- $this->assertResponse(200, 'Received a 200 response for posted test file.');
- $this->assertRaw(t('You WIN!'), 'Found the success message.');
-
-
-
- $this->assertFileHooksCalled(array('validate', 'insert'));
- file_test_reset();
- }
-
-
- * Test the file_save_upload() function.
- */
- function testNormal() {
- $max_fid_after = db_query('SELECT MAX(fid) AS fid FROM {file_managed}')->fetchField();
- $this->assertTrue($max_fid_after > $this->maxFidBefore, 'A new file was created.');
- $file1 = file_load($max_fid_after);
- $this->assertTrue($file1, 'Loaded the file.');
-
- $this->assertEqual(substr($file1->filemime, 0, 5), 'image', 'A MIME type was set.');
-
-
- file_test_reset();
-
-
- $image2 = current($this->backdropGetTestFiles('image'));
- $edit = array('files[file_test_upload]' => backdrop_realpath($image2->uri));
- $this->backdropPost('file-test/upload', $edit, t('Submit'));
- $this->assertResponse(200, 'Received a 200 response for posted test file.');
- $this->assertRaw(t('You WIN!'));
- $max_fid_after = db_query('SELECT MAX(fid) AS fid FROM {file_managed}')->fetchField();
-
-
- $this->assertFileHooksCalled(array('validate', 'insert'));
-
- $file2 = file_load($max_fid_after);
- $this->assertTrue($file2);
-
- $this->assertEqual(substr($file2->filemime, 0, 5), 'image', 'A MIME type was set.');
-
-
- $files = file_load_multiple(array($file1->fid, $file2->fid));
- $this->assertTrue(isset($files[$file1->fid]), 'File was loaded successfully');
- $this->assertTrue(isset($files[$file2->fid]), 'File was loaded successfully');
-
-
- $image3 = current($this->backdropGetTestFiles('image'));
- $image3_realpath = backdrop_realpath($image3->uri);
- $dir = $this->randomName();
- $edit = array(
- 'files[file_test_upload]' => $image3_realpath,
- 'file_subdirectory' => $dir,
- );
- $this->backdropPost('file-test/upload', $edit, t('Submit'));
- $this->assertResponse(200, 'Received a 200 response for posted test file.');
- $this->assertRaw(t('You WIN!'));
- $this->assertTrue(is_file('temporary://' . $dir . '/' . trim(backdrop_basename($image3_realpath))));
-
-
- $this->assertFalse(file_load_multiple(), 'No files were loaded.');
- }
-
-
- * Test extension handling.
- */
- function testHandleExtension() {
-
-
-
-
- $extensions = 'foo';
- $edit = array(
- 'file_test_replace' => FILE_EXISTS_REPLACE,
- 'files[file_test_upload]' => backdrop_realpath($this->image->uri),
- 'extensions' => $extensions,
- );
-
- $this->backdropPost('file-test/upload', $edit, t('Submit'));
- $this->assertResponse(200, 'Received a 200 response for posted test file.');
- $message = t('Only files with the following extensions are allowed:') . ' <em class="placeholder">' . $extensions . '</em>';
- $this->assertRaw($message, "Can't upload a disallowed extension");
- $this->assertRaw(t('Epic upload FAIL!'), 'Found the failure message.');
-
-
- $this->assertFileHooksCalled(array('validate'));
-
-
- file_test_reset();
-
- $extensions = 'foo ' . $this->image_extension;
-
- $edit = array(
- 'file_test_replace' => FILE_EXISTS_REPLACE,
- 'files[file_test_upload]' => backdrop_realpath($this->image->uri),
- 'extensions' => $extensions,
- );
-
- $this->backdropPost('file-test/upload', $edit, t('Submit'));
- $this->assertResponse(200, 'Received a 200 response for posted test file.');
- $this->assertNoRaw(t('Only files with the following extensions are allowed:'), 'Can upload an allowed extension.');
- $this->assertRaw(t('You WIN!'), 'Found the success message.');
-
-
- $this->assertFileHooksCalled(array('validate', 'load', 'update'));
-
-
- file_test_reset();
-
-
- $edit = array(
- 'file_test_replace' => FILE_EXISTS_REPLACE,
- 'files[file_test_upload]' => backdrop_realpath($this->image->uri),
- 'allow_all_extensions' => 'empty_array',
- );
- $this->backdropPost('file-test/upload', $edit, t('Submit'));
- $this->assertResponse(200, 'Received a 200 response for posted test file.');
- $this->assertNoRaw(t('Only files with the following extensions are allowed:'), 'Can upload any extension.');
- $this->assertRaw(t('You WIN!'), 'Found the success message.');
-
-
- $this->assertFileHooksCalled(array('validate', 'load', 'update'));
-
-
- file_test_reset();
-
-
-
- $edit = array(
- 'file_test_replace' => FILE_EXISTS_REPLACE,
- 'files[file_test_upload]' => backdrop_realpath($this->php_file->uri),
- 'is_image_file' => FALSE,
- 'allow_all_extensions' => 'empty_array',
- );
- $this->backdropPost('file-test/upload', $edit, t('Submit'));
- $this->assertResponse(200, 'Received a 200 response for posted test file.');
- $message = format_string('For security reasons, your upload has been renamed to %renamed_file', array('%renamed_file' => $this->php_file->filename . '_.txt'));
- $this->assertRaw($message, 'Dangerous file was renamed.');
- $this->assertRaw('File name is php-2.php_.txt.');
- $this->assertRaw(t('File MIME type is text/plain.'), "Dangerous file's MIME type was changed.");
- $this->assertRaw(t('You WIN!'), 'Found the success message.');
-
- $this->assertFileHooksCalled(array('validate', 'insert'));
- }
-
-
- * Test dangerous file handling.
- */
- function testHandleDangerousFile() {
-
-
- $edit = array(
- 'file_test_replace' => FILE_EXISTS_REPLACE,
- 'files[file_test_upload]' => backdrop_realpath($this->php_file->uri),
- 'is_image_file' => FALSE,
- 'extensions' => 'php',
- );
-
- $this->backdropPost('file-test/upload', $edit, t('Submit'));
- $this->assertResponse(200, 'Received a 200 response for posted test file.');
- $message = t('For security reasons, your upload has been renamed to') . ' <em class="placeholder">' . $this->php_file->filename . '_.txt</em>';
- $this->assertRaw($message, 'Dangerous file was renamed.');
- $this->assertRaw(t('File MIME type is text/plain.'), "Dangerous file's MIME type was changed.");
- $this->assertRaw(t('You WIN!'), 'Found the success message.');
-
-
- $this->assertFileHooksCalled(array('validate', 'insert'));
-
-
-
- tempstore_set('simpletest', 'settings', array(
- 'allow_insecure_uploads' => 1,
- ), REQUEST_TIME + 3600);
-
-
- file_test_reset();
-
- $this->backdropPost('file-test/upload', $edit, t('Submit'));
- $this->assertResponse(200, 'Received a 200 response for posted test file.');
- $this->assertNoRaw(t('For security reasons, your upload has been renamed'), 'Found no security message.');
- $this->assertRaw(t('File name is !filename', array('!filename' => $this->php_file->filename)), 'Dangerous file was not renamed when insecure uploads is TRUE.');
- $this->assertRaw(t('You WIN!'), 'Found the success message.');
-
-
- $this->assertFileHooksCalled(array('validate', 'insert'));
-
-
- file_test_reset();
-
-
-
- $edit['extensions'] = 'foo';
- $this->backdropPost('file-test/upload', $edit, t('Submit'));
- $this->assertResponse(200, 'Received a 200 response for posted test file.');
- $message = t('Only files with the following extensions are allowed:') . ' <em class="placeholder">' . $edit['extensions'] . '</em>';
- $this->assertRaw($message, 'Cannot upload a disallowed extension');
- $this->assertRaw(t('Epic upload FAIL!'), 'Found the failure message.');
-
-
- $this->assertFileHooksCalled(array('validate'));
-
-
- file_test_reset();
-
-
-
-
- tempstore_clear('simpletest', 'settings');
- $this->backdropPost('file-test/upload', $edit, t('Submit'));
- $this->assertResponse(200, 'Received a 200 response for posted test file.');
- $message = t('Only files with the following extensions are allowed:') . ' <em class="placeholder">' . $edit['extensions'] . '</em>';
- $this->assertRaw($message, 'Cannot upload a disallowed extension');
- $this->assertRaw(t('Epic upload FAIL!'), 'Found the failure message.');
-
-
- $this->assertFileHooksCalled(array('validate'));
-
-
- file_test_reset();
-
- }
-
-
- * Test file munge handling.
- */
- function testHandleFileMunge() {
- $original_image_uri = $this->image->uri;
- $this->image = file_move($this->image, $this->image->uri . '.foo.' . $this->image_extension);
-
-
- file_test_reset();
-
-
-
- $extensions = 'foo ' . $this->image_extension;
- $edit = array(
- 'files[file_test_upload]' => backdrop_realpath($this->image->uri),
- 'extensions' => $extensions,
- );
-
- $this->backdropPost('file-test/upload', $edit, t('Submit'));
- $this->assertResponse(200, 'Received a 200 response for posted test file.');
- $this->assertNoRaw(t('For security reasons, your upload has been renamed'), 'Found no security message.');
- $this->assertRaw(t('File name is @filename', array('@filename' => 'image-test.png.foo.png')), 'File was not munged when all extensions within it are allowed.');
- $this->assertRaw(t('You WIN!'), 'Found the success message.');
-
-
- $this->assertFileHooksCalled(array('validate', 'insert'));
-
-
- $extensions = $this->image_extension;
- $edit = array(
- 'files[file_test_upload]' => backdrop_realpath($this->image->uri),
- 'extensions' => $extensions,
- );
-
- $munged_filename = $this->image->filename;
- $munged_filename = substr($munged_filename, 0, strrpos($munged_filename, '.'));
- $munged_filename .= '_.' . $this->image_extension;
-
- $this->backdropPost('file-test/upload', $edit, t('Submit'));
- $this->assertResponse(200, 'Received a 200 response for posted test file.');
- $this->assertRaw(t('For security reasons, your upload has been renamed'), 'Found security message.');
- $this->assertRaw(t('File name is !filename', array('!filename' => $munged_filename)), 'File was successfully munged.');
- $this->assertRaw(t('You WIN!'), 'Found the success message.');
-
-
- $this->assertFileHooksCalled(array('validate', 'insert'));
-
-
-
- file_test_reset();
-
- $edit = array(
- 'files[file_test_upload]' => backdrop_realpath($this->image->uri),
- 'allow_all_extensions' => 'empty_array',
- );
-
- $this->backdropPost('file-test/upload', $edit, t('Submit'));
- $this->assertResponse(200, 'Received a 200 response for posted test file.');
- $this->assertNoRaw(t('For security reasons, your upload has been renamed'), 'Found no security message.');
- $this->assertRaw(t('File name is !filename', array('!filename' => $this->image->filename)), 'File was not munged when allowing any extension.');
- $this->assertRaw(t('You WIN!'), 'Found the success message.');
-
-
- $this->assertFileHooksCalled(array('validate', 'insert'));
-
-
-
- $this->image = file_move($this->image, $original_image_uri . '.php.' . $this->image_extension);
-
- file_test_reset();
-
- $extensions = 'php ' . $this->image_extension;
- $edit = array(
- 'files[file_test_upload]' => backdrop_realpath($this->image->uri),
- 'extensions' => $extensions,
- );
-
- $munged_filename = $this->image->filename;
- $munged_filename = substr($munged_filename, 0, strrpos($munged_filename, '.'));
- $munged_filename .= '_.' . $this->image_extension;
-
- $this->backdropPost('file-test/upload', $edit, t('Submit'));
- $this->assertResponse(200, 'Received a 200 response for posted test file.');
- $this->assertRaw(t('For security reasons, your upload has been renamed'), 'Found security message.');
- $this->assertRaw(t('File name is @filename', array('@filename' => $munged_filename)), 'File was successfully munged.');
- $this->assertRaw(t('You WIN!'), 'Found the success message.');
-
-
- $this->assertFileHooksCalled(array('validate', 'insert'));
-
-
- file_test_reset();
-
-
- $edit = array(
- 'files[file_test_upload]' => backdrop_realpath($this->image->uri),
- 'allow_all_extensions' => 'empty_array',
- );
-
- $munged_filename = $this->image->filename;
- $munged_filename = substr($munged_filename, 0, strrpos($munged_filename, '.'));
- $munged_filename .= '_.' . $this->image_extension;
-
- $this->backdropPost('file-test/upload', $edit, t('Submit'));
- $this->assertResponse(200, 'Received a 200 response for posted test file.');
- $this->assertRaw(t('For security reasons, your upload has been renamed'), 'Found security message.');
- $this->assertRaw(t('File name is @filename.', array('@filename' => 'image-test.png_.php_.png_.txt')), 'File was successfully munged.');
- $this->assertRaw(t('You WIN!'), 'Found the success message.');
-
-
- $this->assertFileHooksCalled(array('validate', 'insert'));
-
-
- $this->image = file_move($this->image, $original_image_uri . '.cgi.' . $this->image_extension . '.txt');
-
- file_test_reset();
-
- $edit = array(
- 'files[file_test_upload]' => backdrop_realpath($this->image->uri),
- 'allow_all_extensions' => 'empty_array',
- );
-
- $munged_filename = $this->image->filename;
- $munged_filename = substr($munged_filename, 0, strrpos($munged_filename, '.'));
- $munged_filename .= '_.' . $this->image_extension;
-
- $this->backdropPost('file-test/upload', $edit, t('Submit'));
- $this->assertResponse(200, 'Received a 200 response for posted test file.');
- $this->assertRaw(t('For security reasons, your upload has been renamed'), 'Found security message.');
- $this->assertRaw(t('File name is @filename.', array('@filename' => 'image-test.png_.cgi_.png_.txt')), 'File was successfully munged.');
- $this->assertRaw(t('You WIN!'), 'Found the success message.');
-
-
- $this->assertFileHooksCalled(array('validate', 'insert'));
-
-
- file_test_reset();
-
-
-
- $edit = array(
- 'files[file_test_upload]' => backdrop_realpath($this->image->uri),
- 'allow_all_extensions' => 'empty_string',
- );
-
- $this->backdropPost('file-test/upload', $edit, t('Submit'));
- $this->assertResponse(200, 'Received a 200 response for posted test file.');
- $this->assertNoRaw(t('For security reasons, your upload has been renamed'), 'Found security message.');
- $this->assertRaw(t('Epic upload FAIL!'), 'Found the failure message.');
-
-
- $this->assertFileHooksCalled(array('validate'));
- }
-
-
- * Test renaming when uploading over a file that already exists.
- */
- function testExistingRename() {
- $edit = array(
- 'file_test_replace' => FILE_EXISTS_RENAME,
- 'files[file_test_upload]' => backdrop_realpath($this->image->uri)
- );
- $this->backdropPost('file-test/upload', $edit, t('Submit'));
- $this->assertResponse(200, 'Received a 200 response for posted test file.');
- $this->assertRaw(t('You WIN!'), 'Found the success message.');
-
-
- $this->assertFileHooksCalled(array('validate', 'insert'));
- }
-
-
- * Test replacement when uploading over a file that already exists.
- */
- function testExistingReplace() {
- $edit = array(
- 'file_test_replace' => FILE_EXISTS_REPLACE,
- 'files[file_test_upload]' => backdrop_realpath($this->image->uri)
- );
- $this->backdropPost('file-test/upload', $edit, t('Submit'));
- $this->assertResponse(200, 'Received a 200 response for posted test file.');
- $this->assertRaw(t('You WIN!'), 'Found the success message.');
-
-
- $this->assertFileHooksCalled(array('validate', 'load', 'update'));
- }
-
-
- * Test for failure when uploading over a file that already exists.
- */
- function testErrors() {
- $edit = array(
- 'file_test_replace' => FILE_EXISTS_ERROR,
- 'files[file_test_upload]' => backdrop_realpath($this->image->uri)
- );
- $this->backdropPost('file-test/upload', $edit, t('Submit'));
- $this->assertResponse(200, 'Received a 200 response for posted test file.');
- $this->assertRaw(t('Epic upload FAIL!'), 'Found the failure message.');
-
-
- $this->assertFileHooksCalled(array());
-
-
- file_test_reset();
-
-
- $this->backdropPost('file-test/upload', array(), t('Submit'));
- $this->assertNoRaw(t('Epic upload FAIL!'), 'Failure message not found.');
- }
- }
-
- * Test the file_save_upload() function on remote filesystems.
- */
- class RemoteFileSaveUploadTest extends FileSaveUploadTest {
- function setUp() {
- parent::setUp();
- config_set('system.core', 'file_default_scheme', 'dummy-remote');
- }
- }
-
- * Tests transliterating files on upload and subsequent bulk updating.
- */
- class FileUploadTransliterationTest extends FileTestCase {
- function setUp() {
- parent::setUp(array('file_test'));
-
- $admin_user = $this->backdropCreateUser(array('administer site configuration'));
- $this->backdropLogin($admin_user);
- }
-
- function testTransliteration() {
-
-
-
- $original_filename = 'üФайл Ä fàü.txt';
- $file = $this->createFile($original_filename, 'Sample text');
- $config = config('system.core');
-
- $upload_options = array(
- 'file_test_replace' => FILE_EXISTS_RENAME,
- 'extensions' => 'txt',
- 'is_image_file' => FALSE,
- 'files[file_test_upload]' => backdrop_realpath($file->uri),
- );
- $this->backdropPost('file-test/upload', $upload_options, t('Submit'));
- $first_fid = db_query("SELECT MAX(fid) FROM {file_managed}")->fetchField();
- $first_file = file_load($first_fid);
-
-
- debug($first_file);
- $this->assertIdentical($first_file->filename, $original_filename, 'File name not transliterated or modified to lowercase.');
- $this->assertIdentical($first_file->uri, 'temporary://ufail_a_fau.txt', 'File name has been transliterated upon upload.');
- $this->assertTrue(file_exists($first_file->uri), 'Transliterated file exists at expected path.');
-
-
- $first_file->delete();
-
-
- $config->set('file_transliterate_lowercase', 1);
- $config->set('file_transliterate_uploads_display_name', 1);
- $config->save();
-
- $this->backdropPost('file-test/upload', $upload_options, t('Submit'));
- $second_fid = db_query("SELECT MAX(fid) FROM {file_managed}")->fetchField();
- $second_file = file_load($second_fid);
-
- debug($second_file);
- $this->assertIdentical($second_file->filename, 'ufail_a_fau.txt', 'File display name transliterated and converted to lowercase.');
- $this->assertIdentical($second_file->uri, 'temporary://ufail_a_fau.txt', 'File name has been transliterated and lowercased.');
- $this->assertTrue(file_exists($second_file->uri), 'Transliterated file exists at expected path.');
-
-
- $second_file->delete();
-
-
- $config->set('file_transliterate_uploads', 0);
- $config->save();
-
- $this->backdropPost('file-test/upload', $upload_options, t('Submit'));
- $non_transliterated_fid = db_query("SELECT MAX(fid) FROM {file_managed}")->fetchField();
- $non_transliterated_file = file_load($non_transliterated_fid);
-
- $this->assertIdentical($non_transliterated_file->filename, $original_filename, 'File display name not transliterated or modified to lowercase.');
- $this->assertIdentical($non_transliterated_file->uri, 'temporary://' . $original_filename, 'File name has not been modified in any way.');
- $this->assertTrue(file_exists($non_transliterated_file->uri), 'Non-transliterated file exists at expected path.');
-
-
-
- $this->backdropGet('admin/config/media/file-system/transliteration');
-
- $this->assertText('File transliteration is not yet enabled.');
-
-
- $config->set('file_transliterate_uploads', 1);
- $config->set('file_transliterate_lowercase', 0);
- $config->set('file_transliterate_uploads_display_name', 0);
- $config->save();
-
-
- $this->backdropGet('admin/config/media/file-system/transliteration');
- $table_rows = $this->xpath('//*[@id="system-transliteration-retroactive"]//tbody//tr');
- $this->assertEqual(count($table_rows), 2, 'Two files available for transliteration.');
- $this->backdropPost(NULL, array(), t('Transliterate'));
- $this->assertText('2 file names have been successfully transliterated.');
-
- entity_get_controller('file')->resetCache();
- $now_transliterated_file = file_load($non_transliterated_fid);
- $this->assertIdentical($now_transliterated_file->filename, $non_transliterated_file->filename, 'File display name not transliterated or modified to lowercase.');
- $this->assertIdentical($now_transliterated_file->uri, 'temporary://uFail_A_fau.txt', 'File name transliterated after bulk updating.');
-
-
- $this->backdropGet('admin/config/media/file-system/transliteration');
- $this->assertText('Transliteration is not required.');
-
-
- $config->set('file_transliterate_lowercase', 1);
- $config->set('file_transliterate_uploads_display_name', 1);
- $config->save();
- $this->backdropGet('admin/config/media/file-system/transliteration');
- $table_rows = $this->xpath('//*[@id="system-transliteration-retroactive"]//tbody//tr');
- $this->assertEqual(count($table_rows), 2, 'Two files available for transliteration.');
- $this->backdropPost(NULL, array(), t('Transliterate'));
- $this->assertText('2 file names have been successfully transliterated.');
-
-
- entity_get_controller('file')->resetCache();
- $now_transliterated_file = file_load($non_transliterated_fid);
- $this->assertIdentical($now_transliterated_file->filename, $non_transliterated_file->filename, 'File display name not transliterated or modified to lowercase.');
- $this->assertIdentical($now_transliterated_file->uri, 'temporary://ufail_a_fau.txt', 'File name transliterated and lower case after bulk updating.');
- }
- }
-
- * Directory related tests.
- */
- class FileDirectoryTest extends FileTestCase {
-
- protected $profile = 'standard';
-
-
- * Test directory handling functions.
- */
- function testFileCheckDirectoryHandling() {
-
- $directory = file_default_scheme() . '://' . $this->randomName() . '/' . $this->randomName();
- $this->assertFalse(is_dir($directory), 'Directory does not exist prior to testing.');
-
-
- $this->assertFalse(file_prepare_directory($directory, 0), 'Error reported for non-existing directory.', 'File');
-
-
- $this->assertTrue(file_prepare_directory($directory, FILE_CREATE_DIRECTORY), 'No error reported when creating a new directory.', 'File');
-
-
- $this->assertTrue(is_dir($directory), 'Directory actually exists.', 'File');
-
- if (substr(PHP_OS, 0, 3) != 'WIN') {
-
-
-
-
-
-
- @backdrop_chmod($directory, 0444);
- $this->assertFalse(file_prepare_directory($directory, 0), 'Error reported for a non-writeable directory.', 'File');
-
-
- $this->assertTrue(file_prepare_directory($directory, FILE_MODIFY_PERMISSIONS), 'No error reported when making directory writeable.', 'File');
- }
-
-
- $this->assertDirectoryPermissions($directory, settings_get('file_chmod_directory', 0775));
-
-
- @backdrop_unlink(file_default_scheme() . '://.htaccess');
- $this->assertFalse(is_file(file_default_scheme() . '://.htaccess'), 'Successfully removed the .htaccess file in the files directory.', 'File');
- file_ensure_htaccess();
- $this->assertTrue(is_file(file_default_scheme() . '://.htaccess'), 'Successfully re-created the .htaccess file in the files directory.', 'File');
-
- $file = file_get_contents(file_default_scheme() . '://.htaccess');
- $this->assertEqual($file, file_htaccess_lines(FALSE), 'The .htaccess file contains the proper content.', 'File');
- }
-
-
- * This will take a directory and path, and find a valid filepath that is not
- * taken by another file.
- */
- function testFileCreateNewFilepath() {
-
-
- $basename = 'xyz.txt';
- $directory = 'core/misc';
- $original = $directory . '/' . $basename;
- $path = file_create_filename($basename, $directory);
- $this->assertEqual($path, $original, format_string('New filepath %new equals %original.', array('%new' => $path, '%original' => $original)), 'File');
-
-
- $basename = 'feed.png';
- $original = $directory . '/' . $basename;
- $expected = $directory . '/feed_0.png';
- $path = file_create_filename($basename, $directory);
- $this->assertEqual($path, $expected, format_string('Creating a new filepath from %original equals %new (expected %expected).', array('%new' => $path, '%original' => $original, '%expected' => $expected)), 'File');
-
- try {
- $filename = "a\xFFtest\x80€.txt";
- file_create_filename($filename, $directory);
- $this->fail('Expected exception not thrown');
- }
- catch (RuntimeException $e) {
- $this->assertEqual("Invalid filename '$filename'", $e->getMessage(), 'Invalid filename with escaped characters.');
- }
-
-
- }
-
-
- * This will test the filepath for a destination based on passed flags and
- * whether or not the file exists.
- *
- * If a file exists, file_destination($destination, $replace) will either
- * return:
- * - the existing filepath, if $replace is FILE_EXISTS_REPLACE
- * - a new filepath if FILE_EXISTS_RENAME
- * - an error (returning FALSE) if FILE_EXISTS_ERROR.
- *
- * If the file doesn't currently exist, then it will return the filepath.
- */
- function testFileDestination() {
-
- $destination = 'core/misc/xyz.txt';
- $path = file_destination($destination, FILE_EXISTS_REPLACE);
- $this->assertEqual($path, $destination, 'Non-existing filepath destination is correct with FILE_EXISTS_REPLACE.', 'File');
- $path = file_destination($destination, FILE_EXISTS_RENAME);
- $this->assertEqual($path, $destination, 'Non-existing filepath destination is correct with FILE_EXISTS_RENAME.', 'File');
- $path = file_destination($destination, FILE_EXISTS_ERROR);
- $this->assertEqual($path, $destination, 'Non-existing filepath destination is correct with FILE_EXISTS_ERROR.', 'File');
-
- $destination = 'core/misc/feed.png';
- $path = file_destination($destination, FILE_EXISTS_REPLACE);
- $this->assertEqual($path, $destination, 'Existing filepath destination remains the same with FILE_EXISTS_REPLACE.', 'File');
- $path = file_destination($destination, FILE_EXISTS_RENAME);
- $this->assertNotEqual($path, $destination, 'A new filepath destination is created when filepath destination already exists with FILE_EXISTS_RENAME.', 'File');
- $path = file_destination($destination, FILE_EXISTS_ERROR);
- $this->assertEqual($path, FALSE, 'An error is returned when filepath destination already exists with FILE_EXISTS_ERROR.', 'File');
-
- try {
- file_destination("core/misc/a\xFFtest\x80€.txt", FILE_EXISTS_REPLACE);
- $this->fail('Expected exception not thrown');
- }
- catch (RuntimeException $e) {
- $this->assertEqual("Invalid filename 'a\xFFtest\x80€.txt'", $e->getMessage(), 'Invalid filename with escaped characters.');
- }
- }
-
-
- * Ensure that the file_directory_temp() function always returns a value.
- */
- function testFileDirectoryTemp() {
-
- config_set('system.core', 'file_temporary_path', '');
- $tmp_directory = file_directory_temp();
- $this->assertEqual(empty($tmp_directory), FALSE, 'file_directory_temp() returned a non-empty value.');
-
-
- $setting = '/tmp';
- config_set('system.core', 'file_temporary_path', $setting);
- $tmp_directory = file_directory_temp();
- $this->assertEqual($setting, $tmp_directory, "The 'file_temporary_path' config setting has the same value that file_directory_temp() returned.");
- }
- }
-
- * Directory related tests.
- */
- class RemoteFileDirectoryTest extends FileDirectoryTest {
- function setUp() {
- parent::setUp('file_test');
- config_set('system.core', 'file_default_scheme', 'dummy-remote');
- }
- }
-
- * Tests the file_scan_directory() function.
- */
- class FileScanDirectoryTest extends FileTestCase {
- protected $path;
-
- function setUp() {
- parent::setUp();
- $this->path = backdrop_get_path('module', 'simpletest') . '/files';
- }
-
-
- * Check the format of the returned values.
- */
- function testReturn() {
-
-
- $all_files = file_scan_directory($this->path, '/^javascript-/');
- ksort($all_files);
- $this->assertEqual(2, count($all_files), 'Found two, expected javascript files.');
-
-
- $file = reset($all_files);
- $this->assertEqual(key($all_files), $file->uri, 'Correct array key was used for the first returned file.');
- $this->assertEqual($file->uri, $this->path . '/javascript-1.txt', 'First file name was set correctly.');
- $this->assertEqual($file->filename, 'javascript-1.txt', 'First basename was set correctly');
- $this->assertEqual($file->name, 'javascript-1', 'First name was set correctly.');
-
-
- $file = next($all_files);
- $this->assertEqual(key($all_files), $file->uri, 'Correct array key was used for the second returned file.');
- $this->assertEqual($file->uri, $this->path . '/javascript-2.script', 'Second file name was set correctly.');
- $this->assertEqual($file->filename, 'javascript-2.script', 'Second basename was set correctly');
- $this->assertEqual($file->name, 'javascript-2', 'Second name was set correctly.');
- }
-
-
- * Check that the callback function is called correctly.
- */
- function testOptionCallback() {
-
- $all_files = file_scan_directory($this->path, '/^NONEXISTINGFILENAME/', array('callback' => 'file_test_file_scan_callback'));
- $this->assertEqual(0, count($all_files), 'No files were found.');
- $results = file_test_file_scan_callback();
- file_test_file_scan_callback_reset();
- $this->assertEqual(0, count($results), 'No files were passed to the callback.');
-
-
-
- $all_files = file_scan_directory($this->path, '/^javascript-/', array('callback' => 'file_test_file_scan_callback'));
- $this->assertEqual(2, count($all_files), 'Found two, expected javascript files.');
- $results = file_test_file_scan_callback();
- file_test_file_scan_callback_reset();
- $this->assertEqual(2, count($results), 'Files were passed to the callback.');
- }
-
-
- * Check that the no-mask parameter is honored.
- */
- function testOptionNoMask() {
-
- $all_files = file_scan_directory($this->path, '/^javascript-/', array('recurse' => FALSE));
- $this->assertEqual(2, count($all_files), 'Found two, expected javascript files.');
-
-
- $filtered_files = file_scan_directory($this->path, '/^javascript-/', array('nomask' => '/.script$/', 'recurse' => FALSE));
- $this->assertEqual(1, count($filtered_files), 'Filtered correctly.');
-
-
-
- $no_hidden_files = file_scan_directory($this->path, '/^\..*$/', array('recurse' => FALSE));
- $hidden_files = file_scan_directory($this->path, '/^\..*$/', array('nomask' => '/^$/', 'recurse' => FALSE));
- $this->assertEqual(0, count($no_hidden_files), 'Hidden files not included by default.');
- $this->assertEqual(1, count($hidden_files), 'Hidden files included when custom nomask used.');
- }
-
-
- * Check that key parameter sets the return value's key.
- */
- function testOptionKey() {
-
- $expected = array($this->path . '/javascript-1.txt', $this->path . '/javascript-2.script');
- $actual = array_keys(file_scan_directory($this->path, '/^javascript-/', array('key' => 'filepath')));
- sort($actual);
- $this->assertEqual($expected, $actual, 'Returned the correct values for the filename key.');
-
-
- $expected = array('javascript-1.txt', 'javascript-2.script');
- $actual = array_keys(file_scan_directory($this->path, '/^javascript-/', array('key' => 'filename')));
- sort($actual);
- $this->assertEqual($expected, $actual, 'Returned the correct values for the basename key.');
-
-
- $expected = array('javascript-1', 'javascript-2');
- $actual = array_keys(file_scan_directory($this->path, '/^javascript-/', array('key' => 'name')));
- sort($actual);
- $this->assertEqual($expected, $actual, 'Returned the correct values for the name key.');
-
-
- $expected = array($this->path . '/javascript-1.txt', $this->path . '/javascript-2.script');
- $actual = array_keys(file_scan_directory($this->path, '/^javascript-/', array('key' => 'INVALID')));
- sort($actual);
- $this->assertEqual($expected, $actual, 'An invalid key defaulted back to the default.');
- }
-
-
- * Check that the recurse option descends into subdirectories.
- */
- function testOptionRecurse() {
- $files = file_scan_directory(backdrop_get_path('module', 'simpletest'), '/^javascript-/', array('recurse' => FALSE));
- $this->assertTrue(empty($files), "Without recursion couldn't find javascript files.");
-
- $files = file_scan_directory(backdrop_get_path('module', 'simpletest'), '/^javascript-/', array('recurse' => TRUE));
- $this->assertEqual(2, count($files), 'With recursion we found the expected javascript files.');
- }
-
-
-
- * Check that the min_depth options lets us ignore files in the starting
- * directory.
- */
- function testOptionMinDepth() {
- $files = file_scan_directory($this->path, '/^javascript-/', array('min_depth' => 0));
- $this->assertEqual(2, count($files), 'No minimum-depth gets files in current directory.');
-
- $files = file_scan_directory($this->path, '/^javascript-/', array('min_depth' => 1));
- $this->assertTrue(empty($files), "Minimum-depth of 1 successfully excludes files from current directory.");
- }
- }
-
- * Tests the file_scan_directory() function on remote filesystems.
- */
- class RemoteFileScanDirectoryTest extends FileScanDirectoryTest {
- function setUp() {
- parent::setUp();
- config_set('system.core', 'file_default_scheme', 'dummy-remote');
- }
- }
-
- * Deletion related tests.
- */
- class FileUnmanagedDeleteTest extends FileTestCase {
-
- protected $profile = 'standard';
-
-
- * Delete a normal file.
- */
- function testNormal() {
-
- $file = $this->createFile();
-
-
- $this->assertTrue(file_unmanaged_delete($file->uri), 'Deleted worked.');
- $this->assertFalse(file_exists($file->uri), 'Test file has actually been deleted.');
- }
-
-
- * Try deleting a missing file.
- */
- function testMissing() {
-
- $this->assertTrue(file_unmanaged_delete(file_default_scheme() . '/' . $this->randomName()), 'Returns true when deleting a non-existent file.');
- }
-
-
- * Try deleting a directory.
- */
- function testDirectory() {
-
- $directory = $this->createDirectory();
-
-
- $this->assertFalse(file_unmanaged_delete($directory), 'Could not delete the delete directory.');
- $this->assertTrue(file_exists($directory), 'Directory has not been deleted.');
- }
- }
-
- * Deletion related tests on remote filesystems.
- */
- class RemoteFileUnmanagedDeleteTest extends FileUnmanagedDeleteTest {
- function setUp() {
- parent::setUp('file_test');
- config_set('system.core', 'file_default_scheme', 'dummy-remote');
- }
- }
-
- * Deletion related tests.
- */
- class FileUnmanagedDeleteRecursiveTest extends FileTestCase {
-
- protected $profile = 'standard';
-
-
- * Delete a normal file.
- */
- function testSingleFile() {
-
- $filepath = file_default_scheme() . '://' . $this->randomName();
- file_put_contents($filepath, '');
-
-
- $this->assertTrue(file_unmanaged_delete_recursive($filepath), 'Function reported success.');
- $this->assertFalse(file_exists($filepath), 'Test file has been deleted.');
- }
-
-
- * Try deleting an empty directory.
- */
- function testEmptyDirectory() {
-
- $directory = $this->createDirectory();
-
-
- $this->assertTrue(file_unmanaged_delete_recursive($directory), 'Function reported success.');
- $this->assertFalse(file_exists($directory), 'Directory has been deleted.');
- }
-
-
- * Try deleting a directory with some files.
- */
- function testDirectory() {
-
- $directory = $this->createDirectory();
- $filepathA = $directory . '/A';
- $filepathB = $directory . '/B';
- file_put_contents($filepathA, '');
- file_put_contents($filepathB, '');
-
-
- $this->assertTrue(file_unmanaged_delete_recursive($directory), 'Function reported success.');
- $this->assertFalse(file_exists($filepathA), 'Test file A has been deleted.');
- $this->assertFalse(file_exists($filepathB), 'Test file B has been deleted.');
- $this->assertFalse(file_exists($directory), 'Directory has been deleted.');
- }
-
-
- * Try deleting subdirectories with some files.
- */
- function testSubDirectory() {
-
- $directory = $this->createDirectory();
- $subdirectory = $this->createDirectory($directory . '/sub');
- $filepathA = $directory . '/A';
- $filepathB = $subdirectory . '/B';
- file_put_contents($filepathA, '');
- file_put_contents($filepathB, '');
-
-
- $this->assertTrue(file_unmanaged_delete_recursive($directory), 'Function reported success.');
- $this->assertFalse(file_exists($filepathA), 'Test file A has been deleted.');
- $this->assertFalse(file_exists($filepathB), 'Test file B has been deleted.');
- $this->assertFalse(file_exists($subdirectory), 'Subdirectory has been deleted.');
- $this->assertFalse(file_exists($directory), 'Directory has been deleted.');
- }
- }
-
- * Deletion related tests on remote filesystems.
- */
- class RemoteFileUnmanagedDeleteRecursiveTest extends FileUnmanagedDeleteRecursiveTest {
- function setUp() {
- parent::setUp('file_test');
- config_set('system.core', 'file_default_scheme', 'dummy-remote');
- }
- }
-
- * Unmanaged move related tests.
- */
- class FileUnmanagedMoveTest extends FileTestCase {
-
- protected $profile = 'standard';
-
-
- * Move a normal file.
- */
- function testNormal() {
-
- $file = $this->createFile();
-
-
- $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, settings_get('file_chmod_file', 0664));
-
-
- $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, settings_get('file_chmod_file', 0664));
-
-
-
- }
-
-
- * Try to move a missing file.
- */
- function testMissing() {
-
- $new_filepath = file_unmanaged_move($this->randomName(), $this->randomName());
- $this->assertFalse($new_filepath, 'Moving a missing file fails.');
- }
-
-
- * Try to move a file onto itself.
- */
- function testOverwriteSelf() {
-
- $file = $this->createFile();
-
-
- $new_filepath = file_unmanaged_move($file->uri, $file->uri, FILE_EXISTS_REPLACE);
- $this->assertFalse($new_filepath, 'Moving onto itself without renaming fails.');
- $this->assertTrue(file_exists($file->uri), 'File exists after moving onto itself.');
-
-
- $new_filepath = file_unmanaged_move($file->uri, $file->uri, FILE_EXISTS_RENAME);
- $this->assertTrue($new_filepath, 'Moving onto itself with renaming works.');
- $this->assertFalse(file_exists($file->uri), 'Original file has been removed.');
- $this->assertTrue(file_exists($new_filepath), 'File exists after moving onto itself.');
- }
- }
-
- * Unmanaged move related tests on remote filesystems.
- */
- class RemoteFileUnmanagedMoveTest extends FileUnmanagedMoveTest {
- function setUp() {
- parent::setUp('file_test');
- config_set('system.core', 'file_default_scheme', 'dummy-remote');
- }
- }
-
- * Unmanaged copy related tests.
- */
- class FileUnmanagedCopyTest extends FileTestCase {
-
- protected $profile = 'standard';
-
-
- * Copy a normal file.
- */
- function testNormal() {
-
- $file = $this->createFile();
-
-
- $desired_filepath = 'public://' . $this->randomName();
- $new_filepath = file_unmanaged_copy($file->uri, $desired_filepath, FILE_EXISTS_ERROR);
- $this->assertTrue($new_filepath, 'Copy was successful.');
- $this->assertEqual($new_filepath, $desired_filepath, 'Returned expected filepath.');
- $this->assertTrue(file_exists($file->uri), 'Original file remains.');
- $this->assertTrue(file_exists($new_filepath), 'New file exists.');
- $this->assertFilePermissions($new_filepath, settings_get('file_chmod_file', 0664));
-
-
- $desired_filepath = 'public://' . $this->randomName();
- $this->assertTrue(file_put_contents($desired_filepath, ' '), 'Created a file so a rename will have to happen.');
- $newer_filepath = file_unmanaged_copy($file->uri, $desired_filepath, FILE_EXISTS_RENAME);
- $this->assertTrue($newer_filepath, 'Copy was successful.');
- $this->assertNotEqual($newer_filepath, $desired_filepath, 'Returned expected filepath.');
- $this->assertTrue(file_exists($file->uri), 'Original file remains.');
- $this->assertTrue(file_exists($newer_filepath), 'New file exists.');
- $this->assertFilePermissions($newer_filepath, settings_get('file_chmod_file', 0664));
-
-
-
- }
-
-
- * Copy a non-existent file.
- */
- function testNonExistent() {
-
- $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.');
- }
-
-
- * Copy a file onto itself.
- */
- function testOverwriteSelf() {
-
- $file = $this->createFile();
-
-
- $new_filepath = file_unmanaged_copy($file->uri, $file->uri, FILE_EXISTS_RENAME);
- $this->assertTrue($new_filepath, 'Copying onto itself with renaming works.');
- $this->assertNotEqual($new_filepath, $file->uri, 'Copied file has a new name.');
- $this->assertTrue(file_exists($file->uri), 'Original file exists after copying onto itself.');
- $this->assertTrue(file_exists($new_filepath), 'Copied file exists after copying onto itself.');
- $this->assertFilePermissions($new_filepath, settings_get('file_chmod_file', 0664));
-
-
- $new_filepath = file_unmanaged_copy($file->uri, $file->uri, FILE_EXISTS_ERROR);
- $this->assertFalse($new_filepath, 'Copying onto itself without renaming fails.');
- $this->assertTrue(file_exists($file->uri), 'File exists after copying onto itself.');
-
-
- $new_filepath = file_unmanaged_copy($file->uri, backdrop_dirname($file->uri), FILE_EXISTS_ERROR);
- $this->assertFalse($new_filepath, 'Copying onto itself fails.');
- $this->assertTrue(file_exists($file->uri), 'File exists after copying onto itself.');
-
-
- $new_filepath = file_unmanaged_copy($file->uri, backdrop_dirname($file->uri), FILE_EXISTS_RENAME);
- $this->assertTrue($new_filepath, 'Copying into same directory works.');
- $this->assertNotEqual($new_filepath, $file->uri, 'Copied file has a new name.');
- $this->assertTrue(file_exists($file->uri), 'Original file exists after copying onto itself.');
- $this->assertTrue(file_exists($new_filepath), 'Copied file exists after copying onto itself.');
- $this->assertFilePermissions($new_filepath, settings_get('file_chmod_file', 0664));
- }
- }
-
- * Unmanaged copy related tests on remote filesystems.
- */
- class RemoteFileUnmanagedCopyTest extends FileUnmanagedCopyTest {
- function setUp() {
- parent::setUp('file_test');
- config_set('system.core', 'file_default_scheme', 'dummy-remote');
- }
- }
-
- * Deletion related tests.
- */
- class FileDeleteTest extends FileHookTestCase {
-
- * Tries deleting a normal file (as opposed to a directory, symlink, etc).
- */
- function testUnused() {
- $file = $this->createFile();
-
-
- $this->assertTrue(is_file($file->uri), 'File exists.');
- $file->delete();
- $this->assertFileHooksCalled(array('delete', 'load'));
- $this->assertFalse(file_exists($file->uri), 'Test file has actually been deleted.');
- $this->assertFalse(file_load($file->fid), 'File was removed from the database.');
- }
-
-
- * Tries deleting a file that is in use.
- */
- function testInUse() {
- $file = $this->createFile();
- file_usage_add($file, 'testing', 'test', 1);
- file_usage_add($file, 'testing', 'test', 1);
-
- file_usage_delete($file, 'testing', 'test', 1);
- $usage = file_usage_list($file);
- $this->assertEqual($usage['testing']['test'], array(1 => 1), 'Test file is still in use.');
- $this->assertTrue(file_exists($file->uri), 'File still exists on the disk.');
- $this->assertTrue(file_load($file->fid), 'File still exists in the database.');
-
-
- file_test_reset();
-
- file_usage_delete($file, 'testing', 'test', 1);
- $usage = file_usage_list($file);
- $this->assertFileHooksCalled(array('load', 'update'));
- $this->assertTrue(empty($usage), 'File usage data was removed.');
- $this->assertTrue(file_exists($file->uri), 'File still exists on the disk.');
- $file = file_load($file->fid);
- $this->assertTrue($file, 'File still exists in the database.');
- $this->assertEqual($file->status, 0, 'File is temporary.');
- file_test_reset();
-
-
-
- db_update('file_managed')
- ->fields(array(
- 'timestamp' => REQUEST_TIME - (BACKDROP_MAXIMUM_TEMP_FILE_AGE + 1),
- ))
- ->condition('fid', $file->fid)
- ->execute();
-
-
- cache('entity_file')->delete($file->fid);
-
- backdrop_cron_run();
-
-
- $this->assertFileHooksCalled(array('load', 'delete'));
- $this->assertFalse(file_exists($file->uri), 'File has been deleted after its last usage was removed.');
- $this->assertFalse(file_load($file->fid), 'File was removed from the database.');
- }
- }
-
-
- * Move related tests
- */
- class FileMoveTest extends FileHookTestCase {
-
- * Move a normal file.
- */
- function testNormal() {
- $contents = $this->randomName(10);
- $source = $this->createFile(NULL, $contents);
- $desired_filepath = 'public://' . $this->randomName();
-
-
-
- $result = file_move(clone $source, $desired_filepath, FILE_EXISTS_ERROR);
-
-
- $this->assertTrue($result, 'File moved successfully.');
- $this->assertFalse(file_exists($source->uri));
- $this->assertEqual($contents, file_get_contents($result->uri), 'Contents of file correctly written.');
-
-
- $this->assertFileHooksCalled(array('move', 'load', 'update'));
-
-
- $this->assertEqual($source->fid, $result->fid, format_string("Source file id's' %fid is unchanged after move.", array('%fid' => $source->fid)));
-
-
-
- $loaded_file = file_load($result->fid);
- $this->assertTrue($loaded_file, 'File can be loaded from the database.');
- $this->assertFileUnchanged($result, $loaded_file);
- }
-
-
- * Test renaming when moving onto a file that already exists.
- */
- function testExistingRename() {
-
- $contents = $this->randomName(10);
- $source = $this->createFile(NULL, $contents);
- $target = $this->createFile();
- $this->assertDifferentFile($source, $target);
-
-
-
- $result = file_move(clone $source, $target->uri, FILE_EXISTS_RENAME);
-
-
- $this->assertTrue($result, 'File moved successfully.');
- $this->assertFalse(file_exists($source->uri));
- $this->assertEqual($contents, file_get_contents($result->uri), 'Contents of file correctly written.');
-
-
- $this->assertFileHooksCalled(array('move', 'load', 'update'));
-
-
- $this->assertFileUnchanged($result, file_load($result->fid));
-
- $this->assertFileUnchanged($target, file_load($target->fid));
-
- $this->assertDifferentFile($target, $result);
-
-
- $loaded_source = file_load($source->fid);
- $this->assertEqual($loaded_source->fid, $result->fid, "Returned file's id matches the source.");
- $this->assertNotEqual($loaded_source->uri, $source->uri, "Returned file path has changed from the original.");
- }
-
-
- * Test replacement when moving onto a file that already exists.
- */
- function testExistingReplace() {
-
- $contents = $this->randomName(10);
- $source = $this->createFile(NULL, $contents);
- $target = $this->createFile();
- $this->assertDifferentFile($source, $target);
-
-
-
- $result = file_move(clone $source, $target->uri, FILE_EXISTS_REPLACE);
-
-
- $this->assertEqual($contents, file_get_contents($result->uri), 'Contents of file were overwritten.');
- $this->assertFalse(file_exists($source->uri));
- $this->assertTrue($result, 'File moved successfully.');
-
-
- $this->assertFileHooksCalled(array('move', 'update', 'delete', 'load'));
-
-
-
- $loaded_result = file_load($result->fid);
- $this->assertFileUnchanged($result, $loaded_result);
-
- $this->assertSameFile($target, $loaded_result);
-
- $this->assertDifferentFile($source, $loaded_result);
- }
-
-
- * Test replacement when moving onto itself.
- */
- function testExistingReplaceSelf() {
-
- $contents = $this->randomName(10);
- $source = $this->createFile(NULL, $contents);
-
-
-
- $result = file_move(clone $source, $source->uri, FILE_EXISTS_REPLACE);
- $this->assertFalse($result, 'File move failed.');
- $this->assertEqual($contents, file_get_contents($source->uri), 'Contents of file were not altered.');
-
-
- $this->assertFileHooksCalled(array());
-
-
-
- $this->assertFileUnchanged($source, file_load($source->fid));
- }
-
-
- * Test that moving onto an existing file fails when FILE_EXISTS_ERROR is
- * specified.
- */
- function testExistingError() {
- $contents = $this->randomName(10);
- $source = $this->createFile();
- $target = $this->createFile(NULL, $contents);
- $this->assertDifferentFile($source, $target);
-
-
-
- $result = file_move(clone $source, $target->uri, FILE_EXISTS_ERROR);
-
-
- $this->assertFalse($result, 'File move failed.');
- $this->assertTrue(file_exists($source->uri));
- $this->assertEqual($contents, file_get_contents($target->uri), 'Contents of file were not altered.');
-
-
- $this->assertFileHooksCalled(array());
-
-
-
- $this->assertFileUnchanged($source, file_load($source->fid));
- $this->assertFileUnchanged($target, file_load($target->fid));
- }
- }
-
-
- * Copy related tests.
- */
- class FileCopyTest extends FileHookTestCase {
-
- * Test file copying in the normal, base case.
- */
- function testNormal() {
- $contents = $this->randomName(10);
- $source = $this->createFile(NULL, $contents);
- $desired_uri = 'public://' . $this->randomName();
-
-
-
- $result = file_copy(clone $source, $desired_uri, FILE_EXISTS_ERROR);
-
-
- $this->assertTrue($result, 'File copied successfully.');
- $this->assertEqual($contents, file_get_contents($result->uri), 'Contents of file were copied correctly.');
-
-
- $this->assertFileHooksCalled(array('copy', 'insert'));
-
- $this->assertDifferentFile($source, $result);
- $this->assertEqual($result->uri, $desired_uri, 'The copied file entity has the desired filepath.');
- $this->assertTrue(file_exists($source->uri), 'The original file still exists.');
- $this->assertTrue(file_exists($result->uri), 'The copied file exists.');
-
-
-
- $this->assertFileUnchanged($result, file_load($result->fid));
- }
-
-
- * Test renaming when copying over a file that already exists.
- */
- function testExistingRename() {
-
- $contents = $this->randomName(10);
- $source = $this->createFile(NULL, $contents);
- $target = $this->createFile();
- $this->assertDifferentFile($source, $target);
-
-
-
- $result = file_copy(clone $source, $target->uri, FILE_EXISTS_RENAME);
-
-
- $this->assertTrue($result, 'File copied successfully.');
- $this->assertEqual($contents, file_get_contents($result->uri), 'Contents of file were copied correctly.');
- $this->assertNotEqual($result->uri, $source->uri, 'Returned file path has changed from the original.');
-
-
- $this->assertFileHooksCalled(array('copy', 'insert'));
-
-
-
- $loaded_source = file_load($source->fid);
- $loaded_target = file_load($target->fid);
- $loaded_result = file_load($result->fid);
-
-
- $this->assertFileUnchanged($source, $loaded_source);
-
-
- $this->assertFileUnchanged($result, $loaded_result);
-
-
- $this->assertDifferentFile($loaded_source, $loaded_target);
- $this->assertDifferentFile($loaded_target, $loaded_result);
- $this->assertDifferentFile($loaded_source, $loaded_result);
- }
-
-
- * Test replacement when copying over a file that already exists.
- */
- function testExistingReplace() {
-
- $contents = $this->randomName(10);
- $source = $this->createFile(NULL, $contents);
- $target = $this->createFile();
- $this->assertDifferentFile($source, $target);
-
-
-
- $result = file_copy(clone $source, $target->uri, FILE_EXISTS_REPLACE);
-
-
- $this->assertTrue($result, 'File copied successfully.');
- $this->assertEqual($contents, file_get_contents($result->uri), 'Contents of file were overwritten.');
- $this->assertDifferentFile($source, $result);
-
-
- $this->assertFileHooksCalled(array('load', 'copy', 'update'));
-
-
-
- $loaded_source = file_load($source->fid);
- $loaded_target = file_load($target->fid);
- $loaded_result = file_load($result->fid);
-
-
- $this->assertFileUnchanged($source, $loaded_source);
-
-
- $this->assertFileUnchanged($result, $loaded_result);
-
-
- $this->assertFileUnchanged($loaded_target, $loaded_result);
- }
-
-
- * Test that copying over an existing file fails when FILE_EXISTS_ERROR is
- * specified.
- */
- function testExistingError() {
- $contents = $this->randomName(10);
- $source = $this->createFile();
- $target = $this->createFile(NULL, $contents);
- $this->assertDifferentFile($source, $target);
-
-
-
- $result = file_copy(clone $source, $target->uri, FILE_EXISTS_ERROR);
-
-
- $this->assertFalse($result, 'File copy failed.');
- $this->assertEqual($contents, file_get_contents($target->uri), 'Contents of file were not altered.');
-
-
- $this->assertFileHooksCalled(array());
-
- $this->assertFileUnchanged($source, file_load($source->fid));
- $this->assertFileUnchanged($target, file_load($target->fid));
- }
- }
-
-
- * Tests the file_load() function.
- */
- class FileLoadTest extends FileHookTestCase {
-
- * Try to load a non-existent file by fid.
- */
- function testLoadMissingFid() {
- $this->assertFalse(file_load(-1), "Try to load an invalid fid fails.");
- $this->assertFileHooksCalled(array());
- }
-
-
- * Try to load a non-existent file by URI.
- */
- function testLoadMissingFilepath() {
- $files = file_load_multiple(array(), array('uri' => 'foobar://misc/feed.png'));
- $this->assertFalse(reset($files), "Try to load a file that doesn't exist in the database fails.");
- $this->assertFileHooksCalled(array());
- }
-
-
- * Try to load a non-existent file by status.
- */
- function testLoadInvalidStatus() {
- $files = file_load_multiple(array(), array('status' => -99));
- $this->assertFalse(reset($files), "Trying to load a file with an invalid status fails.");
- $this->assertFileHooksCalled(array());
- }
-
-
- * Load a single file and ensure that the correct values are returned.
- */
- function testSingleValues() {
-
- $file = $this->createFile('backdrop.txt', NULL, 'public');
-
- $by_fid_file = file_load($file->fid);
- $this->assertFileHookCalled('load');
- $this->assertTrue(is_object($by_fid_file), 'file_load() returned an object.');
- $this->assertEqual($by_fid_file->fid, $file->fid, "Loading by fid got the same fid.", 'File');
- $this->assertEqual($by_fid_file->uri, $file->uri, "Loading by fid got the correct filepath.", 'File');
- $this->assertEqual($by_fid_file->filename, $file->filename, "Loading by fid got the correct filename.", 'File');
- $this->assertEqual($by_fid_file->filemime, $file->filemime, "Loading by fid got the correct MIME type.", 'File');
- $this->assertEqual($by_fid_file->status, $file->status, "Loading by fid got the correct status.", 'File');
- $this->assertTrue($by_fid_file->file_test['loaded'], 'file_test_file_load() was able to modify the file during load.');
- }
-
-
- * This will test loading file data from the database.
- */
- function testMultiple() {
-
- $file = $this->createFile('backdrop.txt', NULL, 'public');
-
-
- file_test_reset();
- $by_path_files = file_load_multiple(array(), array('uri' => $file->uri));
- $this->assertFileHookCalled('load');
- $this->assertEqual(1, count($by_path_files), 'file_load_multiple() returned an array of the correct size.');
- $by_path_file = reset($by_path_files);
- $this->assertTrue($by_path_file->file_test['loaded'], 'file_test_file_load() was able to modify the file during load.');
- $this->assertEqual($by_path_file->fid, $file->fid, "Loading by filepath got the correct fid.", 'File');
-
-
-
- cache('entity_file')->delete($file->fid);
-
-
- file_test_reset();
- $by_fid_files = file_load_multiple(array($file->fid), array());
- $this->assertFileHookCalled('load');
- $this->assertEqual(1, count($by_fid_files), 'file_load_multiple() returned an array of the correct size.');
- $by_fid_file = reset($by_fid_files);
- $this->assertTrue($by_fid_file->file_test['loaded'], 'file_test_file_load() was able to modify the file during load.');
- $this->assertEqual($by_fid_file->uri, $file->uri, "Loading by fid got the correct filepath.", 'File');
- }
- }
-
- * Tests saving files.
- */
- class FileSaveTest extends FileHookTestCase {
- function testFileSave() {
-
- $file = new File(array(
- 'uid' => 1,
- 'filename' => 'backdrop.txt',
- 'uri' => 'public://backdrop.txt',
- 'filemime' => 'text/plain',
- 'timestamp' => 1,
- 'status' => FILE_STATUS_PERMANENT,
- ));
- file_put_contents($file->uri, 'hello world');
-
-
- $file->save();
-
-
- $this->assertFileHooksCalled(array('insert'));
-
- $this->assertNotNull($file->fid, "Saving the file should give us back a file object.", 'File');
- $this->assertTrue($file->fid > 0, "A new file ID is set when saving a new file to the database.", 'File');
- $loaded_file = file_load($file->fid);
- $this->assertNotNull($loaded_file, "Record exists in the database.");
- $this->assertEqual($loaded_file->status, $file->status, "Status was saved correctly.");
- $this->assertEqual($file->filesize, filesize($file->uri), "File size was set correctly.", 'File');
- $this->assertTrue($file->timestamp > 1, "File size was set correctly.", 'File');
-
-
-
- file_test_reset();
- $file->status = 7;
- $file->langcode = 'en';
- $file->save();
-
-
- $this->assertFileHooksCalled(array('load', 'update'));
-
- $this->assertEqual($file->fid, $file->fid, "The file ID of an existing file is not changed when updating the database.", 'File');
- $this->assertTrue($file->timestamp >= $file->timestamp, "Timestamp didn't go backwards.", 'File');
- $loaded_file = db_query('SELECT * FROM {file_managed} f WHERE f.fid = :fid', array(':fid' => $file->fid))->fetch(PDO::FETCH_OBJ);
- $this->assertNotNull($loaded_file, "Record still exists in the database.", 'File');
- $this->assertEqual($loaded_file->status, $file->status, "Status was saved correctly.");
- }
- }
-
- * Tests file usage functions.
- */
- class FileUsageTest extends FileTestCase {
-
- * Tests file_usage_list().
- */
- function testGetUsage() {
- $file = $this->createFile();
- db_insert('file_usage')
- ->fields(array(
- 'fid' => $file->fid,
- 'module' => 'testing',
- 'type' => 'foo',
- 'id' => 1,
- 'count' => 1
- ))
- ->execute();
- db_insert('file_usage')
- ->fields(array(
- 'fid' => $file->fid,
- 'module' => 'testing',
- 'type' => 'bar',
- 'id' => 2,
- 'count' => 2
- ))
- ->execute();
-
- $usage = file_usage_list($file);
-
- $this->assertEqual(count($usage['testing']), 2, 'Returned the correct number of items.');
- $this->assertTrue(isset($usage['testing']['foo'][1]), 'Returned the correct id.');
- $this->assertTrue(isset($usage['testing']['bar'][2]), 'Returned the correct id.');
- $this->assertEqual($usage['testing']['foo'][1], 1, 'Returned the correct count.');
- $this->assertEqual($usage['testing']['bar'][2], 2, 'Returned the correct count.');
- }
-
-
- * Tests file_usage_add().
- */
- function testAddUsage() {
- $file = $this->createFile();
- file_usage_add($file, 'testing', 'foo', 1);
-
-
- file_usage_add($file, 'testing', 'bar', 2);
- file_usage_add($file, 'testing', 'bar', 2);
-
- $usage = db_select('file_usage', 'f')
- ->fields('f')
- ->condition('f.fid', $file->fid)
- ->execute()
- ->fetchAllAssoc('id');
- $this->assertEqual(count($usage), 2, 'Created two records');
- $this->assertEqual($usage[1]->module, 'testing', 'Correct module');
- $this->assertEqual($usage[2]->module, 'testing', 'Correct module');
- $this->assertEqual($usage[1]->type, 'foo', 'Correct type');
- $this->assertEqual($usage[2]->type, 'bar', 'Correct type');
- $this->assertEqual($usage[1]->count, 1, 'Correct count');
- $this->assertEqual($usage[2]->count, 2, 'Correct count');
- }
-
-
- * Tests file_usage_delete().
- */
- function testRemoveUsage() {
- $file = $this->createFile();
- db_insert('file_usage')
- ->fields(array(
- 'fid' => $file->fid,
- 'module' => 'testing',
- 'type' => 'bar',
- 'id' => 2,
- 'count' => 3,
- ))
- ->execute();
-
-
- file_usage_delete($file, 'testing', 'bar', 2);
- $count = db_select('file_usage', 'f')
- ->fields('f', array('count'))
- ->condition('f.fid', $file->fid)
- ->execute()
- ->fetchField();
- $this->assertEqual(2, $count, 'The count was decremented correctly.');
-
-
- file_usage_delete($file, 'testing', 'bar', 2, 2);
- $count = db_select('file_usage', 'f')
- ->fields('f', array('count'))
- ->condition('f.fid', $file->fid)
- ->execute()
- ->fetchField();
- $this->assertIdentical(FALSE, $count, 'The count was removed entirely when empty.');
-
-
- file_usage_delete($file, 'testing', 'bar', 2);
- $count = db_select('file_usage', 'f')
- ->fields('f', array('count'))
- ->condition('f.fid', $file->fid)
- ->execute()
- ->fetchField();
- $this->assertIdentical(FALSE, $count, 'Decrementing non-exist record complete.');
- }
- }
-
- * Tests the file_validate() function..
- */
- class FileValidateTest extends FileHookTestCase {
-
- * Test that the validators passed into are checked.
- */
- function testCallerValidation() {
- $file = $this->createFile();
-
-
- $this->assertEqual(file_validate($file, array()), array(), 'Validating an empty array works successfully.');
- $this->assertFileHooksCalled(array('validate'));
-
-
-
- file_test_reset();
- file_test_set_return('validate', array());
- $passing = array('file_test_validator' => array(array()));
- $this->assertEqual(file_validate($file, $passing), array(), 'Validating passes.');
- $this->assertFileHooksCalled(array('validate'));
-
-
- file_test_reset();
- file_test_set_return('validate', array('Epic fail'));
- $failing = array('file_test_validator' => array(array('Failed', 'Badly')));
- $this->assertEqual(file_validate($file, $failing), array('Failed', 'Badly', 'Epic fail'), 'Validating returns errors.');
- $this->assertFileHooksCalled(array('validate'));
- }
-
-
- * Tests hard-coded security check in file_validate().
- */
- public function testInsecureExtensions() {
- $file = $this->createFile('test.php', 'Invalid PHP');
-
-
- $errors = file_validate($file, array());
- $this->assertEqual('For security reasons, your upload has been rejected.', $errors[0]);
- $this->assertFileHooksCalled(array('validate'));
- file_test_reset();
-
-
- $GLOBALS['settings']['allow_insecure_uploads'] = 1;
- $errors = file_validate($file, array());
- $this->assertEqual(array(), $errors);
- $this->assertFileHooksCalled(array('validate'));
- }
- }
-
- * Tests the file_save_data() function.
- */
- class FileSaveDataTest extends FileHookTestCase {
-
- * Test the file_save_data() function when no filename is provided.
- */
- function testWithoutFilename() {
- $contents = $this->randomName(8);
-
- $result = file_save_data($contents);
- $this->assertTrue($result, 'Unnamed file saved correctly.');
-
- $this->assertEqual(file_default_scheme(), file_uri_scheme($result->uri), "File was placed in Backdrop's files directory.");
- $this->assertEqual($result->filename, backdrop_basename($result->uri), "Filename was set to the file's basename.");
- $this->assertEqual($contents, file_get_contents($result->uri), 'Contents of the file are correct.');
- $this->assertEqual($result->filemime, 'application/octet-stream', 'A MIME type was set.');
- $this->assertEqual($result->status, FILE_STATUS_PERMANENT, "The file's status was set to permanent.");
-
-
- $this->assertFileHooksCalled(array('insert'));
-
-
- $this->assertFileUnchanged($result, file_load($result->fid));
- }
-
-
- * Test the file_save_data() function when a filename is provided.
- */
- function testWithFilename() {
- $contents = $this->randomName(8);
-
-
-
- $filename = 'Текстовый файл.txt';
-
- $result = file_save_data($contents, 'public://' . $filename);
- $this->assertTrue($result, 'Unnamed file saved correctly.');
-
- $this->assertEqual('public', file_uri_scheme($result->uri), "File was placed in Backdrop's files directory.");
- $this->assertEqual($filename, backdrop_basename($result->uri), 'File was named correctly.');
- $this->assertEqual($contents, file_get_contents($result->uri), 'Contents of the file are correct.');
- $this->assertEqual($result->filemime, 'text/plain', 'A MIME type was set.');
- $this->assertEqual($result->status, FILE_STATUS_PERMANENT, "The file's status was set to permanent.");
-
-
- $this->assertFileHooksCalled(array('insert'));
-
-
- $this->assertFileUnchanged($result, file_load($result->fid));
- }
-
-
- * Test file_save_data() when renaming around an existing file.
- */
- function testExistingRename() {
-
- $existing = $this->createFile();
- $contents = $this->randomName(8);
-
- $result = file_save_data($contents, $existing->uri, FILE_EXISTS_RENAME);
- $this->assertTrue($result, "File saved successfully.");
-
- $this->assertEqual('public', file_uri_scheme($result->uri), "File was placed in Backdrop's files directory.");
- $this->assertEqual($result->filename, $existing->filename, "Filename was set to the basename of the source, rather than that of the renamed file.");
- $this->assertEqual($contents, file_get_contents($result->uri), "Contents of the file are correct.");
- $this->assertEqual($result->filemime, 'application/octet-stream', "A MIME type was set.");
- $this->assertEqual($result->status, FILE_STATUS_PERMANENT, "The file's status was set to permanent.");
-
-
- $this->assertFileHooksCalled(array('insert'));
-
-
- $this->assertDifferentFile($existing, $result);
- $this->assertFileUnchanged($existing, file_load($existing->fid));
-
-
- $this->assertFileUnchanged($result, file_load($result->fid));
- }
-
-
- * Test file_save_data() when replacing an existing file.
- */
- function testExistingReplace() {
-
- $existing = $this->createFile();
- $contents = $this->randomName(8);
-
- $result = file_save_data($contents, $existing->uri, FILE_EXISTS_REPLACE);
- $this->assertTrue($result, 'File saved successfully.');
-
- $this->assertEqual('public', file_uri_scheme($result->uri), "File was placed in Backdrop's files directory.");
- $this->assertEqual($result->filename, $existing->filename, 'Filename was set to the basename of the existing file, rather than preserving the original name.');
- $this->assertEqual($contents, file_get_contents($result->uri), 'Contents of the file are correct.');
- $this->assertEqual($result->filemime, 'application/octet-stream', 'A MIME type was set.');
- $this->assertEqual($result->status, FILE_STATUS_PERMANENT, "The file's status was set to permanent.");
-
-
- $this->assertFileHooksCalled(array('load', 'update'));
-
-
- $this->assertSameFile($existing, $result);
-
-
- $this->assertFileUnchanged($result, file_load($result->fid));
- }
-
-
- * Test that file_save_data() fails overwriting an existing file.
- */
- function testExistingError() {
- $contents = $this->randomName(8);
- $existing = $this->createFile(NULL, $contents);
-
-
- $result = file_save_data('asdf', $existing->uri, FILE_EXISTS_ERROR);
- $this->assertFalse($result, 'Overwriting a file fails when FILE_EXISTS_ERROR is specified.');
- $this->assertEqual($contents, file_get_contents($existing->uri), 'Contents of existing file were unchanged.');
-
-
- $this->assertFileHooksCalled(array());
-
-
- $this->assertFileUnchanged($existing, file_load($existing->fid));
- }
- }
-
- * Tests for download/file transfer functions.
- */
- class FileDownloadTest extends FileTestCase {
- function setUp() {
- parent::setUp('file_test');
-
- file_test_reset();
- }
-
-
- * Test the public file transfer system.
- */
- function testPublicFileTransfer() {
-
- $file = $this->createFile();
- $url = file_create_url($file->uri);
-
-
- $filename = $GLOBALS['base_url'] . '/' . file_stream_wrapper_get_instance_by_scheme('public')->getDirectoryPath() . '/' . rawurlencode($file->filename);
- $this->assertEqual($filename, $url, 'Correctly generated a URL for a created file.');
- $this->backdropHead($url);
- $this->assertResponse(200, 'Confirmed that the generated URL is correct by downloading the created file.');
-
-
-
- $filepath = 'core/misc/jquery.js';
- $url = file_create_url($filepath);
- $this->assertEqual($GLOBALS['base_url'] . '/' . $filepath, $url, 'Correctly generated a URL for a shipped file.');
- $this->backdropHead($url);
- $this->assertResponse(200, 'Confirmed that the generated URL is correct by downloading the shipped file.');
- }
-
-
- * Test the private file transfer system.
- */
- function testPrivateFileTransfer() {
-
-
-
- $contents = $this->randomName(8);
- $file = $this->createFile(NULL, $contents, 'private');
- $url = file_create_url($file->uri);
-
-
- file_test_set_return('download', array('x-foo' => 'Bar'));
- $this->backdropGet($url);
- $headers = $this->backdropGetHeaders();
- $this->assertEqual($headers['x-foo'], 'Bar', 'Found header set by file_test module on private download.');
- $this->assertResponse(200, 'Correctly allowed access to a file when file_test provides headers.');
-
-
- $this->assertEqual($contents, $this->content, 'Contents of the file are correct.');
-
-
- file_test_set_return('download', -1);
- $this->backdropHead($url);
- $this->assertResponse(403, 'Correctly denied access to a file when file_test sets the header to -1.');
-
-
- $url = file_create_url('private://' . $this->randomName());
- $this->backdropHead($url);
- $this->assertResponse(404, 'Correctly returned 404 response for a non-existent file.');
- }
-
-
- * Test file_create_url().
- */
- function testFileCreateUrl() {
- global $base_url;
-
-
-
-
- $basename = " -._!$'\"()*@[]?&+%#,;=:\n\x00" .
- "%23%25%26%2B%2F%3F" .
- "éøïвβ中國書۞";
- $basename_encoded = '%20-._%21%24%27%22%28%29%2A%40%5B%5D%3F%26%2B%25%23%2C%3B%3D%3A__' .
- '%2523%2525%2526%252B%252F%253F' .
- '%C3%A9%C3%B8%C3%AF%D0%B2%CE%B2%E4%B8%AD%E5%9C%8B%E6%9B%B8%DB%9E';
-
- $this->checkUrl('public', '', $basename, $base_url . '/' . file_stream_wrapper_get_instance_by_scheme('public')->getDirectoryPath() . '/' . $basename_encoded);
- $this->checkUrl('private', '', $basename, $base_url . '/system/files/' . $basename_encoded);
- $this->checkUrl('private', '', $basename, $base_url . '/?q=system/files/' . $basename_encoded, '0');
- }
-
-
- * Download a file from the URL generated by file_create_url().
- *
- * Create a file with the specified scheme, directory and filename; check that
- * the URL generated by file_create_url() for the specified file equals the
- * specified URL; fetch the URL and then compare the contents to the file.
- *
- * @param $scheme
- * A scheme, e.g. "public"
- * @param $directory
- * A directory, possibly ""
- * @param $filename
- * A filename
- * @param $expected_url
- * The expected URL
- * @param $clean_url
- * The value of the clean_url setting
- */
- private function checkUrl($scheme, $directory, $filename, $expected_url, $clean_url = '1') {
- config_set('system.core', 'clean_url', $clean_url);
- backdrop_static_reset('url');
-
-
-
-
- $filepath = file_create_filename($filename, $directory);
- $directory_uri = $scheme . '://' . dirname($filepath);
- file_prepare_directory($directory_uri, FILE_CREATE_DIRECTORY);
- $file = $this->createFile($filepath, NULL, $scheme);
-
- $url = file_create_url($file->uri);
- $this->assertEqual($url, $expected_url, 'Generated URL matches expected URL.');
-
- if ($scheme == 'private') {
-
-
- file_test_set_return('download', array('x-foo' => 'Bar'));
- }
-
- $this->backdropGet($url);
- if ($this->assertResponse(200) == 'pass') {
- $this->assertRaw(file_get_contents($file->uri), 'Contents of the file are correct.');
- }
-
- $file->delete();
- }
- }
-
- * Tests for file URL rewriting.
- */
- class FileURLRewritingTest extends FileTestCase {
- function setUp() {
- parent::setUp('file_test');
- }
-
-
- * Test the generating of rewritten shipped file URLs.
- */
- function testShippedFileURL() {
-
-
-
-
- state_set('file_test_hook_file_url_alter', 'cdn');
- $filepath = 'core/misc/jquery.js';
- $url = file_create_url($filepath);
- $this->assertEqual(FILE_URL_TEST_CDN_1 . '/' . $filepath, $url, 'Correctly generated a CDN URL for a shipped file.');
- $filepath = 'core/misc/favicon.ico';
- $url = file_create_url($filepath);
- $this->assertEqual(FILE_URL_TEST_CDN_2 . '/' . $filepath, $url, 'Correctly generated a CDN URL for a shipped file.');
-
-
- state_set('file_test_hook_file_url_alter', 'root-relative');
- $filepath = 'core/misc/jquery.js';
- $url = file_create_url($filepath);
- $this->assertEqual(base_path() . '/' . $filepath, $url, 'Correctly generated a root-relative URL for a shipped file.');
- $filepath = 'core/misc/favicon.ico';
- $url = file_create_url($filepath);
- $this->assertEqual(base_path() . '/' . $filepath, $url, 'Correctly generated a root-relative URL for a shipped file.');
-
-
- state_set('file_test_hook_file_url_alter', 'protocol-relative');
- $filepath = 'core/misc/jquery.js';
- $url = file_create_url($filepath);
- $this->assertEqual('/' . base_path() . '/' . $filepath, $url, 'Correctly generated a protocol-relative URL for a shipped file.');
- $filepath = 'core/misc/favicon.ico';
- $url = file_create_url($filepath);
- $this->assertEqual('/' . base_path() . '/' . $filepath, $url, 'Correctly generated a protocol-relative URL for a shipped file.');
- }
-
-
- * Test the generating of rewritten public created file URLs.
- */
- function testPublicCreatedFileURL() {
-
-
-
- state_set('file_test_hook_file_url_alter', 'cdn');
- $file = $this->createFile();
- $url = file_create_url($file->uri);
- $public_directory_path = file_stream_wrapper_get_instance_by_scheme('public')->getDirectoryPath();
- $this->assertEqual(FILE_URL_TEST_CDN_2 . '/' . $public_directory_path . '/' . $file->filename, $url, 'Correctly generated a CDN URL for a created file.');
-
-
- state_set('file_test_hook_file_url_alter', 'root-relative');
- $file = $this->createFile();
- $url = file_create_url($file->uri);
- $this->assertEqual(base_path() . '/' . $public_directory_path . '/' . $file->filename, $url, 'Correctly generated a root-relative URL for a created file.');
-
-
- state_set('file_test_hook_file_url_alter', 'protocol-relative');
- $file = $this->createFile();
- $url = file_create_url($file->uri);
- $this->assertEqual('/' . base_path() . '/' . $public_directory_path . '/' . $file->filename, $url, 'Correctly generated a protocol-relative URL for a created file.');
- }
- }
-
- * Tests for file_munge_filename() and file_unmunge_filename().
- */
- class FileNameMungingTest extends FileTestCase {
- protected $bad_extension;
- protected $name;
- protected $name_with_uc_ext;
-
- function setUp() {
- parent::setUp();
- $this->bad_extension = 'foo';
- $this->name = $this->randomName() . '.' . $this->bad_extension . '.txt';
- $this->name_with_uc_ext = $this->randomName() . '.' . strtoupper($this->bad_extension) . '.txt';
- }
-
-
- * Create a file and munge/unmunge the name.
- */
- function testMunging() {
- $munged_name = file_munge_filename($this->name, '', TRUE);
- $messages = backdrop_get_messages();
- $this->assertTrue(in_array(t('For security reasons, your upload has been renamed to %filename.', array('%filename' => $munged_name)), $messages['status']), 'Alert properly set when a file is renamed.');
- $this->assertNotEqual($munged_name, $this->name, format_string('The new filename (%munged) has been modified from the original (%original)', array('%munged' => $munged_name, '%original' => $this->name)));
- }
-
-
- * Tests munging with a null byte in the filename.
- */
- function testMungeNullByte() {
- $prefix = $this->randomName();
- $filename = $prefix . '.' . $this->bad_extension . "\0.txt";
- $this->assertEqual(file_munge_filename($filename, ''), $prefix . '.' . $this->bad_extension . '_.txt', 'A filename with a null byte is correctly munged to remove the null byte.');
- }
-
-
- * If the allow_insecure_uploads variable evaluates to true, the file should
- * come out untouched, no matter how evil the filename.
- */
- function testMungeIgnoreInsecure() {
- $GLOBALS['settings']['allow_insecure_uploads'] = 1;
- $munged_name = file_munge_filename($this->name, '');
- $this->assertIdentical($munged_name, $this->name, format_string('The original filename (%original) matches the munged filename (%munged) when insecure uploads are enabled.', array('%munged' => $munged_name, '%original' => $this->name)));
- }
-
-
- * Allowed extensions are ignored by file_munge_filename().
- */
- function testMungeIgnoreAllowed() {
-
-
- $munged_name = file_munge_filename($this->name_with_uc_ext, $this->bad_extension);
- $this->assertIdentical($munged_name, $this->name_with_uc_ext, format_string('The new filename (%munged) matches the original (%original) once the extension has been allowed.', array('%munged' => $munged_name, '%original' => $this->name_with_uc_ext)));
-
- $munged_name = file_munge_filename($this->name, strtoupper($this->bad_extension));
- $this->assertIdentical($munged_name, $this->name, format_string('The new filename (%munged) matches the original (%original) also when the allowed extension is in uppercase.', array('%munged' => $munged_name, '%original' => $this->name)));
- }
-
-
- * Tests unsafe extensions are munged by file_munge_filename().
- */
- public function testMungeUnsafe() {
- $prefix = $this->randomName();
- $name = "$prefix.php.txt";
-
-
- $munged_name = file_munge_filename($name, 'php txt');
- $this->assertIdentical($munged_name, "$prefix.php_.txt", format_string('The filename (%munged) has been modified from the original (%original) if the allowed extension is also on the unsafe list.', array('%munged' => $munged_name, '%original' => $name)));
- }
-
-
- * Ensure that unmunge gets your name back.
- */
- function testUnMunge() {
- $munged_name = file_munge_filename($this->name, '', FALSE);
- $unmunged_name = file_unmunge_filename($munged_name);
- $this->assertIdentical($unmunged_name, $this->name, format_string('The unmunged (%unmunged) filename matches the original (%original)', array('%unmunged' => $unmunged_name, '%original' => $this->name)));
- }
- }
-
- * Tests for file_get_mimetype().
- */
- class FileMimeTypeTest extends BackdropWebTestCase {
- function setUp() {
- parent::setUp('file_test');
- }
-
-
- * Test mapping of mimetypes from filenames.
- */
- public function testFileMimeTypeDetection() {
- $prefix = 'public://';
-
- $test_case = array(
- 'test.jar' => 'application/java-archive',
- 'test.jpeg' => 'image/jpeg',
- 'test.JPEG' => 'image/jpeg',
- 'test.jpg' => 'image/jpeg',
- 'test.jar.jpg' => 'image/jpeg',
- 'test.jpg.jar' => 'application/java-archive',
- 'test.pcf.Z' => 'application/x-font',
- 'pcf.z' => 'application/octet-stream',
- 'jar' => 'application/octet-stream',
- 'some.junk' => 'application/octet-stream',
- 'foo.file_test_1' => 'made_up/file_test_1',
- 'foo.file_test_2' => 'made_up/file_test_2',
- 'foo.doc' => 'made_up/doc',
- 'test.ogg' => 'audio/ogg',
- );
-
-
- foreach ($test_case as $input => $expected) {
-
- $output = file_get_mimetype($prefix . $input);
- $this->assertIdentical($output, $expected, format_string('Mimetype for %input is %output (expected: %expected).', array('%input' => $input, '%output' => $output, '%expected' => $expected)));
-
-
- $output = file_get_mimetype($input);
- $this->assertIdentical($output, $expected, format_string('Mimetype (using default mappings) for %input is %output (expected: %expected).', array('%input' => $input, '%output' => $output, '%expected' => $expected)));
- }
-
-
- $mapping = array(
- 'mimetypes' => array(
- 0 => 'application/java-archive',
- 1 => 'image/jpeg',
- ),
- 'extensions' => array(
- 'jar' => 0,
- 'jpg' => 1,
- )
- );
-
- $test_case = array(
- 'test.jar' => 'application/java-archive',
- 'test.jpeg' => 'application/octet-stream',
- 'test.jpg' => 'image/jpeg',
- 'test.jar.jpg' => 'image/jpeg',
- 'test.jpg.jar' => 'application/java-archive',
- 'test.pcf.z' => 'application/octet-stream',
- 'pcf.z' => 'application/octet-stream',
- 'jar' => 'application/octet-stream',
- 'some.junk' => 'application/octet-stream',
- 'foo.file_test_1' => 'application/octet-stream',
- 'foo.file_test_2' => 'application/octet-stream',
- 'foo.doc' => 'application/octet-stream',
- 'test.ogg' => 'application/octet-stream',
- );
-
- foreach ($test_case as $input => $expected) {
- $output = file_get_mimetype($input, $mapping);
- $this->assertIdentical($output, $expected, format_string('Mimetype (using passed-in mappings) for %input is %output (expected: %expected).', array('%input' => $input, '%output' => $output, '%expected' => $expected)));
- }
- }
- }
-
- * Tests stream wrapper functions.
- */
- class StreamWrapperTest extends BackdropWebTestCase {
-
- protected $scheme = 'dummy';
- protected $class_name = 'BackdropDummyStreamWrapper';
-
- function setUp() {
- parent::setUp('file_test');
- backdrop_static_reset('file_get_stream_wrappers');
- }
-
- function tearDown() {
- parent::tearDown();
- stream_wrapper_unregister($this->scheme);
- }
-
-
- * Test the getClassName() function.
- */
- function testGetClassName() {
-
- $this->assertEqual($this->class_name, file_stream_wrapper_get_class($this->scheme), 'Got correct class name for dummy scheme.');
-
- $this->assertEqual('BackdropPublicStreamWrapper', file_stream_wrapper_get_class('public'), 'Got correct class name for public scheme.');
- }
-
-
- * Test the file_stream_wrapper_get_instance_by_scheme() function.
- */
- function testGetInstanceByScheme() {
- $instance = file_stream_wrapper_get_instance_by_scheme($this->scheme);
- $this->assertEqual($this->class_name, get_class($instance), 'Got correct class type for dummy scheme.');
-
- $instance = file_stream_wrapper_get_instance_by_scheme('public');
- $this->assertEqual('BackdropPublicStreamWrapper', get_class($instance), 'Got correct class type for public scheme.');
- }
-
-
- * Test the URI and target functions.
- */
- function testUriFunctions() {
- $site_config = config('system.core');
- $instance = file_stream_wrapper_get_instance_by_uri($this->scheme . '://foo');
- $this->assertEqual($this->class_name, get_class($instance), 'Got correct class type for dummy URI.');
-
- $instance = file_stream_wrapper_get_instance_by_uri('public://foo');
- $this->assertEqual('BackdropPublicStreamWrapper', get_class($instance), 'Got correct class type for public URI.');
-
-
- $this->assertEqual(file_uri_target('public://foo/bar.txt'), 'foo/bar.txt', 'Got a valid stream target from public://foo/bar.txt.');
- $this->assertFalse(file_uri_target('foo/bar.txt'), 'foo/bar.txt is not a valid stream.');
-
-
- $this->assertEqual(file_build_uri('foo/bar.txt'), 'public://foo/bar.txt', 'Expected scheme was added.');
- $this->assertEqual(file_stream_wrapper_get_instance_by_scheme('public')->getDirectoryPath(), $site_config->get('file_public_path'), 'Expected default directory path was returned.');
- $this->assertEqual(file_stream_wrapper_get_instance_by_scheme('temporary')->getDirectoryPath(), $site_config->get('file_temporary_path'), 'Expected temporary directory path was returned.');
-
- config_set('system.core', 'file_default_scheme', 'private');
- $this->assertEqual(file_build_uri('foo/bar.txt'), 'private://foo/bar.txt', 'Got a valid URI from foo/bar.txt.');
- }
-
-
- * Test the scheme functions.
- */
- function testGetValidStreamScheme() {
- $this->assertEqual('foo', file_uri_scheme('foo://pork//chops'), 'Got the correct scheme from foo://asdf');
- $this->assertTrue(file_stream_wrapper_valid_scheme(file_uri_scheme('public://asdf')), 'Got a valid stream scheme from public://asdf');
- $this->assertFalse(file_stream_wrapper_valid_scheme(file_uri_scheme('foo://asdf')), 'Did not get a valid stream scheme from foo://asdf');
- }
- }