This repository has been archived on 2026-07-19. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
espocrm-base/tests/unit/Espo/Core/Utils/ConfigTest.php
T
2016-09-13 16:20:42 +03:00

171 lines
5.4 KiB
PHP

<?php
/************************************************************************
* This file is part of EspoCRM.
*
* EspoCRM - Open Source CRM application.
* Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko
* Website: http://www.espocrm.com
*
* EspoCRM is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* EspoCRM is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with EspoCRM. If not, see http://www.gnu.org/licenses/.
*
* The interactive user interfaces in modified source and object code versions
* of this program must display Appropriate Legal Notices, as required under
* Section 5 of the GNU General Public License version 3.
*
* In accordance with Section 7(b) of the GNU General Public License version 3,
* these Appropriate Legal Notices must retain the display of the "EspoCRM" word.
************************************************************************/
namespace tests\unit\Espo\Core\Utils;
use tests\unit\ReflectionHelper;
class ConfigTest extends \PHPUnit_Framework_TestCase
{
protected $object;
protected $objects;
protected $defaultTestConfig = 'tests/unit/testData/Utils/Config/config.php';
protected $configPath = 'tests/unit/testData/cache/config.php';
protected $systemConfigPath = 'tests/unit/testData/Utils/Config/systemConfig.php';
protected function setUp()
{
$this->objects['fileManager'] = new \Espo\Core\Utils\File\Manager();
/*copy defaultTestConfig file to cache*/
if (!file_exists($this->configPath)) {
copy($this->defaultTestConfig, $this->configPath);
}
$this->object = new \Espo\Core\Utils\Config($this->objects['fileManager']);
$this->reflection = new ReflectionHelper($this->object);
$this->reflection->setProperty('configPath', $this->configPath);
$this->reflection->setProperty('systemConfigPath', $this->systemConfigPath);
}
protected function tearDown()
{
$this->object = NULL;
}
public function testLoadConfig()
{
$this->assertArrayHasKey('database', $this->reflection->invokeMethod('loadConfig', array()));
$this->assertArrayHasKey('dateFormat', $this->reflection->invokeMethod('loadConfig', array()));
}
public function testGet()
{
$result = array(
'driver' => 'pdo_mysql',
'host' => 'localhost',
'dbname' => 'espocrm',
'user' => 'root',
'password' => '',
);
$this->assertEquals($result, $this->object->get('database'));
$result = 'pdo_mysql';
$this->assertEquals($result, $this->object->get('database.driver'));
$result = 'YYYY-MM-DD';
$this->assertEquals($result, $this->object->get('dateFormat'));
$this->assertTrue($this->object->get('isInstalled'));
}
public function testSet()
{
$setKey= 'testOption';
$setValue= 'Test';
$this->object->set($setKey, $setValue);
$this->assertTrue($this->object->save());
$this->assertEquals($setValue, $this->object->get($setKey));
$this->object->set($setKey, 'Another Wrong Value');
$this->assertTrue($this->object->save());
}
public function testSetNull()
{
$setKey= 'testOption';
$setValue= 'Test';
$this->object->set($setKey, $setValue);
$this->assertTrue($this->object->save());
$this->assertEquals($setValue, $this->object->get($setKey));
$this->object->set($setKey, null);
$this->assertTrue($this->object->save());
$this->assertNull($this->object->get($setKey));
}
public function testSetArray()
{
$values = array(
'testOption' => 'Test',
'testOption2' => 'Test2',
);
$this->object->set($values);
$this->assertTrue($this->object->save());
$this->assertEquals('Test', $this->object->get('testOption'));
$this->assertEquals('Test2', $this->object->get('testOption2'));
$wrongArray = array(
'testOption' => 'Another Wrong Value',
);
$this->object->set($wrongArray);
$this->assertTrue($this->object->save());
}
public function testRemove()
{
$optKey = 'removeOption';
$optValue = 'Test';
$this->object->set($optKey, $optValue);
$this->assertTrue($this->object->save());
$this->assertTrue($this->object->remove($optKey));
$this->assertNull($this->object->get($optKey));
}
public function testSystemConfigMerge()
{
$configDataWithoutSystem = $this->objects['fileManager']->getPhpContents($this->configPath);
$this->assertArrayNotHasKey('systemItems', $configDataWithoutSystem);
$this->assertArrayNotHasKey('adminItems', $configDataWithoutSystem);
$configData = $this->reflection->invokeMethod('loadConfig', array());
$this->assertArrayHasKey('systemItems', $configData);
$this->assertArrayHasKey('adminItems', $configData);
}
}