isDir()){ //Check Modules directory for allowed folders //TODO: Check folder in correct orders, e.g. if Validators inside Standards folder $dirs[] = $path->__toString(); if(in_array($path->getFileName(),$modules)){ $current_directory = $path->getFileName(); $modules_dir_count[$path->getFileName()]=['count'=>0,'standards_count'=>0]; }else if(in_array($path->getFileName(),$allowed_folders)){ $modules_dir_count[$current_directory]['count'] += 1; }else if(in_array($path->getFileName(),$allowed_standards_folders)){ $modules_dir_count[$current_directory]['standards_count'] += 1; } else if(!in_array($path->getFileName(),$ignore_folders)){ $this->non_standard_folders[]= $path->__toString(); } }else{ $files[] = realpath($path->__toString()); //TODO: Read files (.php) & check for class name format & if possible variable name format $file = $path->openFile('r'); if(!isset($this->file_check[$path->getFileName()]['files'])){ $this->file_check[$path->getFileName()]=['lines'=>0,'methods_count'=>0]; } $file->seek(PHP_INT_MAX); $linesTotal = $file->key(); $this->file_check[$path->getFileName()]['lines'] = $linesTotal; //Note: Use reflection to get class info : https://www.php.net/manual/en/class.reflectionclass.php $namespace = str_replace($fullPath."/","",$file->getPath()); $namespace = str_replace("/","\\",$namespace); $class_name = "App\Classes\Modules\\".$namespace."\\".$file->getBasename('.php'); $class = new \ReflectionClass($class_name); $class_methods = $class->getMethods(); $this->file_check[$path->getFileName()]['methods_count'] = count($class_methods); } } //var_dump($files, $dirs); //var_dump($this->file_check); //var_dump($modules_dir_count,$non_standard_folders); //die('debug'); } public function checkCodeStandards() { foreach ($this->file_check as $filename => $file) { $this->results['code line'] = $this->assertLessThanOrEqual($this::CODE_LINE_COUNT, $file['lines'],'Please check '.$filename.', the code line is '.$file['lines']); $this->results['code method'] = $this->assertLessThanOrEqual($this::METHOD_COUNT,$file['methods_count']); } } public function checkFolderStandards() { $this->results['folder check'] = $this->assertCount(0,$this->non_standard_folders ,"Found non standard folders"); } public function testQualityCheck(){ $this->checkCodeStandards(); $this->checkFolderStandards(); print_r($this->results); } }