2015-09-06 13:42:57 +00:00
|
|
|
<?php
|
2015-10-11 18:14:49 +00:00
|
|
|
/**
|
2016-05-07 17:22:09 +00:00
|
|
|
* FuzeWorks.
|
2015-10-11 18:14:49 +00:00
|
|
|
*
|
|
|
|
* The FuzeWorks MVC PHP FrameWork
|
|
|
|
*
|
|
|
|
* Copyright (C) 2015 TechFuze
|
|
|
|
*
|
|
|
|
* This program 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.
|
|
|
|
*
|
|
|
|
* This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
* @author TechFuze
|
2016-05-07 17:22:09 +00:00
|
|
|
* @copyright Copyright (c) 2013 - 2016, Techfuze. (http://techfuze.net)
|
2015-10-11 18:14:49 +00:00
|
|
|
* @copyright Copyright (c) 1996 - 2015, Free Software Foundation, Inc. (http://www.fsf.org/)
|
|
|
|
* @license http://opensource.org/licenses/GPL-3.0 GPLv3 License
|
2016-05-07 17:22:09 +00:00
|
|
|
*
|
2016-07-23 15:06:19 +00:00
|
|
|
* @link http://techfuze.net/fuzeworks
|
2015-10-11 18:14:49 +00:00
|
|
|
* @since Version 0.0.1
|
2016-05-07 17:22:09 +00:00
|
|
|
*
|
2016-08-07 11:21:37 +00:00
|
|
|
* @version Version 1.0.1
|
2015-10-11 18:14:49 +00:00
|
|
|
*/
|
2017-07-14 14:14:47 +00:00
|
|
|
use PHPUnit\Framework\TestCase;
|
2015-09-06 13:42:57 +00:00
|
|
|
use FuzeWorks\Events;
|
2015-10-12 15:28:38 +00:00
|
|
|
use FuzeWorks\Layout;
|
2016-06-07 13:09:41 +00:00
|
|
|
use FuzeWorks\Factory;
|
2018-02-20 20:57:12 +00:00
|
|
|
use FuzeWorks\Core;
|
2016-08-07 11:21:37 +00:00
|
|
|
use FuzeWorks\LoggerTracyBridge;
|
2015-09-06 13:42:57 +00:00
|
|
|
|
|
|
|
/**
|
2016-05-07 17:22:09 +00:00
|
|
|
* Class CoreTestAbstract.
|
2015-09-06 13:42:57 +00:00
|
|
|
*
|
|
|
|
* Provides the event tests with some basic functionality
|
|
|
|
*/
|
2017-07-14 14:14:47 +00:00
|
|
|
abstract class CoreTestAbstract extends TestCase
|
2015-09-06 13:42:57 +00:00
|
|
|
{
|
|
|
|
/**
|
2016-05-07 17:22:09 +00:00
|
|
|
* Remove all listeners before the next test starts.
|
2015-10-12 15:28:38 +00:00
|
|
|
*
|
|
|
|
* Reset the layout manager
|
2015-09-06 13:42:57 +00:00
|
|
|
*/
|
2016-05-07 17:22:09 +00:00
|
|
|
public function tearDown()
|
|
|
|
{
|
2016-08-07 11:21:37 +00:00
|
|
|
// Clear all events created by tests
|
2015-09-06 13:42:57 +00:00
|
|
|
Events::$listeners = array();
|
2016-08-07 11:21:37 +00:00
|
|
|
|
|
|
|
// Re-register the LoggerTracyBridge to supress errors
|
|
|
|
LoggerTracyBridge::register();
|
|
|
|
|
|
|
|
// Reset the layout manager
|
2017-07-14 14:14:47 +00:00
|
|
|
Factory::getInstance()->layout->reset();
|
2016-08-07 11:21:37 +00:00
|
|
|
|
2018-02-20 20:57:12 +00:00
|
|
|
// Reset all config files
|
|
|
|
Factory::getInstance()->config->discardConfigFiles();
|
|
|
|
|
2016-08-07 11:21:37 +00:00
|
|
|
// Re-enable events, in case they have been disabled
|
2016-05-25 15:01:59 +00:00
|
|
|
Events::enable();
|
2016-08-07 11:21:37 +00:00
|
|
|
|
|
|
|
// Clear the output
|
2016-06-07 13:09:41 +00:00
|
|
|
Factory::getInstance()->output->set_output('');
|
2018-02-20 20:57:12 +00:00
|
|
|
|
|
|
|
// Reset the HTTP status code
|
|
|
|
Core::$http_status_code = 200;
|
2015-09-06 13:42:57 +00:00
|
|
|
}
|
2016-05-07 17:22:09 +00:00
|
|
|
}
|