102 lines
3.5 KiB
PHP
102 lines
3.5 KiB
PHP
<?php
|
|
// {{{ICINGA_LICENSE_HEADER}}}
|
|
// {{{ICINGA_LICENSE_HEADER}}}
|
|
|
|
namespace Tests\Icinga\Application;
|
|
|
|
use Icinga\Test\BaseTestCase;
|
|
use Icinga\Application\Config as IcingaConfig;
|
|
|
|
class ConfigTest extends BaseTestCase
|
|
{
|
|
/**
|
|
* Set up config dir
|
|
*/
|
|
public function setUp()
|
|
{
|
|
parent::setUp();
|
|
$this->configDir = IcingaConfig::$configDir;
|
|
IcingaConfig::$configDir = dirname(__FILE__) . '/ConfigTest/files';
|
|
}
|
|
|
|
/**
|
|
* Reset config dir
|
|
*/
|
|
public function tearDown()
|
|
{
|
|
parent::tearDown();
|
|
IcingaConfig::$configDir = $this->configDir;
|
|
}
|
|
|
|
public function testAppConfig()
|
|
{
|
|
$config = IcingaConfig::app('config', true);
|
|
$this->assertEquals(1, $config->logging->enable, 'Unexpected value retrieved from config file');
|
|
// Test non-existent property where null is the default value
|
|
$this->assertEquals(
|
|
null,
|
|
$config->logging->get('disable'),
|
|
'Unexpected default value for non-existent properties'
|
|
);
|
|
// Test non-existent property using zero as the default value
|
|
$this->assertEquals(0, $config->logging->get('disable', 0));
|
|
// Test retrieve full section
|
|
$this->assertEquals(
|
|
array(
|
|
'disable' => 1,
|
|
'db' => array(
|
|
'user' => 'user',
|
|
'password' => 'password'
|
|
)
|
|
),
|
|
$config->backend->toArray()
|
|
);
|
|
// Test non-existent section using 'default' as default value
|
|
$this->assertEquals('default', $config->get('magic', 'default'));
|
|
// Test sub-properties
|
|
$this->assertEquals('user', $config->backend->db->user);
|
|
// Test non-existent sub-property using 'UTF-8' as the default value
|
|
$this->assertEquals('UTF-8', $config->backend->db->get('encoding', 'UTF-8'));
|
|
// Test invalid property names using false as default value
|
|
$this->assertEquals(false, $config->backend->get('.', false));
|
|
$this->assertEquals(false, $config->backend->get('db.', false));
|
|
$this->assertEquals(false, $config->backend->get('.user', false));
|
|
// Test retrieve array of sub-properties
|
|
$this->assertEquals(
|
|
array(
|
|
'user' => 'user',
|
|
'password' => 'password'
|
|
),
|
|
$config->backend->db->toArray()
|
|
);
|
|
// Test singleton
|
|
$this->assertEquals($config, IcingaConfig::app('config'));
|
|
$this->assertEquals(array('logging', 'backend'), $config->keys());
|
|
$this->assertEquals(array('enable'), $config->keys('logging'));
|
|
}
|
|
|
|
public function testAppExtraConfig()
|
|
{
|
|
$extraConfig = IcingaConfig::app('extra', true);
|
|
$this->assertEquals(1, $extraConfig->meta->version);
|
|
$this->assertEquals($extraConfig, IcingaConfig::app('extra'));
|
|
}
|
|
|
|
public function testModuleConfig()
|
|
{
|
|
$moduleConfig = IcingaConfig::module('amodule', 'config', true);
|
|
$this->assertEquals(1, $moduleConfig->menu->get('breadcrumb'));
|
|
$this->assertEquals($moduleConfig, IcingaConfig::module('amodule'));
|
|
}
|
|
|
|
public function testModuleExtraConfig()
|
|
{
|
|
$moduleExtraConfig = IcingaConfig::module('amodule', 'extra', true);
|
|
$this->assertEquals(
|
|
'inetOrgPerson',
|
|
$moduleExtraConfig->ldap->user->get('ldap_object_class')
|
|
);
|
|
$this->assertEquals($moduleExtraConfig, IcingaConfig::module('amodule', 'extra'));
|
|
}
|
|
}
|