mirror of
https://github.com/friendica/friendica
synced 2024-11-09 23:42:53 +00:00
Fix tests (#5400)
* Avoid argc side-effects * Fix undefined array keys in JITConfigAdapter::set() * Avoid argv side effects in ApiTest
This commit is contained in:
parent
b265bf2ec3
commit
6e1ed0b0d3
2 changed files with 19 additions and 0 deletions
|
@ -96,6 +96,13 @@ class JITConfigAdapter extends BaseObject implements IConfigAdapter
|
|||
|
||||
$stored = $this->get($cat, $k, null, true);
|
||||
|
||||
if (!isset($this->in_db[$cat])) {
|
||||
$this->in_db[$cat] = [];
|
||||
}
|
||||
if (!isset($this->in_db[$cat][$k])) {
|
||||
$this->in_db[$cat] = false;
|
||||
}
|
||||
|
||||
if (($stored === $dbvalue) && $this->in_db[$cat][$k]) {
|
||||
return true;
|
||||
}
|
||||
|
|
|
@ -68,6 +68,18 @@ class ApiTest extends DatabaseTest
|
|||
Config::set('system', 'theme', 'system_theme');
|
||||
}
|
||||
|
||||
/**
|
||||
* Cleanup variables used by tests.
|
||||
*/
|
||||
protected function tearDown()
|
||||
{
|
||||
parent::tearDown();
|
||||
|
||||
$app = get_app();
|
||||
$app->argc = 1;
|
||||
$app->argv = ['home'];
|
||||
}
|
||||
|
||||
/**
|
||||
* Assert that an user array contains expected keys.
|
||||
* @param array $user User array
|
||||
|
|
Loading…
Reference in a new issue