]> git.mxchange.org Git - core.git/blob - framework/main/tests/filter/tests/configuration/classes/class_TestConfigurationLoadableClassesFilter.php
Rewrite:
[core.git] / framework / main / tests / filter / tests / configuration / classes / class_TestConfigurationLoadableClassesFilter.php
1 <?php
2 // Own namespace
3 namespace Org\Mxchange\CoreFramework\Tests\Filter\Configuration\Classes;
4
5 // Import framework stuff
6 use Org\Mxchange\CoreFramework\Bootstrap\FrameworkBootstrap;
7 use Org\Mxchange\CoreFramework\Filter\Filterable;
8 use Org\Mxchange\CoreFramework\Request\Requestable;
9 use Org\Mxchange\CoreFramework\Response\Responseable;
10 use Org\Mxchange\CoreFramework\Tests\Filter\BaseTestsFilter;
11
12 // Import SPL stuff
13 use \InvalidArgumentException;
14
15 /**
16  * A LoadableClasses filter for tests
17  *
18  * @author              Roland Haeder <webmaster@ship-simu.org>
19  * @version             0.0.0
20  * @copyright   Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2020 Core Developer Team
21  * @license             GNU GPL 3.0 or any newer version
22  * @link                http://www.ship-simu.org
23  *
24  * This program is free software: you can redistribute it and/or modify
25  * it under the terms of the GNU General Public License as published by
26  * the Free Software Foundation, either version 3 of the License, or
27  * (at your option) any later version.
28  *
29  * This program is distributed in the hope that it will be useful,
30  * but WITHOUT ANY WARRANTY; without even the implied warranty of
31  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
32  * GNU General Public License for more details.
33  *
34  * You should have received a copy of the GNU General Public License
35  * along with this program. If not, see <http://www.gnu.org/licenses/>.
36  */
37 class TestConfigurationLoadableClassesFilter extends BaseTestsFilter implements Filterable {
38         /**
39          * Protected constructor
40          *
41          * @return      void
42          */
43         private function __construct () {
44                 // Call parent constructor
45                 parent::__construct(__CLASS__);
46         }
47
48         /**
49          * Creates an instance of this filter class
50          *
51          * @return      $filterInstance         An instance of this filter class
52          */
53         public final static function createTestConfigurationLoadableClassesFilter () {
54                 // Get a new instance
55                 $filterInstance = new TestConfigurationLoadableClassesFilter();
56
57                 // Return the instance
58                 return $filterInstance;
59         }
60
61         /**
62          * Executes the filter with given request and response objects
63          *
64          * @param       $requestInstance        An instance of a class with an Requestable interface
65          * @param       $responseInstance       An instance of a class with an Responseable interface
66          * @return      void
67          * @todo        0% done
68          */
69         public function execute (Requestable $requestInstance, Responseable $responseInstance) {
70                 // Init counter
71                 $passed = 0;
72                 $failed = 0;
73
74                 // Loop through all configuration keys
75                 foreach (FrameworkBootstrap::getConfigurationInstance()->getConfigurationArray() as $configKey => $configValue) {
76                         // Key must end with _class
77                         if (substr($configKey, -6, 6) != '_class') {
78                                 // Skip this
79                                 continue;
80                         }
81
82                         // Output message
83                         self::createDebugInstance(__CLASS__, __LINE__)->debugOutput(sprintf('Testing configKey[%s]=%s,configValue[%s]=%s', gettype($configKey), $configKey, gettype($configValue), $configValue));
84
85                         // This may throw exceptions
86                         try {
87                                 // Is the config entry valid and class is there?
88                                 if (!is_string($configValue)) {
89                                         // Is not a string
90                                         self::createDebugInstance(__CLASS__, __LINE__)->debugOutput(sprintf('configValue=%s has unexpected type "%s". FAILED', $configValue, gettype($configValue)));
91
92                                         // Skip further tests
93                                         $failed++;
94                                         continue;
95                                 } elseif (!class_exists($configValue)) {
96                                         // Class not found
97                                         self::createDebugInstance(__CLASS__, __LINE__)->debugOutput(sprintf('Class "%s" not found. FAILED', $configValue));
98
99                                         // Skip further tests
100                                         $failed++;
101                                         continue;
102                                 }
103                         } catch (InvalidArgumentException $e) {
104                                 // Maybe not conform?
105                                 self::createDebugInstance(__CLASS__, __LINE__)->debugOutput(sprintf('Class "%s" failed to load. Message: "%s"', $configValue, $e->getMessage()));
106
107                                 // Skip further tests
108                                 $failed++;
109                                 continue;
110                         }
111
112                         // class_exists() didn't fail
113                         self::createDebugInstance(__CLASS__, __LINE__)->debugOutput(sprintf('Class "%s" loaded successfully. OKAY', $configValue));
114                         $passed++;
115                 }
116
117                 // Output result
118                 self::createDebugInstance(__CLASS__, __LINE__)->debugOutput(sprintf('Test result: %d okay, %d failed (%0.02f%% passed)', $passed, $failed, ($passed / ($passed + $failed) * 100)));
119         }
120
121 }