summaryrefslogtreecommitdiffstats
path: root/tests/lib
diff options
context:
space:
mode:
authorBart Visscher <bartv@thisnet.nl>2013-06-27 22:24:17 +0200
committerBart Visscher <bartv@thisnet.nl>2013-06-27 22:24:17 +0200
commit194b61b4c507e58eab0750ab40ed6eb6f085c06a (patch)
treefb1346860e08f93473b63ac2be5579757217ed63 /tests/lib
parentae2b3732de4eeced50a71f9074d0b5dadf625edd (diff)
downloadnextcloud-server-194b61b4c507e58eab0750ab40ed6eb6f085c06a.tar.gz
nextcloud-server-194b61b4c507e58eab0750ab40ed6eb6f085c06a.zip
Revert "Can't determine if debug mode is defined until we read the config"
This reverts commit 969e43c87b7afb6184846fe27849167c9c6f5eab.
Diffstat (limited to 'tests/lib')
-rw-r--r--tests/lib/config.php18
1 files changed, 9 insertions, 9 deletions
diff --git a/tests/lib/config.php b/tests/lib/config.php
index acc2a536fd0..e22bf3fd7de 100644
--- a/tests/lib/config.php
+++ b/tests/lib/config.php
@@ -13,25 +13,25 @@ class Test_Config extends PHPUnit_Framework_TestCase {
public function testReadData()
{
- $config = new OC\Config(self::CONFIG_DIR);
+ $config = new OC\Config(self::CONFIG_DIR, false);
$this->assertAttributeEquals(array(), 'cache', $config);
file_put_contents(self::CONFIG_FILE, self::TESTCONTENT);
- $config = new OC\Config(self::CONFIG_DIR);
+ $config = new OC\Config(self::CONFIG_DIR, false);
$this->assertAttributeEquals(array('foo'=>'bar'), 'cache', $config);
}
public function testGetKeys()
{
file_put_contents(self::CONFIG_FILE, self::TESTCONTENT);
- $config = new OC\Config(self::CONFIG_DIR);
+ $config = new OC\Config(self::CONFIG_DIR, false);
$this->assertEquals(array('foo'), $config->getKeys());
}
public function testGetValue()
{
file_put_contents(self::CONFIG_FILE, self::TESTCONTENT);
- $config = new OC\Config(self::CONFIG_DIR);
+ $config = new OC\Config(self::CONFIG_DIR, false);
$this->assertEquals('bar', $config->getValue('foo'));
$this->assertEquals(null, $config->getValue('bar'));
$this->assertEquals('moo', $config->getValue('bar', 'moo'));
@@ -40,7 +40,7 @@ class Test_Config extends PHPUnit_Framework_TestCase {
public function testSetValue()
{
file_put_contents(self::CONFIG_FILE, self::TESTCONTENT);
- $config = new OC\Config(self::CONFIG_DIR);
+ $config = new OC\Config(self::CONFIG_DIR, false);
$config->setValue('foo', 'moo');
$this->assertAttributeEquals(array('foo'=>'moo'), 'cache', $config);
$content = file_get_contents(self::CONFIG_FILE);
@@ -69,7 +69,7 @@ EOL
public function testDeleteKey()
{
file_put_contents(self::CONFIG_FILE, self::TESTCONTENT);
- $config = new OC\Config(self::CONFIG_DIR);
+ $config = new OC\Config(self::CONFIG_DIR, false);
$config->deleteKey('foo');
$this->assertAttributeEquals(array(), 'cache', $config);
$content = file_get_contents(self::CONFIG_FILE);
@@ -84,11 +84,11 @@ EOL
public function testSavingDebugMode()
{
- define('DEBUG',true);
file_put_contents(self::CONFIG_FILE, self::TESTCONTENT);
- $config = new OC\Config(self::CONFIG_DIR);
+ $config = new OC\Config(self::CONFIG_DIR, true);
$config->deleteKey('foo'); // change something so we save to the config file
$this->assertAttributeEquals(array(), 'cache', $config);
+ $this->assertAttributeEquals(true, 'debug_mode', $config);
$content = file_get_contents(self::CONFIG_FILE);
$this->assertEquals(<<<EOL
<?php
@@ -102,7 +102,7 @@ EOL
public function testWriteData()
{
- $config = new OC\Config('/non-writable');
+ $config = new OC\Config('/non-writable', false);
try {
$config->setValue('foo', 'bar');
} catch (\OC\HintException $e) {