mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
27 lines
702 B
PHP
27 lines
702 B
PHP
<?php
|
|
/**
|
|
* Cleans up leftover databases from aborted test executions (starting with ss_tmpdb)
|
|
* Task is restricted to users with administrator rights or running through CLI.
|
|
*
|
|
* @package framework
|
|
* @subpackage tasks
|
|
*/
|
|
class CleanupTestDatabasesTask extends BuildTask {
|
|
protected $title = 'Deletes all temporary test databases';
|
|
|
|
protected $description = 'Cleans up leftover databases from aborted test executions (starting with ss_tmpdb)';
|
|
|
|
public function run($request) {
|
|
if(!Permission::check('ADMIN') && !Director::is_cli()) {
|
|
$response = Security::permissionFailure($this);
|
|
if($response) {
|
|
$response->output();
|
|
}
|
|
die;
|
|
}
|
|
|
|
SapphireTest::delete_all_temp_dbs();
|
|
}
|
|
|
|
}
|