Add .htconfig.php in test setUp

This commit is contained in:
Hypolite Petovan 2018-07-02 23:10:33 -04:00
parent 79ff49d716
commit 4752ea1374
1 changed files with 24 additions and 0 deletions

View File

@ -20,6 +20,30 @@ abstract class DatabaseTest extends TestCase
use TestCaseTrait; use TestCaseTrait;
/**
* Creates .htconfig.php for bin/worker.php execution
*/
protected function setUp()
{
parent::setUp();
$base_config_file_name = 'htconfig.php';
$config_file_name = '.htconfig.php';
$base_config_file_path = stream_resolve_include_path($base_config_file_name);
$config_file_path = dirname($base_config_file_path) . DIRECTORY_SEPARATOR . $config_file_name;
$config_string = file_get_contents($base_config_file_path);
$config_string = str_replace('die(', '// die(', $config_string);
$config_string = str_replace('your.mysqlhost.com', 'localhost', $config_string);
$config_string = str_replace('mysqlusername' , getenv('USER'), $config_string);
$config_string = str_replace('mysqlpassword' , getenv('PASS'), $config_string);
$config_string = str_replace('mysqldatabasename' , getenv('DB'), $config_string);
file_put_contents($config_file_path, $config_string);
}
/** /**
* Get database connection. * Get database connection.
* *