. * * @author TechFuze * @copyright Copyright (c) 2013 - 2016, Techfuze. (http://techfuze.net) * @copyright Copyright (c) 1996 - 2015, Free Software Foundation, Inc. (http://www.fsf.org/) * @license http://opensource.org/licenses/GPL-3.0 GPLv3 License * * @link http://fuzeworks.techfuze.net * @since Version 0.0.1 * * @version Version 0.0.1 */ use FuzeWorks\Factory; /** * Class ConfigTest. * * Config testing suite, will test basic config functionality while also testing default ORM's */ class configTest extends CoreTestAbstract { protected $config; public function setUp() { $factory = Factory::getInstance(); $this->config = $factory->getConfig(); } public function testGetConfigClass() { $this->assertInstanceOf('FuzeWorks\Config', $this->config); } /** * @depends testGetConfigClass */ public function testLoadConfig() { $this->assertInstanceOf('FuzeWorks\ConfigORM\ConfigORM', $this->config->getConfig('main')); } /** * @depends testLoadConfig * @expectedException FuzeWorks\ConfigException */ public function testFileNotFound() { $this->config->getConfig('notFound'); } /** * @expectedException FuzeWorks\ConfigException */ public function testAddConfigPathFail() { // Now test if the config can be loaded (hint: it can not) $this->config->getConfig('testAddConfigPath'); } /** * @depends testAddConfigPathFail */ public function testAddConfigPath() { // Add the configPath $this->config->addConfigPath('tests/config/testAddConfigPath'); // And try to load it again $this->assertInstanceOf('FuzeWorks\ConfigORM\ConfigORM', $this->config->getConfig('testAddConfigPath')); } public function testRemoveConfigPath() { // Test if the path does NOT exist $this->assertFalse(in_array('tests/config/testRemoveConfigPath', $this->config->getConfigPaths())); // Add it $this->config->addConfigPath('tests/config/testRemoveConfigPath'); // Assert if it's there $this->assertTrue(in_array('tests/config/testRemoveConfigPath', $this->config->getConfigPaths())); // Remove it $this->config->removeConfigPath('tests/config/testRemoveConfigPath'); // And test if it's gone again $this->assertFalse(in_array('tests/config/testRemoveConfigPath', $this->config->getConfigPaths())); } }