function UpdateSemverCoreTest::testClearDiskCache

Checks that clearing the disk cache works.

File

core/modules/update/tests/src/Functional/UpdateSemverCoreTest.php, line 318

Class

UpdateSemverCoreTest
Tests the semantic version handling in the Update Manager.

Namespace

Drupal\Tests\update\Functional

Code

public function testClearDiskCache() {
    $directories = [
        _update_manager_cache_directory(FALSE),
        _update_manager_extract_directory(FALSE),
    ];
    // Check that update directories does not exists.
    foreach ($directories as $directory) {
        $this->assertDirectoryDoesNotExist($directory);
    }
    // Method must not fail if update directories do not exists.
    update_clear_update_disk_cache();
}

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