]> git.mxchange.org Git - friendica.git/commitdiff
Remove .htconfig.php reference from DatabaseTest
authorHypolite Petovan <mrpetovan@gmail.com>
Sat, 7 Jul 2018 01:17:04 +0000 (21:17 -0400)
committerHypolite Petovan <mrpetovan@gmail.com>
Mon, 16 Jul 2018 23:38:15 +0000 (19:38 -0400)
tests/DatabaseTest.php

index 1a1b53b1207f2ea2cc9e33583498e7e616faa5cb..579e45084d5617277b5f71fa367bf36b025534b7 100644 (file)
@@ -20,54 +20,6 @@ abstract class DatabaseTest extends TestCase
 
        use TestCaseTrait;
 
-       /**
-        * Renames an eventually existing .htconfig.php to .htconfig.php.tmp
-        * Creates a new .htconfig.php for bin/worker.php execution
-        */
-       public static function setUpBeforeClass()
-       {
-               parent::setUpBeforeClass();
-
-               $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_file_path_tmp = $config_file_path . '.tmp';
-
-               if (file_exists($config_file_path)) {
-                       rename($config_file_path, $config_file_path_tmp);
-               }
-
-               $config_string = file_get_contents($base_config_file_path);
-
-               $config_string = str_replace('die(', '// die(', $config_string);
-
-               file_put_contents($config_file_path, $config_string);
-       }
-
-       /**
-        * Delete the created .htconfig.php
-        * Renames an eventually existing .htconfig.php.tmp to .htconfig.php
-        */
-       public static function tearDownAfterClass()
-       {
-               $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_file_path_tmp = $config_file_path . '.tmp';
-
-               if (file_exists($config_file_path)) {
-                       unlink($config_file_path);
-               }
-
-               if (file_exists($config_file_path_tmp)) {
-                       rename($config_file_path_tmp, $config_file_path);
-               }
-       }
-
        /**
         * Get database connection.
         *