aboutsummaryrefslogblamecommitdiffhomepage
path: root/tests/config/ConfigJsonTest.php
blob: 0960c729a3a7ebf0de6846e3f24ee915ba0e6cba (plain) (tree)
























                                                                                


                                                                                            




























                                                                                        







                                                    








                                                     







                                          





                               
                                                                                                                                                                        
         
                                                            












                                                                     
                                                 

                                             
                                                                     
























                                                
<?php

require_once 'application/config/ConfigJson.php';

/**
 * Class ConfigJsonTest
 */
class ConfigJsonTest extends PHPUnit_Framework_TestCase
{
    /**
     * @var ConfigJson
     */
    protected $configIO;

    public function setUp()
    {
        $this->configIO = new ConfigJson();
    }

    /**
     * Read a simple existing config file.
     */
    public function testRead()
    {
        $conf = $this->configIO->read('tests/utils/config/configJson.json.php');
        $this->assertEquals('root', $conf['credentials']['login']);
        $this->assertEquals('lala', $conf['extras']['redirector']);
        $this->assertEquals('tests/utils/config/datastore.php', $conf['path']['datastore']);
        $this->assertEquals('1', $conf['plugins']['WALLABAG_VERSION']);
    }

    /**
     * Read a non existent config file -> empty array.
     */
    public function testReadNonExistent()
    {
        $this->assertEquals(array(), $this->configIO->read('nope'));
    }

    /**
     * Read a non existent config file -> empty array.
     *
     * @expectedException Exception
     * @expectedExceptionMessage An error occured while parsing JSON file: error code #4
     */
    public function testReadInvalidJson()
    {
        $this->configIO->read('tests/utils/config/configInvalid.json.php');
    }

    /**
     * Write a new config file.
     */
    public function testWriteNew()
    {
        $dataFile = 'tests/utils/config/configWrite.json.php';
        $data = array(
            'credentials' => array(
                'login' => 'root',
            ),
            'path' => array(
                'datastore' => 'data/datastore.php',
            ),
            'extras' => array(
                'redirector' => 'lala',
            ),
            'plugins' => array(
                'WALLABAG_VERSION' => '1',
            )
        );
        $this->configIO->write($dataFile, $data);
        // PHP 5.3 doesn't support json pretty print.
        if (defined('JSON_PRETTY_PRINT')) {
            $expected = '{
    "credentials": {
        "login": "root"
    },
    "path": {
        "datastore": "data\/datastore.php"
    },
    "extras": {
        "redirector": "lala"
    },
    "plugins": {
        "WALLABAG_VERSION": "1"
    }
}';
        } else {
            $expected = '{"credentials":{"login":"root"},"path":{"datastore":"data\/datastore.php"},"extras":{"redirector":"lala"},"plugins":{"WALLABAG_VERSION":"1"}}';
        }
        $expected = ConfigJson::getPhpHeaders() . $expected;
        $this->assertEquals($expected, file_get_contents($dataFile));
        unlink($dataFile);
    }

    /**
     * Overwrite an existing setting.
     */
    public function testOverwrite()
    {
        $source = 'tests/utils/config/configJson.json.php';
        $dest = 'tests/utils/config/configOverwrite.json.php';
        copy($source, $dest);
        $conf = $this->configIO->read($dest);
        $conf['extras']['redirector'] = 'blabla';
        $this->configIO->write($dest, $conf);
        $conf = $this->configIO->read($dest);
        $this->assertEquals('blabla', $conf['extras']['redirector']);
        unlink($dest);
    }

    /**
     * Write to invalid path.
     *
     * @expectedException IOException
     */
    public function testWriteInvalidArray()
    {
        $conf = array('conf' => 'value');
        @$this->configIO->write(array(), $conf);
    }

    /**
     * Write to invalid path.
     *
     * @expectedException IOException
     */
    public function testWriteInvalidBlank()
    {
        $conf = array('conf' => 'value');
        @$this->configIO->write('', $conf);
    }
}