FileDeleteTest.php

Same filename and directory in other branches
  1. 9 core/tests/Drupal/KernelTests/Core/File/FileDeleteTest.php
  2. 8.9.x core/tests/Drupal/KernelTests/Core/File/FileDeleteTest.php
  3. 10 core/tests/Drupal/KernelTests/Core/File/FileDeleteTest.php

Namespace

Drupal\KernelTests\Core\File

File

core/tests/Drupal/KernelTests/Core/File/FileDeleteTest.php

View source
<?php

declare (strict_types=1);
namespace Drupal\KernelTests\Core\File;

use Drupal\Core\File\Exception\NotRegularFileException;

/**
 * Tests the unmanaged file delete function.
 *
 * @group File
 */
class FileDeleteTest extends FileTestBase {
    
    /**
     * Delete a normal file.
     */
    public function testNormal() : void {
        // Create a file for testing
        $uri = $this->createUri();
        // Delete a regular file
        $this->assertTrue(\Drupal::service('file_system')->delete($uri), 'Deleted worked.');
        $this->assertFileDoesNotExist($uri);
    }
    
    /**
     * Try deleting a missing file.
     */
    public function testMissing() : void {
        // Try to delete a non-existing file
        $this->assertTrue(\Drupal::service('file_system')->delete('public://' . $this->randomMachineName()), 'Returns true when deleting a non-existent file.');
    }
    
    /**
     * Try deleting a directory.
     */
    public function testDirectory() : void {
        // A directory to operate on.
        $directory = $this->createDirectory();
        // Try to delete a directory.
        try {
            \Drupal::service('file_system')->delete($directory);
            $this->fail('Expected NotRegularFileException');
        } catch (NotRegularFileException $e) {
            // Ignore.
        }
        $this->assertDirectoryExists($directory);
    }

}

Classes

Title Deprecated Summary
FileDeleteTest Tests the unmanaged file delete function.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.