mirror of
https://github.com/friendica/friendica
synced 2024-11-09 23:42:53 +00:00
Bugfixing tests
This commit is contained in:
parent
1e0e1674f2
commit
0f5a50b46b
2 changed files with 9 additions and 2 deletions
|
@ -423,7 +423,7 @@ class DBA
|
|||
|
||||
$orig_sql = $sql;
|
||||
|
||||
if (self::$config->get('system', 'db_callstack')) {
|
||||
if (self::$config->get('system', 'db_callstack') !== null) {
|
||||
$sql = "/*".System::callstack()." */ ".$sql;
|
||||
}
|
||||
|
||||
|
|
|
@ -5,7 +5,10 @@
|
|||
|
||||
namespace Friendica\Test;
|
||||
|
||||
use Friendica\Core\Config;
|
||||
use Friendica\Database\DBA;
|
||||
use Friendica\Factory;
|
||||
use Friendica\Util\BasePath;
|
||||
use PHPUnit\DbUnit\DataSet\YamlDataSet;
|
||||
use PHPUnit\DbUnit\TestCaseTrait;
|
||||
use PHPUnit_Extensions_Database_DB_IDatabaseConnection;
|
||||
|
@ -36,8 +39,12 @@ abstract class DatabaseTest extends MockedTest
|
|||
$this->markTestSkipped('Please set the MYSQL_* environment variables to your test database credentials.');
|
||||
}
|
||||
|
||||
$basedir = BasePath::create(dirname(__DIR__));
|
||||
$configLoader = new Config\ConfigCacheLoader($basedir);
|
||||
$config = Factory\ConfigFactory::createCache($configLoader);
|
||||
|
||||
DBA::connect(
|
||||
__DIR__,
|
||||
$config,
|
||||
getenv('MYSQL_HOST'),
|
||||
getenv('MYSQL_USERNAME'),
|
||||
getenv('MYSQL_PASSWORD'),
|
||||
|
|
Loading…
Reference in a new issue