diff --git a/tests/DatabaseTest.php b/tests/DatabaseTest.php index 12150932c9..6edd45e575 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); + $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. *