Skip to content
Snippets Groups Projects
Commit cba21baa authored by Andreas Gohr's avatar Andreas Gohr
Browse files

started to add some unit tests to config manager

Parsing the config file should be completely tested before we can rely
on it and safely extend it. This just adds the first very basic tests.
parent d30b165d
No related branches found
No related tags found
No related merge requests found
<?php
class plugin_config_configuration_test extends DokuWikiTest {
private $config = '';
private $meta = '';
function __construct() {
$this->config = dirname(__FILE__).'/data/config.php';
$this->meta = dirname(__FILE__).'/data/metadata.php';
require_once(dirname(__FILE__).'/../settings/config.class.php');
}
function test_readconfig() {
$confmgr = new configuration($this->meta);
$conf = $confmgr->_read_config($this->config);
//print_r($conf);
$this->assertEquals('42', $conf['int1']);
$this->assertEquals('6*7', $conf['int2']);
$this->assertEquals('Hello World', $conf['str1']);
$this->assertEquals('G\'day World', $conf['str2']);
$this->assertEquals('Hello World', $conf['str3']);
$this->assertEquals("Hello 'World'", $conf['str4']);
$this->assertEquals('Hello "World"', $conf['str5']);
}
}
\ No newline at end of file
<?php
$conf['int1'] = 42;
$conf['int2'] = 6*7;
$conf['str1'] = 'Hello World';
$conf['str2'] = 'G\'day World';
$conf['str3'] = "Hello World";
$conf['str4'] = "Hello 'World'";
$conf['str5'] = "Hello \"World\"";
$conf['foo']['bar'] = 'x1';
$conf['foo']['baz'] = 'x2';
<?php
$meta['int1'] = array('numeric');
$meta['int2'] = array('numeric');
$meta['str1'] = array('string');
$meta['str2'] = array('string');
$meta['str3'] = array('string');
$meta['str4'] = array('string');
$meta['str5'] = array('string');
......@@ -6,6 +6,9 @@
* @author Ben Coburn <btcoburn@silicodon.net>
*/
if(!defined('CM_KEYMARKER')) define('CM_KEYMARKER','____');
if (!class_exists('configuration')) {
class configuration {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment