| Total Complexity | 156 | 
| Total Lines | 944 | 
| Duplicated Lines | 0 % | 
| Changes | 1 | ||
| Bugs | 1 | Features | 0 | 
Complex classes like SanityTests often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use SanityTests, and based on these observations, apply Extract Interface, too.
| 1 | <?php | ||
| 52 | class SanityTests extends CAT | ||
| 53 | { | ||
| 54 | /* in this section set current CAT requirements */ | ||
| 55 | |||
| 56 | /** | ||
| 57 | * the minimum required php version | ||
| 58 | * | ||
| 59 | * @var string | ||
| 60 | */ | ||
| 61 | private $needversionPHP = '7.2.0'; | ||
| 62 | |||
| 63 | /** | ||
| 64 | * the minimum required simpleSAMLphp version | ||
| 65 | * | ||
| 66 | * @var array | ||
| 67 | */ | ||
| 68 | private $needversionSSP = ['major' => 1, 'minor' => 15]; | ||
| 69 | |||
| 70 | /** | ||
| 71 | * all required NSIS modules | ||
| 72 | * | ||
| 73 | * @var array<string> | ||
| 74 | */ | ||
| 75 | private $NSISModules = [ | ||
| 76 | "nsArray.nsh", | ||
| 77 | "FileFunc.nsh", | ||
| 78 | "LogicLib.nsh", | ||
| 79 | "WordFunc.nsh", | ||
| 80 | "FileFunc.nsh", | ||
| 81 | "x64.nsh", | ||
| 82 | ]; | ||
| 83 | |||
| 84 | /** | ||
| 85 | * set $profile_option_ct to the number of rows returned by | ||
| 86 | * "SELECT * FROM profile_option_dict" | ||
| 87 | * to compare actual vs. expected database structure | ||
| 88 | * | ||
| 89 | * @var integer | ||
| 90 | */ | ||
| 91 | private $profileOptionCount; | ||
| 92 | |||
| 93 | /** | ||
| 94 | * set $view_admin_ct to the number of rows returned by "desc view_admin" | ||
| 95 | * | ||
| 96 | * @var integer | ||
| 97 | */ | ||
| 98 | private $viewAdminCount = 8; | ||
| 99 | |||
| 100 | /* end of config */ | ||
| 101 | |||
| 102 | /** | ||
| 103 | * array holding the output of all tests that were executed | ||
| 104 | * | ||
| 105 | * @var array | ||
| 106 | */ | ||
| 107 | public $out; | ||
| 108 | |||
| 109 | /** | ||
| 110 | * temporary storage for the name of the test as it is being run | ||
| 111 | * | ||
| 112 | * @var string | ||
| 113 | */ | ||
| 114 | public $name; | ||
| 115 | |||
| 116 | /** | ||
| 117 | * variable used to signal that no more tests are to be performed | ||
| 118 | * | ||
| 119 | * @var boolean | ||
| 120 | */ | ||
| 121 | public $fatalError = false; | ||
| 122 | |||
| 123 | /** | ||
| 124 | * initialise the tests. Includes counting the number of expected rows in the profile_option_dict table. | ||
| 125 | */ | ||
| 126 | public function __construct() | ||
| 127 |     { | ||
| 128 | parent::__construct(); | ||
| 129 | $this->test_result = []; | ||
| 130 | $this->test_result['global'] = 0; | ||
| 131 | // parse the schema file to find out the number of expected rows... | ||
| 132 | $schema = file(dirname(dirname(__FILE__)) . "/schema/schema.sql"); | ||
| 133 | $this->profileOptionCount = 0; | ||
| 134 | $passedTheWindmill = FALSE; | ||
| 135 |         foreach ($schema as $schemaLine) { | ||
| 136 |             if (preg_match("/^INSERT INTO \`profile_option_dict\` VALUES/", $schemaLine)) { | ||
| 137 | $passedTheWindmill = TRUE; | ||
| 138 | continue; | ||
| 139 | } | ||
| 140 |             if ($passedTheWindmill) { | ||
| 141 |                 if (substr($schemaLine, 0, 1) == '(') { // a relevant line in schema | ||
| 142 | $this->profileOptionCount = $this->profileOptionCount + 1; | ||
| 143 |                 } else { // anything else, quit parsing | ||
| 144 | break; | ||
| 145 | } | ||
| 146 | } | ||
| 147 | } | ||
| 148 | } | ||
| 149 | |||
| 150 | /** | ||
| 151 | * The single test wrapper | ||
| 152 | * @param string $test the test name | ||
| 153 | * @return void | ||
| 154 | */ | ||
| 155 | public function runTest($test) | ||
| 156 |     { | ||
| 157 | $this->out[$test] = []; | ||
| 158 | $this->name = $test; | ||
| 159 | $m_name = 'test' . $test; | ||
| 160 | $this->test_result[$test] = 0; | ||
| 161 |         if (!method_exists($this, $m_name)) { | ||
| 162 | $this->storeTestResult(\core\common\Entity::L_ERROR, "Configuration error, no test configured for <strong>$test</strong>."); | ||
| 163 | return; | ||
| 164 | } | ||
| 165 | $this->$m_name(); | ||
| 166 | } | ||
| 167 | |||
| 168 | /** | ||
| 169 | * The multiple tests wrapper | ||
| 170 | * @param array $Tests the tests array is a simple string array, where each | ||
| 171 | * entry is a test name. The test names can also be | ||
| 172 | * given in the format "test=>subtest", which defines a | ||
| 173 | * conditional execution of the "subtest" if the "test" | ||
| 174 | * was run earlier and returned a success. | ||
| 175 | * @return void | ||
| 176 | */ | ||
| 177 | public function runTests($Tests) | ||
| 178 |     { | ||
| 179 |         foreach ($Tests as $testName) { | ||
| 180 | $matchArray = []; | ||
| 181 |             if (preg_match('/(.+)=>(.+)/', $testName, $matchArray)) { | ||
| 182 | $tst = $matchArray[1]; | ||
| 183 | $subtst = $matchArray[2]; | ||
| 184 |                 if ($this->test_result[$tst] < \core\common\Entity::L_ERROR) { | ||
| 185 | $this->runTest($subtst); | ||
| 186 | } | ||
| 187 |             } else { | ||
| 188 | $this->runTest($testName); | ||
| 189 | } | ||
| 190 |             if ($this->fatalError) { | ||
| 191 | return; | ||
| 192 | } | ||
| 193 | } | ||
| 194 | } | ||
| 195 | |||
| 196 | /** | ||
| 197 | * enumerates the tests which are defined | ||
| 198 | * | ||
| 199 | * @return array | ||
| 200 | */ | ||
| 201 | public function getTestNames() | ||
| 202 |     { | ||
| 203 | $T = get_class_methods($this); | ||
| 204 | $out = []; | ||
| 205 |         foreach ($T as $t) { | ||
| 206 |             if (preg_match('/^test(.*)$/', $t, $m)) { | ||
| 207 | $out[] = $m[1]; | ||
| 208 | } | ||
| 209 | } | ||
| 210 | return $out; | ||
| 211 | } | ||
| 212 | |||
| 213 | /** | ||
| 214 | * This array is used to return the test results. | ||
| 215 | * As the 'global' entry it returns the maximum return value | ||
| 216 | * from all tests. | ||
| 217 | * Individual tests results are teturned as separate entries | ||
| 218 | * indexed by test names; each value is an array passing "level" and "message" | ||
| 219 | * from each of the tests. | ||
| 220 | * $test_result is set by the testReturn method | ||
| 221 | * | ||
| 222 | * @var array $test_result | ||
| 223 | */ | ||
| 224 | public $test_result; | ||
| 225 | |||
| 226 | /** | ||
| 227 | * stores the result of a given test in standardised format | ||
| 228 | * | ||
| 229 | * @param int $level severity level of the result | ||
| 230 | * @param string $message verbal description of the result | ||
| 231 | * @return void | ||
| 232 | */ | ||
| 233 | private function storeTestResult($level, $message) | ||
| 234 |     { | ||
| 235 | $this->out[$this->name][] = ['level' => $level, 'message' => $message]; | ||
| 236 | $this->test_result[$this->name] = max($this->test_result[$this->name], $level); | ||
| 237 | $this->test_result['global'] = max($this->test_result['global'], $level); | ||
| 238 | } | ||
| 239 | |||
| 240 | /** | ||
| 241 | * finds out if a path name is configured as an absolute path or only implicit (e.g. is in $PATH) | ||
| 242 | * @param string $pathToCheck the path to check | ||
| 243 | * @return array | ||
| 244 | */ | ||
| 245 | private function getExecPath($pathToCheck) | ||
| 246 |     { | ||
| 247 | $the_path = ""; | ||
| 248 | $exec_is = "UNDEFINED"; | ||
| 249 | |||
| 250 |         foreach ([\config\Master::PATHS, \config\ConfAssistant::PATHS, \config\Diagnostics::PATHS] as $config) { | ||
| 251 |             if (!empty($config[$pathToCheck])) { | ||
| 252 | $the_path = $config[$pathToCheck]; | ||
| 253 |                 if (substr($the_path, 0, 1) == "/") { | ||
| 254 | $exec_is = "EXPLICIT"; | ||
| 255 |                 } else { | ||
| 256 | $exec_is = "IMPLICIT"; | ||
| 257 | } | ||
| 258 | return(['exec' => $the_path, 'exec_is' => $exec_is]); | ||
| 259 | } | ||
| 260 | } | ||
| 261 | return(['exec' => $the_path, 'exec_is' => $exec_is]); | ||
| 262 | } | ||
| 263 | |||
| 264 | /** | ||
| 265 | * Test for php version | ||
| 266 | * | ||
| 267 | * @return void | ||
| 268 | */ | ||
| 269 | private function testPhp() | ||
| 270 |     { | ||
| 271 |         if (version_compare(phpversion(), $this->needversionPHP, '>=')) { | ||
| 272 | $this->storeTestResult(\core\common\Entity::L_OK, "<strong>PHP</strong> is sufficiently recent. You are running " . phpversion() . "."); | ||
| 273 |         } else { | ||
| 274 | $this->storeTestResult(\core\common\Entity::L_ERROR, "<strong>PHP</strong> is too old. We need at least $this->needversionPHP, but you only have " . phpversion() . "."); | ||
| 275 | } | ||
| 276 | } | ||
| 277 | |||
| 278 | /** | ||
| 279 | * Check if configuration constants from the template are set | ||
| 280 | * in the corresponding config file | ||
| 281 | * | ||
| 282 | * @param string $config file basename | ||
| 283 | * @return array $failResults | ||
| 284 | */ | ||
| 285 | private function runConstantsTest($config) | ||
| 303 | } | ||
| 304 | |||
| 305 | /** | ||
| 306 | * Check if all required constants are set | ||
| 307 | */ | ||
| 308 |     private function testConfigConstants() { | ||
| 329 | } | ||
| 330 | } | ||
| 331 | /** | ||
| 332 | * set for cat_base_url setting | ||
| 333 | * | ||
| 334 | * @return void | ||
| 335 | */ | ||
| 336 | private function testCatBaseUrl() | ||
| 337 |     { | ||
| 338 | $rootUrl = substr(\config\Master::PATHS['cat_base_url'], -1) === '/' ? substr(\config\Master::PATHS['cat_base_url'], 0, -1) : \config\Master::PATHS['cat_base_url']; | ||
| 339 |         preg_match('/(^.*)\/admin\/112365365321.php/', $_SERVER['SCRIPT_NAME'], $m); | ||
| 340 |         if ($rootUrl === $m[1]) { | ||
| 341 | $this->storeTestResult(\core\common\Entity::L_OK, "<strong>cat_base_url</strong> set correctly"); | ||
| 342 |         } else { | ||
| 343 | $rootFromScript = $m[1] === '' ? '/' : $m[1]; | ||
| 344 | $this->storeTestResult(\core\common\Entity::L_ERROR, "<strong>cat_base_url</strong> is set to <strong>" . \config\Master::PATHS['cat_base_url'] . "</strong> and should be <strong>$rootFromScript</strong>"); | ||
| 345 | } | ||
| 346 | } | ||
| 347 | |||
| 348 | /** | ||
| 349 | * check whether the configured RADIUS hosts actually exist | ||
| 350 | * | ||
| 351 | * @return void | ||
| 352 | */ | ||
| 353 | private function testRADIUSProbes() | ||
| 366 | } | ||
| 367 | } | ||
| 368 | |||
| 369 | /** | ||
| 370 | * test for simpleSAMLphp | ||
| 371 | * | ||
| 372 | * @return void | ||
| 373 | */ | ||
| 374 | private function testSsp() | ||
| 375 |     { | ||
| 376 |         if (!is_file(\config\Master::AUTHENTICATION['ssp-path-to-autoloader'])) { | ||
| 377 | $this->storeTestResult(\core\common\Entity::L_ERROR, "<strong>simpleSAMLphp</strong> not found!"); | ||
| 378 |         } else { | ||
| 379 | include_once \config\Master::AUTHENTICATION['ssp-path-to-autoloader']; | ||
| 380 | $SSPconfig = \SimpleSAML\Configuration::getInstance(); | ||
| 381 |             $sspVersion = explode('.', $SSPconfig->getVersion()); | ||
| 382 |             if ( (int) $sspVersion[0] > $this->needversionSSP['major'] || ((int) $sspVersion[0] == $this->needversionSSP['major'] && (int) $sspVersion[1] >= $this->needversionSSP['minor'])) { | ||
| 383 |                 $this->storeTestResult(\core\common\Entity::L_OK, "<strong>simpleSAMLphp</strong> is sufficiently recent. You are running " . implode('.', $sspVersion)); | ||
| 384 |             } else { | ||
| 385 |                 $this->storeTestResult(\core\common\Entity::L_ERROR, "<strong>simpleSAMLphp</strong> is too old. We need at least " . implode('.', $this->needversionSSP)); | ||
| 386 | } | ||
| 387 | } | ||
| 388 | } | ||
| 389 | |||
| 390 | /** | ||
| 391 | * test for security setting | ||
| 392 | * | ||
| 393 | * @return void | ||
| 394 | */ | ||
| 395 | private function testSecurity() | ||
| 399 | } | ||
| 400 | } | ||
| 401 | |||
| 402 | /** | ||
| 403 | * test if zip is available | ||
| 404 | * | ||
| 405 | * @return void | ||
| 406 | */ | ||
| 407 | private function testZip() | ||
| 408 |     { | ||
| 409 |         $A = $this->getExecPath('zip'); | ||
| 410 |         if ($A['exec'] != "") { | ||
| 411 | $fullOutput = []; | ||
| 412 | $t = exec($A['exec'] . ' --version', $fullOutput); | ||
| 413 |             if ($A['exec_is'] == "EXPLICIT") { | ||
| 414 | $this->storeTestResult(\core\common\Entity::L_OK, "<strong>".$fullOutput[1]."</strong> was found and is configured explicitly in your config."); | ||
| 415 |             } else { | ||
| 416 | $this->storeTestResult(\core\common\Entity::L_WARN, "<strong>".$fullOutput[1]."</strong> was found, but is not configured with an absolute path in your config."); | ||
| 417 | } | ||
| 418 |         } else { | ||
| 419 | $this->storeTestResult(\core\common\Entity::L_ERROR, "<strong>zip</strong> was not found on your system!"); | ||
| 420 | } | ||
| 421 | } | ||
| 422 | |||
| 423 | /** | ||
| 424 | * test if eapol_test is available and recent enough | ||
| 425 | * | ||
| 426 | * @return void | ||
| 427 | */ | ||
| 428 | private function testEapoltest() | ||
| 429 |     { | ||
| 430 | exec(\config\Diagnostics::PATHS['eapol_test'], $out, $retval); | ||
| 431 |         if ($retval == 255) { | ||
| 432 |             $o = preg_grep('/-o<server cert/', $out); | ||
| 433 |             if (count($o) > 0) { | ||
| 434 | $this->storeTestResult(\core\common\Entity::L_OK, "<strong>eapol_test</strong> script found."); | ||
| 435 |             } else { | ||
| 436 | $this->storeTestResult(\core\common\Entity::L_ERROR, "<strong>eapol_test</strong> found, but is too old!"); | ||
| 437 | } | ||
| 438 |         } else { | ||
| 439 | $this->storeTestResult(\core\common\Entity::L_ERROR, "<strong>eapol_test</strong> not found!"); | ||
| 440 | } | ||
| 441 | } | ||
| 442 | |||
| 443 | /** | ||
| 444 | * test if logdir exists and is writable | ||
| 445 | * | ||
| 446 | * @return void | ||
| 447 | */ | ||
| 448 | private function testLogdir() | ||
| 454 | } | ||
| 455 | } | ||
| 456 | |||
| 457 | /** | ||
| 458 | * test for required PHP modules | ||
| 459 | * | ||
| 460 | * @return void | ||
| 461 | */ | ||
| 462 | private function testPhpModules() | ||
| 463 |     { | ||
| 464 |         if (function_exists('idn_to_ascii')) { | ||
| 465 | $this->storeTestResult(\core\common\Entity::L_OK, "PHP can handle internationalisation."); | ||
| 466 |         } else { | ||
| 467 | $this->storeTestResult(\core\common\Entity::L_ERROR, "PHP can <strong>NOT</strong> handle internationalisation (idn_to_ascii() from php7.0-intl)."); | ||
| 468 | } | ||
| 469 | |||
| 470 |         if (function_exists('gettext')) { | ||
| 471 | $this->storeTestResult(\core\common\Entity::L_OK, "PHP extension <strong>GNU Gettext</strong> is installed."); | ||
| 472 |         } else { | ||
| 473 | $this->storeTestResult(\core\common\Entity::L_ERROR, "PHP extension <strong>GNU Gettext</strong> not found!"); | ||
| 474 | } | ||
| 475 | |||
| 476 |         if (function_exists('openssl_sign')) { | ||
| 477 | $this->storeTestResult(\core\common\Entity::L_OK, "PHP extension <strong>OpenSSL</strong> is installed."); | ||
| 478 |         } else { | ||
| 479 | $this->storeTestResult(\core\common\Entity::L_ERROR, "PHP extension <strong>OpenSSL</strong> not found!"); | ||
| 480 | } | ||
| 481 | |||
| 482 |         if (class_exists('\\Gmagick')) { | ||
| 483 | $this->storeTestResult(\core\common\Entity::L_OK, "PHP extension <strong>Gmagic</strong> is installed."); | ||
| 484 |         } elseif (class_exists('\\Imagick')) { | ||
| 485 | $this->storeTestResult(\core\common\Entity::L_OK, "PHP extension <strong>Imagick</strong> is installed."); | ||
| 486 |         } else { | ||
| 487 | $this->storeTestResult(\core\common\Entity::L_ERROR, "PHP extension <strong>Gmagic</strong> nor <strong>Imagic</stromg> not found!"); | ||
| 488 | } | ||
| 489 |         if (function_exists('ImageCreate')) { | ||
| 490 | $this->storeTestResult(\core\common\Entity::L_OK, "PHP extension <strong>GD</strong> is installed."); | ||
| 491 |         } else { | ||
| 492 | $this->storeTestResult(\core\common\Entity::L_ERROR, "PHP extension <strong>GD</strong> not found!</a>."); | ||
| 493 | } | ||
| 494 | |||
| 495 |         if (function_exists('mysqli_connect')) { | ||
| 496 | $this->storeTestResult(\core\common\Entity::L_OK, "PHP extension <strong>MySQL</strong> is installed."); | ||
| 497 |         } else { | ||
| 498 | $this->storeTestResult(\core\common\Entity::L_ERROR, "PHP extension <strong>MySQL</strong> not found!"); | ||
| 499 | } | ||
| 500 | } | ||
| 501 | |||
| 502 | /** | ||
| 503 | * test if GeoIP is installed correctly | ||
| 504 | * | ||
| 505 | * @return void | ||
| 506 | */ | ||
| 507 | private function testGeoip() | ||
| 567 | } | ||
| 568 | } | ||
| 569 | |||
| 570 | /** | ||
| 571 | * test if openssl is available | ||
| 572 | * | ||
| 573 | * @return void | ||
| 574 | */ | ||
| 575 | private function testOpenssl() | ||
| 587 | } | ||
| 588 | } | ||
| 589 | |||
| 590 | /** | ||
| 591 | * test if sslscan is available | ||
| 592 | * | ||
| 593 | * @return void | ||
| 594 | */ | ||
| 595 | private function testSslscan() | ||
| 596 |     { | ||
| 597 |         $A = $this->getExecPath('sslscan');  | ||
| 598 |         if ($A['exec'] != "" && $A['exec_is'] == "EXPLICIT" && !file_exists($A['exec'])) {  | ||
| 599 | $this->storeTestResult(\core\common\Entity::L_ERROR, "<strong>sslscan</strong> is configured explicitly and was not found on your system!"); | ||
| 600 |         } else { | ||
| 601 | exec($A['exec'] . ' --version --xml=-', $output, $res); | ||
| 602 |             if ($res == 0) { | ||
| 603 | $xml = simplexml_load_string(implode($output)); | ||
| 604 | $resarray = json_decode(json_encode((array)$xml),true); | ||
| 605 | $t = 'sslscan'; | ||
| 606 |                 if (isset($resarray['@attributes']) and isset($resarray['@attributes']['version'])) { | ||
| 607 | $t = 'sslscan ' . $resarray['@attributes']['version']; | ||
| 608 | } | ||
| 609 |             } else { | ||
| 610 | $t = ''; | ||
| 611 | } | ||
| 612 |             if ($t != '') { | ||
| 613 |                 if ($A['exec_is'] == "EXPLICIT") { | ||
| 614 | $this->storeTestResult(\core\common\Entity::L_OK, "<strong>$t</strong> was found and is configured explicitly in your config."); | ||
| 615 |                 } else { | ||
| 616 | $this->storeTestResult(\core\common\Entity::L_WARN, "<strong>$t</strong> was found, but is not configured with an absolute path in your config."); | ||
| 617 | } | ||
| 618 |             } else { | ||
| 619 | $this->storeTestResult(\core\common\Entity::L_ERROR, "<strong>sslscan</strong> was not found on your system!"); | ||
| 620 | } | ||
| 621 | } | ||
| 622 | } | ||
| 623 | /** | ||
| 624 | * test if makensis is available | ||
| 625 | * | ||
| 626 | * @return void | ||
| 627 | */ | ||
| 628 | private function testMakensis() | ||
| 657 | } | ||
| 658 | } | ||
| 659 | |||
| 660 | /** | ||
| 661 | * test if all required NSIS modules are available | ||
| 662 | * | ||
| 663 | * @return void | ||
| 664 | */ | ||
| 665 | private function testNSISmodules() | ||
| 666 |     { | ||
| 667 |         $tmp_dir = \core\common\Entity::createTemporaryDirectory('installer', 0)['dir']; | ||
| 668 |         if (!chdir($tmp_dir)) { | ||
| 669 | $this->loggerInstance->debug(2, "Cannot chdir to $tmp_dir\n"); | ||
| 670 | $this->storeTestResult(\core\common\Entity::L_ERROR, "NSIS modules test - problem with temporary directory permissions, cannot continue"); | ||
| 671 | return; | ||
| 672 | } | ||
| 673 | $exe = 'tt.exe'; | ||
| 674 | $NSIS_Module_status = []; | ||
| 675 |         foreach ($this->NSISModules as $module) { | ||
| 676 | unset($out); | ||
| 677 | exec(\config\ConfAssistant::PATHS['makensis'] . " -V1 '-X!include $module' '-XOutFile $exe' '-XSection X' '-XSectionEnd'", $out, $retval); | ||
| 678 |             if ($retval > 0) { | ||
| 679 | $NSIS_Module_status[$module] = 0; | ||
| 680 |             } else { | ||
| 681 | $NSIS_Module_status[$module] = 1; | ||
| 682 | } | ||
| 683 | } | ||
| 684 |         if (is_file($exe)) { | ||
| 685 | unlink($exe); | ||
| 686 | } | ||
| 687 |         foreach ($NSIS_Module_status as $module => $status) { | ||
| 688 |             if ($status == 1) { | ||
| 689 | $this->storeTestResult(\core\common\Entity::L_OK, "NSIS module <strong>$module</strong> was found."); | ||
| 690 |             } else { | ||
| 691 | $this->storeTestResult(\core\common\Entity::L_ERROR, "NSIS module <strong>$module</strong> was not found or is not working correctly."); | ||
| 692 | } | ||
| 693 | } | ||
| 694 | } | ||
| 695 | |||
| 696 | /** | ||
| 697 | * test access to downloads directories | ||
| 698 | * | ||
| 699 | * @return void | ||
| 700 | */ | ||
| 701 | private function testDirectories() | ||
| 731 | } | ||
| 732 | } | ||
| 733 | |||
| 734 | /** | ||
| 735 | * test if all required locales are enabled | ||
| 736 | * | ||
| 737 | * @return void | ||
| 738 | */ | ||
| 739 | private function testLocales() | ||
| 740 |     { | ||
| 741 |         $locales = shell_exec("locale -a"); | ||
| 742 | $allthere = ""; | ||
| 743 |         foreach (\config\Master::LANGUAGES as $onelanguage) { | ||
| 744 |             if (preg_match("/" . $onelanguage['locale'] . "/", $locales) == 0) { | ||
| 745 | $allthere .= $onelanguage['locale'] . " "; | ||
| 746 | } | ||
| 747 | } | ||
| 748 |         if ($allthere == "") { | ||
| 749 | $this->storeTestResult(\core\common\Entity::L_OK, "All of your configured locales are available on your system."); | ||
| 750 |         } else { | ||
| 751 | $this->storeTestResult(\core\common\Entity::L_WARN, "Some of your configured locales (<strong>$allthere</strong>) are not installed and will not be displayed correctly!"); | ||
| 752 | } | ||
| 753 | } | ||
| 754 | |||
| 755 | const DEFAULTS = [ | ||
| 756 | ["SETTING" => \config\Master::APPEARANCE['from-mail'], | ||
| 757 | "DEFVALUE" => "[email protected]", | ||
| 758 | "COMPLAINTSTRING" => "APPEARANCE/from-mail ", | ||
| 759 | "REQUIRED" => FALSE,], | ||
| 760 | ["SETTING" => \config\Master::APPEARANCE['support-contact']['url'], | ||
| 761 | "DEFVALUE" => "[email protected]?body=Only%20English%20language%20please!", | ||
| 762 | "COMPLAINTSTRING" => "APPEARANCE/support-contact/url ", | ||
| 763 | "REQUIRED" => FALSE,], | ||
| 764 | ["SETTING" => \config\Master::APPEARANCE['support-contact']['display'], | ||
| 765 | "DEFVALUE" => "[email protected]", | ||
| 766 | "COMPLAINTSTRING" => "APPEARANCE/support-contact/display ", | ||
| 767 | "REQUIRED" => FALSE,], | ||
| 768 | ["SETTING" => \config\Master::APPEARANCE['support-contact']['developer-mail'], | ||
| 769 | "DEFVALUE" => "[email protected]", | ||
| 770 | "COMPLAINTSTRING" => "APPEARANCE/support-contact/mail ", | ||
| 771 | "REQUIRED" => FALSE,], | ||
| 772 | ["SETTING" => \config\Master::APPEARANCE['abuse-mail'], | ||
| 773 | "DEFVALUE" => "[email protected]", | ||
| 774 | "COMPLAINTSTRING" => "APPEARANCE/abuse-mail ", | ||
| 775 | "REQUIRED" => FALSE,], | ||
| 776 | ["SETTING" => \config\Master::APPEARANCE['MOTD'], | ||
| 777 | "DEFVALUE" => "Release Candidate. All bugs to be shot on sight!", | ||
| 778 | "COMPLAINTSTRING" => "APPEARANCE/MOTD ", | ||
| 779 | "REQUIRED" => FALSE,], | ||
| 780 | ["SETTING" => \config\Master::APPEARANCE['webcert_CRLDP'], | ||
| 781 | "DEFVALUE" => ['list', 'of', 'CRL', 'pointers'], | ||
| 782 | "COMPLAINTSTRING" => "APPEARANCE/webcert_CRLDP ", | ||
| 783 | "REQUIRED" => TRUE,], | ||
| 784 | ["SETTING" => \config\Master::APPEARANCE['webcert_OCSP'], | ||
| 785 | "DEFVALUE" => ['list', 'of', 'OCSP', 'pointers'], | ||
| 786 | "COMPLAINTSTRING" => "APPEARANCE/webcert_OCSP ", | ||
| 787 | "REQUIRED" => TRUE,], | ||
| 788 | ["SETTING" => \config\Master::DB['INST']['host'], | ||
| 789 | "DEFVALUE" => "db.host.example", | ||
| 790 | "COMPLAINTSTRING" => "DB/INST ", | ||
| 791 | "REQUIRED" => TRUE,], | ||
| 792 | ["SETTING" => \config\Master::DB['INST']['host'], | ||
| 793 | "DEFVALUE" => "db.host.example", | ||
| 794 | "COMPLAINTSTRING" => "DB/USER ", | ||
| 795 | "REQUIRED" => TRUE,], | ||
| 796 | ["SETTING" => \config\Master::DB['EXTERNAL']['host'], | ||
| 797 | "DEFVALUE" => "customerdb.otherhost.example", | ||
| 798 | "COMPLAINTSTRING" => "DB/EXTERNAL ", | ||
| 799 | "REQUIRED" => FALSE,], | ||
| 800 | ]; | ||
| 801 | |||
| 802 | /** | ||
| 803 | * test if defaults in the config have been replaced with some real values | ||
| 804 | * | ||
| 805 | * @return void | ||
| 806 | */ | ||
| 807 | private function testDefaults() | ||
| 808 |     { | ||
| 809 | $defaultvalues = ""; | ||
| 810 | $missingvalues = ""; | ||
| 811 | // all the checks for equality with a shipped default value | ||
| 812 |         foreach (SanityTests::DEFAULTS as $oneCheckItem) { | ||
| 813 |             if ($oneCheckItem['REQUIRED'] && !$oneCheckItem['SETTING']) { | ||
| 814 | $missingvalues .= $oneCheckItem["COMPLAINTSTRING"]; | ||
| 815 |             } elseif ($oneCheckItem['SETTING'] == $oneCheckItem["DEFVALUE"]) { | ||
| 816 | $defaultvalues .= $oneCheckItem["COMPLAINTSTRING"]; | ||
| 817 | } | ||
| 818 | } | ||
| 819 | // additional checks for defaults, which are not simple equality checks | ||
| 820 |         if (isset(\config\Diagnostics::RADIUSTESTS['UDP-hosts'][0]) && \config\Diagnostics::RADIUSTESTS['UDP-hosts'][0]['ip'] == "192.0.2.1") { | ||
| 821 | $defaultvalues .= "RADIUSTESTS/UDP-hosts "; | ||
| 822 | } | ||
| 823 | |||
| 824 | |||
| 825 |         if (isset(\config\Diagnostics::RADIUSTESTS['TLS-clientcerts'])) { | ||
| 826 |             foreach (\config\Diagnostics::RADIUSTESTS['TLS-clientcerts'] as $cadata) { | ||
| 827 |                 foreach ($cadata['certificates'] as $cert_files) { | ||
| 828 |                     if (file_get_contents(ROOT . "/config/cli-certs/" . $cert_files['public']) === FALSE) { | ||
| 829 | $defaultvalues .= "CERTIFICATE/" . $cert_files['public'] . " "; | ||
| 830 | } | ||
| 831 |                     if (file_get_contents(ROOT . "/config/cli-certs/" . $cert_files['private']) === FALSE) { | ||
| 832 | $defaultvalues .= "CERTIFICATE/" . $cert_files['private'] . " "; | ||
| 833 | } | ||
| 834 | } | ||
| 835 | } | ||
| 836 | } | ||
| 837 | |||
| 838 |         if ($defaultvalues != "") { | ||
| 839 | $this->storeTestResult(\core\common\Entity::L_WARN, "Your configuration in config/config.php contains unchanged default values or links to inexistent files: <strong>$defaultvalues</strong>!"); | ||
| 840 |         } else { | ||
| 841 | $this->storeTestResult(\core\common\Entity::L_OK, "Your configuration does not contain any unchanged defaults, which is a good sign."); | ||
| 842 | } | ||
| 843 | } | ||
| 844 | |||
| 845 | /** | ||
| 846 | * test access to databases | ||
| 847 | * | ||
| 848 | * @return void | ||
| 849 | */ | ||
| 850 | private function testDatabases() | ||
| 851 |     { | ||
| 852 | $databaseName1 = 'INST'; | ||
| 853 |         try { | ||
| 854 | $db1 = DBConnection::handle($databaseName1); | ||
| 855 |             $res1 = $db1->exec('SELECT * FROM profile_option_dict'); | ||
| 856 |             if ($res1->num_rows == $this->profileOptionCount) { | ||
| 857 | $this->storeTestResult(\core\common\Entity::L_OK, "The $databaseName1 database appears to be OK."); | ||
| 858 |             } else { | ||
| 859 | $this->storeTestResult(\core\common\Entity::L_ERROR, "The $databaseName1 database is reachable but probably not updated to this version of CAT."); | ||
| 860 | } | ||
| 861 |         } catch (Exception $e) { | ||
| 862 | $this->storeTestResult(\core\common\Entity::L_ERROR, "Connection to the $databaseName1 database failed"); | ||
| 863 | } | ||
| 864 | |||
| 865 | $databaseName2 = 'USER'; | ||
| 866 |         try { | ||
| 867 | $db2 = DBConnection::handle($databaseName2); | ||
| 868 |             if (\config\ConfAssistant::CONSORTIUM['name'] == "eduroam" && isset(\config\ConfAssistant::CONSORTIUM['deployment-voodoo']) && \config\ConfAssistant::CONSORTIUM['deployment-voodoo'] == "Operations Team") { // SW: APPROVED | ||
| 869 |                 $res2 = $db2->exec('desc view_admin'); | ||
| 870 |                 if ($res2->num_rows == $this->viewAdminCount) { | ||
| 871 | $this->storeTestResult(\core\common\Entity::L_OK, "The $databaseName2 database appears to be OK."); | ||
| 872 |                 } else { | ||
| 873 | $this->storeTestResult(\core\common\Entity::L_ERROR, "The $databaseName2 is reachable but there is something wrong with the schema"); | ||
| 874 | } | ||
| 875 |             } else { | ||
| 876 | $this->storeTestResult(\core\common\Entity::L_OK, "The $databaseName2 database appears to be OK."); | ||
| 877 | } | ||
| 878 |         } catch (Exception $e) { | ||
| 879 | $this->storeTestResult(\core\common\Entity::L_ERROR, "Connection to the $databaseName2 database failed"); | ||
| 880 | } | ||
| 881 | |||
| 882 | $databaseName3 = 'EXTERNAL'; | ||
| 883 |         if (!empty(\config\Master::DB[$databaseName3])) { | ||
| 884 |             try { | ||
| 885 | $db3 = DBConnection::handle($databaseName3); | ||
| 886 |                 if (\config\ConfAssistant::CONSORTIUM['name'] == "eduroam" && isset(\config\ConfAssistant::CONSORTIUM['deployment-voodoo']) && \config\ConfAssistant::CONSORTIUM['deployment-voodoo'] == "Operations Team") { // SW: APPROVED | ||
| 887 |                     $res3 = $db3->exec('desc view_admin'); | ||
| 888 |                     if ($res3->num_rows == $this->viewAdminCount) { | ||
| 889 | $this->storeTestResult(\core\common\Entity::L_OK, "The $databaseName3 database appears to be OK."); | ||
| 890 |                     } else { | ||
| 891 | $this->storeTestResult(\core\common\Entity::L_ERROR, "The $databaseName3 is reachable but there is something wrong with the schema"); | ||
| 892 | } | ||
| 893 |                 } else { | ||
| 894 | $this->storeTestResult(\core\common\Entity::L_OK, "The $databaseName3 database appears to be OK."); | ||
| 895 | } | ||
| 896 |             } catch (Exception $e) { | ||
| 897 | |||
| 898 | $this->storeTestResult(\core\common\Entity::L_ERROR, "Connection to the $databaseName3 database failed"); | ||
| 899 | } | ||
| 900 | } | ||
| 901 | } | ||
| 902 | |||
| 903 | /** | ||
| 904 | * test devices.php for the no_cache option | ||
| 905 | * | ||
| 906 | * @return void | ||
| 907 | */ | ||
| 908 | private function testDeviceCache() | ||
| 944 | } | ||
| 945 | } | ||
| 946 | |||
| 947 | /** | ||
| 948 | * test if mailer works | ||
| 949 | * | ||
| 950 | * @return void | ||
| 951 | */ | ||
| 952 | private function testMailer() | ||
| 986 | } | ||
| 987 | } | ||
| 988 | |||
| 989 | /** | ||
| 990 | * TODO test if RADIUS connections work | ||
| 991 | * | ||
| 992 | * @return void | ||
| 993 | */ | ||
| 994 | private function testUDPhosts() | ||
| 996 | // if(empty) | ||
| 997 | } | ||
| 998 | } | ||
| 999 | 
The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g.
excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths