function UnmanagedDeleteRecursiveTest::testSubDirectory in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/system/src/Tests/File/UnmanagedDeleteRecursiveTest.php \Drupal\system\Tests\File\UnmanagedDeleteRecursiveTest::testSubDirectory()
Try deleting subdirectories with some files.
File
- core/
modules/ system/ src/ Tests/ File/ UnmanagedDeleteRecursiveTest.php, line 62 - Contains \Drupal\system\Tests\File\UnmanagedDeleteRecursiveTest.
Class
- UnmanagedDeleteRecursiveTest
- Tests the unmanaged file delete recursive function.
Namespace
Drupal\system\Tests\FileCode
function testSubDirectory() {
// A directory to operate on.
$directory = $this
->createDirectory();
$subdirectory = $this
->createDirectory($directory . '/sub');
$filepathA = $directory . '/A';
$filepathB = $subdirectory . '/B';
file_put_contents($filepathA, '');
file_put_contents($filepathB, '');
// Delete the directory.
$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.');
}