]> git.mxchange.org Git - friendica.git/blobdiff - tests/DatabaseTest.php
Making redirect message more informative
[friendica.git] / tests / DatabaseTest.php
index 70caba71221996361129f479f7fe7328ef569894..ec1eb290d10b8b4584f3c63c42ca24963c5aa8b5 100644 (file)
@@ -14,25 +14,14 @@ use PHPUnit\DbUnit\TestCaseTrait;
 use PHPUnit\Framework\TestCase;
 use PHPUnit_Extensions_Database_DB_IDatabaseConnection;
 
+require_once __DIR__ . '/../boot.php';
+
 /**
  * Abstract class used by tests that need a database.
  */
 abstract class DatabaseTest extends TestCase
 {
-       /**
-        * @var App The Friendica App
-        */
-       protected $app;
-
-       protected function setUp()
-       {
-               // Reusable App object
-               $this->app = BaseObject::getApp();
-
-               Config::set('system', 'url', 'http://localhost');
-               Config::set('system', 'hostname', 'localhost');
-               Config::set('system', 'worker_dont_fork', true);
-       }
+       use TestCaseTrait;
 
        /**
         * Get database connection.
@@ -51,6 +40,11 @@ abstract class DatabaseTest extends TestCase
                        $this->markTestSkipped('Please set the MYSQL_* environment variables to your test database credentials.');
                }
 
+               DBA::connect(getenv('MYSQL_HOST'),
+                       getenv('MYSQL_USERNAME'),
+                       getenv('MYSQL_PASSWORD'),
+                       getenv('MYSQL_DATABASE'));
+
                if (!DBA::connected()) {
                        $this->markTestSkipped('Could not connect to the database.');
                }