summaryrefslogtreecommitdiff
path: root/lib/plugins/config/_test/configuration.test.php
blob: 6e9eb0cc6f4ea6f9303d84cfce78b12ee5944447 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<?php
/**
 * @group plugin_config
 * @group admin_plugins
 * @group plugins
 * @group bundled_plugins
 */

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']);

        $this->assertEquals(array('foo', 'bar', 'baz'), $conf['arr1']);
    }

}