]> git.mxchange.org Git - friendica.git/blob - tests/DatabaseTest.php
Fixes: (#5447)
[friendica.git] / tests / DatabaseTest.php
1 <?php
2 /**
3  * DatabaseTest class.
4  */
5
6 namespace Friendica\Test;
7
8 use Friendica\Database\DBA;
9 use PHPUnit\DbUnit\DataSet\YamlDataSet;
10 use PHPUnit\DbUnit\TestCaseTrait;
11 use PHPUnit\Framework\TestCase;
12 use PHPUnit_Extensions_Database_DB_IDatabaseConnection;
13
14 /**
15  * Abstract class used by tests that need a database.
16  */
17 abstract class DatabaseTest extends TestCase
18 {
19
20         use TestCaseTrait;
21
22         /**
23          * Get database connection.
24          *
25          * This function is executed before each test in order to get a database connection that can be used by tests.
26          * If no prior connection is available, it tries to create one using the USER, PASS and DB environment variables.
27          *
28          * If it could not connect to the database, the test is skipped.
29          *
30          * @return PHPUnit_Extensions_Database_DB_IDatabaseConnection
31          * @see https://phpunit.de/manual/5.7/en/database.html
32          */
33         protected function getConnection()
34         {
35                 if (!DBA::connected()) {
36                         $this->markTestSkipped('Could not connect to the database.');
37                 }
38
39                 return $this->createDefaultDBConnection(DBA::get_db(), getenv('MYSQL_DATABASE'));
40         }
41
42         /**
43          * Get dataset to populate the database with.
44          * @return YamlDataSet
45          * @see https://phpunit.de/manual/5.7/en/database.html
46          */
47         protected function getDataSet()
48         {
49                 return new YamlDataSet(__DIR__ . '/datasets/api.yml');
50         }
51 }