public function SaveDataTest::testExistingReplace in Drupal 9
Same name and namespace in other branches
- 8 core/modules/file/tests/src/Kernel/SaveDataTest.php \Drupal\Tests\file\Kernel\SaveDataTest::testExistingReplace()
Tests file_save_data() when replacing an existing file.
File
- core/
modules/ file/ tests/ src/ Kernel/ SaveDataTest.php, line 101
Class
- SaveDataTest
- Tests the file_save_data() function.
Namespace
Drupal\Tests\file\KernelCode
public function testExistingReplace() {
// Setup a file to overwrite.
$existing = $this
->createFile();
$contents = $this
->randomMachineName(8);
$result = file_save_data($contents, $existing
->getFileUri(), FileSystemInterface::EXISTS_REPLACE);
$this
->assertNotFalse($result, 'File saved successfully.');
$stream_wrapper_manager = \Drupal::service('stream_wrapper_manager');
assert($stream_wrapper_manager instanceof StreamWrapperManagerInterface);
$this
->assertEquals('public', $stream_wrapper_manager::getScheme($result
->getFileUri()), "File was placed in Drupal's files directory.");
$this
->assertEquals($existing
->getFilename(), $result
->getFilename(), 'Filename was set to the basename of the existing file, rather than preserving the original name.');
$this
->assertEquals($contents, file_get_contents($result
->getFileUri()), 'Contents of the file are correct.');
$this
->assertEquals('application/octet-stream', $result
->getMimeType(), 'A MIME type was set.');
$this
->assertTrue($result
->isPermanent(), "The file's status was set to permanent.");
// Check that the correct hooks were called.
$this
->assertFileHooksCalled([
'load',
'update',
]);
// Verify that the existing file was re-used.
$this
->assertSameFile($existing, $result);
// Verify that what was returned is what's in the database.
$this
->assertFileUnchanged($result, File::load($result
->id()));
}