Mercurial > hg > isophonics-drupal-site
view core/modules/update/tests/src/Functional/UpdateDeleteFileIfStaleTest.php @ 13:5fb285c0d0e3
Update Drupal core to 8.4.7 via Composer. Security update; I *think* we've
been lucky to get away with this so far, as we don't support self-registration
which seems to be used by the so-called "drupalgeddon 2" attack that 8.4.5
was vulnerable to.
author | Chris Cannam |
---|---|
date | Mon, 23 Apr 2018 09:33:26 +0100 |
parents | 4c8ae668cc8c |
children | 1fec387a4317 |
line wrap: on
line source
<?php namespace Drupal\Tests\update\Functional; /** * Tests the update_delete_file_if_stale() function. * * @group update */ class UpdateDeleteFileIfStaleTest extends UpdateTestBase { /** * Modules to enable. * * @var array */ public static $modules = ['update']; /** * {@inheritdoc} */ protected function setUp() { parent::setUp(); } /** * Tests the deletion of stale files. */ public function testUpdateDeleteFileIfStale() { $file_name = file_unmanaged_save_data($this->randomMachineName()); $this->assertNotNull($file_name); // During testing the file change and the stale checking occurs in the same // request, so the beginning of request will be before the file changes and // REQUEST_TIME - $filectime is negative. Set the maximum age to a number // even smaller than that. $this->config('system.file') ->set('temporary_maximum_age', -100000) ->save(); $file_path = drupal_realpath($file_name); update_delete_file_if_stale($file_path); $this->assertFalse(is_file($file_path)); } }