From 9cce1f70f98347cdd94265b93c74ef661d3fa3bf Mon Sep 17 00:00:00 2001 From: Hypolite Petovan Date: Mon, 2 Jul 2018 23:10:33 -0400 Subject: [PATCH] Add .htconfig.php in test setUp --- tests/DatabaseTest.php | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/tests/DatabaseTest.php b/tests/DatabaseTest.php index 12150932c9..408e4b0cd3 100644 --- a/tests/DatabaseTest.php +++ b/tests/DatabaseTest.php @@ -20,6 +20,30 @@ abstract class DatabaseTest extends TestCase 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 = str_replace('your.mysqlhost.com', 'localhost'); + $config_string = str_replace('mysqlusername' , getenv('USER')); + $config_string = str_replace('mysqlpassword' , getenv('PASS')); + $config_string = str_replace('mysqldatabasename' , getenv('DB')); + + file_put_contents($config_file_path, $config_string); + } + /** * Get database connection. *