3c66e56435
Namespaces have been introduced with the REST API, and should be generalized to the whole codebase to manage object scope and benefit from autoloading. See: - https://secure.php.net/manual/en/language.namespaces.php - http://www.php-fig.org/psr/psr-4/ Signed-off-by: VirtualTam <virtualtam@flibidi.net>
81 lines
2.2 KiB
PHP
81 lines
2.2 KiB
PHP
<?php
|
|
namespace Shaarli\Config;
|
|
|
|
/**
|
|
* Class ConfigPhpTest
|
|
*/
|
|
class ConfigPhpTest extends \PHPUnit_Framework_TestCase
|
|
{
|
|
/**
|
|
* @var ConfigPhp
|
|
*/
|
|
protected $configIO;
|
|
|
|
public function setUp()
|
|
{
|
|
$this->configIO = new ConfigPhp();
|
|
}
|
|
|
|
/**
|
|
* Read a simple existing config file.
|
|
*/
|
|
public function testRead()
|
|
{
|
|
$conf = $this->configIO->read('tests/utils/config/configPhp.php');
|
|
$this->assertEquals('root', $conf['login']);
|
|
$this->assertEquals('lala', $conf['redirector']);
|
|
$this->assertEquals('data/datastore.php', $conf['config']['DATASTORE']);
|
|
$this->assertEquals('1', $conf['plugins']['WALLABAG_VERSION']);
|
|
}
|
|
|
|
/**
|
|
* Read a non existent config file -> empty array.
|
|
*/
|
|
public function testReadNonExistent()
|
|
{
|
|
$this->assertEquals(array(), $this->configIO->read('nope'));
|
|
}
|
|
|
|
/**
|
|
* Write a new config file.
|
|
*/
|
|
public function testWriteNew()
|
|
{
|
|
$dataFile = 'tests/utils/config/configWrite.php';
|
|
$data = array(
|
|
'login' => 'root',
|
|
'redirector' => 'lala',
|
|
'config' => array(
|
|
'DATASTORE' => 'data/datastore.php',
|
|
),
|
|
'plugins' => array(
|
|
'WALLABAG_VERSION' => '1',
|
|
)
|
|
);
|
|
$this->configIO->write($dataFile, $data);
|
|
$expected = '<?php
|
|
$GLOBALS[\'login\'] = \'root\';
|
|
$GLOBALS[\'redirector\'] = \'lala\';
|
|
$GLOBALS[\'config\'][\'DATASTORE\'] = \'data/datastore.php\';
|
|
$GLOBALS[\'plugins\'][\'WALLABAG_VERSION\'] = \'1\';
|
|
';
|
|
$this->assertEquals($expected, file_get_contents($dataFile));
|
|
unlink($dataFile);
|
|
}
|
|
|
|
/**
|
|
* Overwrite an existing setting.
|
|
*/
|
|
public function testOverwrite()
|
|
{
|
|
$source = 'tests/utils/config/configPhp.php';
|
|
$dest = 'tests/utils/config/configOverwrite.php';
|
|
copy($source, $dest);
|
|
$conf = $this->configIO->read($dest);
|
|
$conf['redirector'] = 'blabla';
|
|
$this->configIO->write($dest, $conf);
|
|
$conf = $this->configIO->read($dest);
|
|
$this->assertEquals('blabla', $conf['redirector']);
|
|
unlink($dest);
|
|
}
|
|
}
|