1
0
mirror of https://github.com/e107inc/e107.git synced 2025-04-05 13:12:56 +02:00

Added plugin cache test. Removed 'thing' folders automatically after testing.

This commit is contained in:
Cameron 2019-02-20 13:33:02 -08:00
parent 2e6fe30ae6
commit 4630c6478f
2 changed files with 35 additions and 2 deletions

View File

@ -80,12 +80,14 @@ DATA
if(is_dir($path))
{
rename($path, $path."_old_".time());
e107::getFile()->removeDir($path);
// rename($path, $path."_old_".time());
}
if(is_dir($tempPath))
{
rename($tempPath, $tempPath."_old_".time());
e107::getFile()->removeDir($tempPath);
// rename($tempPath, $tempPath."_old_".time());
}
$status = $this->mp->download($id,'','plugin' );

View File

@ -61,6 +61,37 @@
}
public function testClearCache()
{
$detected = $this->ep->clearCache()->getDetected();
$num = e107::getDb()->count('plugin','(*)');
$det = count($detected);
$this->assertEquals($num,$det);
// Simulate an orphaned plugin entry.
$insert = array(
'plugin_name' => "testClearCache",
'plugin_version' => 1,
'plugin_path' => 'missing_path',
'plugin_installflag' => 1,
'plugin_addons' => '',
'plugin_category' => 'tools'
);
e107::getDb()->insert('plugin', $insert);
$detected = $this->ep->clearCache()->getDetected();
$num = e107::getDb()->count('plugin','(*)');
$det = count($detected);
$this->assertEquals($num,$det);
}
public function testBuildAddonPrefList()
{