class FileSystemTest
Same name in this branch
- 9 core/tests/Drupal/Tests/Core/File/FileSystemTest.php \Drupal\Tests\Core\File\FileSystemTest
Same name and namespace in other branches
- 11.x core/tests/Drupal/KernelTests/Core/File/FileSystemTest.php \Drupal\KernelTests\Core\File\FileSystemTest
- 11.x core/tests/Drupal/Tests/Core/File/FileSystemTest.php \Drupal\Tests\Core\File\FileSystemTest
- 10 core/tests/Drupal/KernelTests/Core/File/FileSystemTest.php \Drupal\KernelTests\Core\File\FileSystemTest
- 10 core/tests/Drupal/Tests/Core/File/FileSystemTest.php \Drupal\Tests\Core\File\FileSystemTest
- 8.9.x core/tests/Drupal/KernelTests/Core/File/FileSystemTest.php \Drupal\KernelTests\Core\File\FileSystemTest
- 8.9.x core/tests/Drupal/Tests/Core/File/FileSystemTest.php \Drupal\Tests\Core\File\FileSystemTest
@coversDefaultClass \Drupal\Core\File\FileSystem
@group File
Hierarchy
- class \Drupal\KernelTests\KernelTestBase extends \Drupal\Core\DependencyInjection\ServiceProviderInterface uses \Drupal\KernelTests\AssertLegacyTrait, \Drupal\KernelTests\AssertContentTrait, \Drupal\Tests\RandomGeneratorTrait, \Drupal\Tests\ConfigTestTrait, \Drupal\Tests\ExtensionListTestTrait, \Drupal\Tests\TestRequirementsTrait, \Drupal\Tests\Traits\PhpUnitWarnings, \Drupal\Tests\PhpUnitCompatibilityTrait, \Symfony\Bridge\PhpUnit\ExpectDeprecationTrait implements \PHPUnit\Framework\TestCase
- class \Drupal\KernelTests\Core\File\FileSystemTest implements \Drupal\KernelTests\KernelTestBase
Expanded class hierarchy of FileSystemTest
File
-
core/
tests/ Drupal/ KernelTests/ Core/ File/ FileSystemTest.php, line 16
Namespace
Drupal\KernelTests\Core\FileView source
class FileSystemTest extends KernelTestBase {
/**
* The file handler under test.
*
* @var \Drupal\Core\File\FileSystemInterface
*/
protected $fileSystem;
/**
* {@inheritdoc}
*/
protected static $modules = [
'system',
];
/**
* {@inheritdoc}
*/
protected function setUp() : void {
parent::setUp();
$this->fileSystem = $this->container
->get('file_system');
}
/**
* @covers ::copy
*/
public function testEnsureFileExistsBeforeCopy() {
// We need to compute the exception message here because it will include
// the 'real' path to the file, which varies with $this->siteDirectory.
$this->expectException(FileNotExistsException::class);
$this->expectExceptionMessage("File 'public://test.txt' ('{$this->siteDirectory}/files/test.txt') could not be copied because it does not exist");
$this->fileSystem
->copy('public://test.txt', 'public://test-copy.txt');
}
/**
* @covers ::copy
*/
public function testDestinationDirectoryFailureOnCopy() {
$this->expectException(DirectoryNotReadyException::class);
$this->expectExceptionMessage("The specified file 'public://test.txt' could not be copied because the destination directory 'public://subdirectory' is not properly configured. This may be caused by a problem with file or directory permissions.");
touch('public://test.txt');
// public://subdirectory has not been created, so \Drupal::service('file_system')->prepareDirectory()
// will fail, causing copy() to throw DirectoryNotReadyException.
$this->fileSystem
->copy('public://test.txt', 'public://subdirectory/test.txt');
}
/**
* @covers ::copy
*/
public function testCopyFailureIfFileAlreadyExists() {
$this->expectException(FileExistsException::class);
$this->expectExceptionMessage("File 'public://test.txt' could not be copied because a file by that name already exists in the destination directory ('')");
$uri = 'public://test.txt';
touch($uri);
$this->fileSystem
->copy($uri, $uri, FileSystemInterface::EXISTS_ERROR);
}
/**
* @covers ::copy
*/
public function testCopyFailureIfSelfOverwrite() {
$this->expectException(FileException::class);
$this->expectExceptionMessage("'public://test.txt' could not be copied because it would overwrite itself");
$uri = 'public://test.txt';
touch($uri);
$this->fileSystem
->copy($uri, $uri, FileSystemInterface::EXISTS_REPLACE);
}
/**
* @covers ::copy
*/
public function testCopySelfRename() {
$uri = 'public://test.txt';
touch($uri);
$this->fileSystem
->copy($uri, $uri);
$this->assertFileExists('public://test_0.txt');
}
/**
* @covers ::copy
*/
public function testSuccessfulCopy() {
touch('public://test.txt');
$this->fileSystem
->copy('public://test.txt', 'public://test-copy.txt');
$this->assertFileExists('public://test-copy.txt');
}
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.