107 lines
2.5 KiB
PHP
107 lines
2.5 KiB
PHP
<?php
|
|
/**
|
|
* Copyright (c) 2013 Bart Visscher <bartv@thisnet.nl>
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
* later.
|
|
* See the COPYING-README file.
|
|
*/
|
|
|
|
class Test_Config extends PHPUnit_Framework_TestCase {
|
|
const CONFIG_FILE = 'static://config.php';
|
|
const CONFIG_DIR = 'static://';
|
|
const TESTCONTENT = '<?php $CONFIG=array("foo"=>"bar");';
|
|
|
|
function setUp() {
|
|
file_put_contents(self::CONFIG_FILE, self::TESTCONTENT);
|
|
$this->config = new OC\Config(self::CONFIG_DIR);
|
|
}
|
|
|
|
public function testReadData()
|
|
{
|
|
$config = new OC\Config('/non-existing');
|
|
$this->assertAttributeEquals(array(), 'cache', $config);
|
|
|
|
$this->assertAttributeEquals(array('foo'=>'bar'), 'cache', $this->config);
|
|
}
|
|
|
|
public function testGetKeys()
|
|
{
|
|
$this->assertEquals(array('foo'), $this->config->getKeys());
|
|
}
|
|
|
|
public function testGetValue()
|
|
{
|
|
$this->assertEquals('bar', $this->config->getValue('foo'));
|
|
$this->assertEquals(null, $this->config->getValue('bar'));
|
|
$this->assertEquals('moo', $this->config->getValue('bar', 'moo'));
|
|
}
|
|
|
|
public function testSetValue()
|
|
{
|
|
$this->config->setValue('foo', 'moo');
|
|
$this->assertAttributeEquals(array('foo'=>'moo'), 'cache', $this->config);
|
|
$content = file_get_contents(self::CONFIG_FILE);
|
|
$this->assertEquals(<<<EOL
|
|
<?php
|
|
\$CONFIG = array (
|
|
'foo' => 'moo',
|
|
);
|
|
|
|
EOL
|
|
, $content);
|
|
$this->config->setValue('bar', 'red');
|
|
$this->assertAttributeEquals(array('foo'=>'moo', 'bar'=>'red'), 'cache', $this->config);
|
|
$content = file_get_contents(self::CONFIG_FILE);
|
|
$this->assertEquals(<<<EOL
|
|
<?php
|
|
\$CONFIG = array (
|
|
'foo' => 'moo',
|
|
'bar' => 'red',
|
|
);
|
|
|
|
EOL
|
|
, $content);
|
|
}
|
|
|
|
public function testDeleteKey()
|
|
{
|
|
$this->config->deleteKey('foo');
|
|
$this->assertAttributeEquals(array(), 'cache', $this->config);
|
|
$content = file_get_contents(self::CONFIG_FILE);
|
|
$this->assertEquals(<<<EOL
|
|
<?php
|
|
\$CONFIG = array (
|
|
);
|
|
|
|
EOL
|
|
, $content);
|
|
}
|
|
|
|
public function testSavingDebugMode()
|
|
{
|
|
$this->config->setDebugMode(true);
|
|
$this->config->deleteKey('foo'); // change something so we save to the config file
|
|
$this->assertAttributeEquals(array(), 'cache', $this->config);
|
|
$this->assertAttributeEquals(true, 'debugMode', $this->config);
|
|
$content = file_get_contents(self::CONFIG_FILE);
|
|
$this->assertEquals(<<<EOL
|
|
<?php
|
|
define('DEBUG',true);
|
|
\$CONFIG = array (
|
|
);
|
|
|
|
EOL
|
|
, $content);
|
|
}
|
|
|
|
public function testWriteData()
|
|
{
|
|
$config = new OC\Config('/non-writable');
|
|
try {
|
|
$config->setValue('foo', 'bar');
|
|
} catch (\OC\HintException $e) {
|
|
return;
|
|
}
|
|
$this->fail();
|
|
}
|
|
}
|