|
|
@ -6,7 +6,7 @@ |
|
|
|
* See the COPYING-README file. |
|
|
|
* See the COPYING-README file. |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
|
|
|
|
|
|
|
|
class Test_Config extends PHPUnit_Framework_TestCase { |
|
|
|
class Test_Config extends \Test\TestCase { |
|
|
|
const TESTCONTENT = '<?php $CONFIG=array("foo"=>"bar", "beers" => array("Appenzeller", "Guinness", "Kölsch"), "alcohol_free" => false);'; |
|
|
|
const TESTCONTENT = '<?php $CONFIG=array("foo"=>"bar", "beers" => array("Appenzeller", "Guinness", "Kölsch"), "alcohol_free" => false);'; |
|
|
|
|
|
|
|
|
|
|
|
/** @var array */ |
|
|
|
/** @var array */ |
|
|
@ -18,15 +18,18 @@ class Test_Config extends PHPUnit_Framework_TestCase { |
|
|
|
/** @var string */ |
|
|
|
/** @var string */ |
|
|
|
private $randomTmpDir; |
|
|
|
private $randomTmpDir; |
|
|
|
|
|
|
|
|
|
|
|
function setUp() { |
|
|
|
protected function setUp() { |
|
|
|
|
|
|
|
parent::setUp(); |
|
|
|
|
|
|
|
|
|
|
|
$this->randomTmpDir = \OC_Helper::tmpFolder(); |
|
|
|
$this->randomTmpDir = \OC_Helper::tmpFolder(); |
|
|
|
$this->configFile = $this->randomTmpDir.'testconfig.php'; |
|
|
|
$this->configFile = $this->randomTmpDir.'testconfig.php'; |
|
|
|
file_put_contents($this->configFile, self::TESTCONTENT); |
|
|
|
file_put_contents($this->configFile, self::TESTCONTENT); |
|
|
|
$this->config = new OC\Config($this->randomTmpDir, 'testconfig.php'); |
|
|
|
$this->config = new OC\Config($this->randomTmpDir, 'testconfig.php'); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public function tearDown() { |
|
|
|
protected function tearDown() { |
|
|
|
unlink($this->configFile); |
|
|
|
unlink($this->configFile); |
|
|
|
|
|
|
|
parent::tearDown(); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public function testGetKeys() { |
|
|
|
public function testGetKeys() { |
|
|
|