1
0
mirror of https://github.com/e107inc/e107.git synced 2025-10-14 14:34:51 +02:00
Files
php-e107/tests/_support/Helper/E107Base.php
Deltik 8b07f620f1 Reworked E107Base::cleanVCS() to use proc_open()
Maybe works on Windows now?

Author doesn't know; author coded this on Linux.
2018-02-20 21:05:18 -06:00

71 lines
1.8 KiB
PHP

<?php
namespace Helper;
// here you can define custom actions
// all public methods declared in helper class will be available in $I
abstract class E107Base extends Base
{
public $e107_mySQLprefix = 'e107_';
const APP_PATH_E107_CONFIG = APP_PATH."/e107_config.php";
public function _beforeSuite($settings = array())
{
$this->cleanVCS();
parent::_beforeSuite($settings);
$this->writeLocalE107Config();
}
public function _afterSuite()
{
parent::_afterSuite();
$this->revokeLocalE107Config();
$this->cleanVCS();
}
protected function writeLocalE107Config()
{
$twig_loader = new \Twig_Loader_Array([
'e107_config.php' => file_get_contents(codecept_data_dir()."/e107_config.php.sample")
]);
$twig = new \Twig_Environment($twig_loader);
$db = $this->getModule('\Helper\DelayedDb');
$e107_config = [];
$e107_config['mySQLserver'] = $db->_getDbHostname();
$e107_config['mySQLuser'] = $db->_getDbUsername();
$e107_config['mySQLpassword'] = $db->_getDbPassword();
$e107_config['mySQLdefaultdb'] = $db->_getDbName();
$e107_config['mySQLprefix'] = $this->e107_mySQLprefix;
$e107_config_contents = $twig->render('e107_config.php', $e107_config);
file_put_contents(self::APP_PATH_E107_CONFIG, $e107_config_contents);
}
protected function revokeLocalE107Config()
{
if (file_exists(self::APP_PATH_E107_CONFIG))
unlink(self::APP_PATH_E107_CONFIG);
}
protected function cleanVCS()
{
$descriptorspec = [
1 => ['pipe', 'w'],
2 => ['pipe', 'w'],
];
$pipes = [];
$resource = proc_open('git clean -fdx', $descriptorspec, $pipes, APP_PATH);
//$stdout = stream_get_contents($pipes[1]);
//$stderr = stream_get_contents($pipes[2]);
//foreach ($pipes as $pipe)
//{
// fclose($pipe);
//}
//var_dump($stdout);
//var_dump($stderr);
proc_close($resource);
}
}