Merge pull request #1063 from ArthurHoaro/hotfix/legacy-warnings
Fix warnings when upgrading from legacy SebSauvage version
This commit is contained in:
commit
2cbf4acdde
3 changed files with 18 additions and 3 deletions
|
@ -83,10 +83,10 @@ public function read($filepath)
|
||||||
|
|
||||||
$out = array();
|
$out = array();
|
||||||
foreach (self::$ROOT_KEYS as $key) {
|
foreach (self::$ROOT_KEYS as $key) {
|
||||||
$out[$key] = $GLOBALS[$key];
|
$out[$key] = isset($GLOBALS[$key]) ? $GLOBALS[$key] : '';
|
||||||
}
|
}
|
||||||
$out['config'] = $GLOBALS['config'];
|
$out['config'] = isset($GLOBALS['config']) ? $GLOBALS['config'] : [];
|
||||||
$out['plugins'] = !empty($GLOBALS['plugins']) ? $GLOBALS['plugins'] : array();
|
$out['plugins'] = isset($GLOBALS['plugins']) ? $GLOBALS['plugins'] : [];
|
||||||
return $out;
|
return $out;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -36,6 +36,20 @@ public function testReadNonExistent()
|
||||||
$this->assertEquals(array(), $this->configIO->read('nope'));
|
$this->assertEquals(array(), $this->configIO->read('nope'));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Read an empty existent config file -> array with blank default values.
|
||||||
|
*/
|
||||||
|
public function testReadEmpty()
|
||||||
|
{
|
||||||
|
$dataFile = 'tests/utils/config/emptyConfigPhp.php';
|
||||||
|
$conf = $this->configIO->read($dataFile);
|
||||||
|
$this->assertEmpty($conf['login']);
|
||||||
|
$this->assertEmpty($conf['title']);
|
||||||
|
$this->assertEmpty($conf['titleLink']);
|
||||||
|
$this->assertEmpty($conf['config']);
|
||||||
|
$this->assertEmpty($conf['plugins']);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Write a new config file.
|
* Write a new config file.
|
||||||
*/
|
*/
|
||||||
|
|
1
tests/utils/config/emptyConfigPhp.php
Normal file
1
tests/utils/config/emptyConfigPhp.php
Normal file
|
@ -0,0 +1 @@
|
||||||
|
<?php
|
Loading…
Reference in a new issue