3 namespace CoreFramework\Tests\Filter\Configuration\Classes;
5 // Import framework stuff
6 use CoreFramework\Filter\Filterable;
7 use CoreFramework\Request\Requestable;
8 use CoreFramework\Response\Responseable;
9 use CoreFramework\Tests\Filter\BaseTestsFilter;
12 use \InvalidArgumentException;
15 * A LoadableClasses filter for tests
17 * @author Roland Haeder <webmaster@ship-simu.org>
19 * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2017 Core Developer Team
20 * @license GNU GPL 3.0 or any newer version
21 * @link http://www.ship-simu.org
23 * This program is free software: you can redistribute it and/or modify
24 * it under the terms of the GNU General Public License as published by
25 * the Free Software Foundation, either version 3 of the License, or
26 * (at your option) any later version.
28 * This program is distributed in the hope that it will be useful,
29 * but WITHOUT ANY WARRANTY; without even the implied warranty of
30 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
31 * GNU General Public License for more details.
33 * You should have received a copy of the GNU General Public License
34 * along with this program. If not, see <http://www.gnu.org/licenses/>.
36 class TestConfigurationLoadableClassesFilter extends BaseTestsFilter implements Filterable {
38 * Protected constructor
42 protected function __construct () {
43 // Call parent constructor
44 parent::__construct(__CLASS__);
48 * Creates an instance of this filter class
50 * @return $filterInstance An instance of this filter class
52 public final static function createTestConfigurationLoadableClassesFilter () {
54 $filterInstance = new TestConfigurationLoadableClassesFilter();
56 // Return the instance
57 return $filterInstance;
61 * Executes the filter with given request and response objects
63 * @param $requestInstance An instance of a class with an Requestable interface
64 * @param $responseInstance An instance of a class with an Responseable interface
68 public function execute (Requestable $requestInstance, Responseable $responseInstance) {
73 // Loop through all configuration keys
74 foreach ($this->getConfigInstance()->getConfigurationArray() as $configKey => $configValue) {
75 // Key must end with _class
76 if (substr($configKey, -6, 6) != '_class') {
82 self::createDebugInstance(__CLASS__, __LINE__)->debugOutput(sprintf('Testing configKey=%s,configValue[%s]=%s', $configKey, gettype($configValue), $configValue));
84 // This may throw exceptions
86 // Is the class there?
87 if (!class_exists($configValue)) {
89 self::createDebugInstance(__CLASS__, __LINE__)->debugOutput(sprintf('Class "%s" not found. FAILED', $configValue));
95 } catch (InvalidArgumentException $e) {
97 self::createDebugInstance(__CLASS__, __LINE__)->debugOutput(sprintf('Class "%s" failed to load. Message: "%s"', $configValue, $e->getMessage()));
104 // class_exists() didn't fail
105 self::createDebugInstance(__CLASS__, __LINE__)->debugOutput(sprintf('Class "%s" loaded successfully. OKAY', $configValue));
110 self::createDebugInstance(__CLASS__, __LINE__)->debugOutput(sprintf('Test result: %d okay, %d failed (%0.02f%% passed)', $passed, $failed, ($passed / ($passed + $failed) * 100)));
113 $this->partialStub('Please implement this method.');