Use correct App mode to disable logging
- Restore normal mode after DBStructure update - Improve error message in case of missing DB connection
This commit is contained in:
parent
125f7beb63
commit
40d911c284
1 changed files with 4 additions and 2 deletions
|
@ -87,12 +87,14 @@ abstract class DatabaseTest extends TestCase
|
||||||
if (dba::$connected) {
|
if (dba::$connected) {
|
||||||
$app = get_app();
|
$app = get_app();
|
||||||
// We need to do this in order to disable logging
|
// We need to do this in order to disable logging
|
||||||
$app->module = 'install';
|
$app->mode = \Friendica\App::MODE_INSTALL;
|
||||||
|
|
||||||
// Create database structure
|
// Create database structure
|
||||||
DBStructure::update(false, true, true);
|
DBStructure::update(false, true, true);
|
||||||
|
|
||||||
|
$app->mode = \Friendica\App::MODE_NORMAL;
|
||||||
} else {
|
} else {
|
||||||
$this->markTestSkipped('Could not connect to the database.');
|
$this->markTestSkipped('Could not connect to the database. Please check the MYSQL_* environment variables.');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue