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

Test environment consistency fixes

git-clean in E107Base now runs first in _beforeSuite() so that tainted
files are not uploaded in Acceptance tests

E107Base::revokeLocalE107Config() now checks for file existence before
unlinking. XXX: Could remove this method if cleanVCS() proves reliable

Acceptance won't try to write an e107_config.php because the tests
themselves populate the configuration file
This commit is contained in:
Deltik 2018-02-20 14:36:24 -06:00
parent 5ce007e07b
commit 63386970d6
No known key found for this signature in database
GPG Key ID: 1167C5F9C9897637
2 changed files with 9 additions and 2 deletions

View File

@ -7,4 +7,10 @@ namespace Helper;
class Acceptance extends E107Base
{
protected $deployer_components = ['db', 'fs'];
protected function writeLocalE107Config()
{
// Noop
// Acceptance tests will install the app themselves
}
}

View File

@ -11,8 +11,8 @@ abstract class E107Base extends Base
public function _beforeSuite($settings = array())
{
parent::_beforeSuite($settings);
$this->cleanVCS();
parent::_beforeSuite($settings);
$this->writeLocalE107Config();
}
@ -45,7 +45,8 @@ abstract class E107Base extends Base
protected function revokeLocalE107Config()
{
unlink(self::APP_PATH_E107_CONFIG);
if (file_exists(self::APP_PATH_E107_CONFIG))
unlink(self::APP_PATH_E107_CONFIG);
}
protected function cleanVCS()