mirror of
https://github.com/friendica/friendica
synced 2024-11-12 22:22:54 +00:00
Add .htconfig.php in test setUp
This commit is contained in:
parent
79ff49d716
commit
9cce1f70f9
1 changed files with 24 additions and 0 deletions
|
@ -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 = 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.
|
* Get database connection.
|
||||||
*
|
*
|
||||||
|
|
Loading…
Reference in a new issue