19 declare(strict_types=1);
33 '.phpunit.result.cache',
34 'captainhook.local.json',
36 'phpstan-baseline.neon',
38 '.php-cs-fixer.cache',
50 'unzip_test_file.zip',
78 protected function setUp(): void
80 $this->ALLOWED_ROOT_FOLDER_DIRS = array_merge(
81 self::ALLOWED_ROOT_FOLDER_DIRS,
82 explode(
",", (
string) getenv(
'ALLOWED_ROOT_FOLDER_DIRS'))
84 $this->ALLOWED_ROOT_FOLDER_FILES = array_merge(
85 self::ALLOWED_ROOT_FOLDER_FILES,
86 explode(
",", (
string) getenv(
'ALLOWED_ROOT_FOLDER_FILES'))
92 $app_root_folder = __DIR__ .
"/../../../../";
94 if (!is_file($app_root_folder .
'/ilias_version.php')) {
95 $this->fail(
'Could not determine ILIAS root folder');
98 return $app_root_folder;
101 public function testAppRootFolderOnlyContainsDefinedFiles():
void 104 $iter = new \CallbackFilterIterator(
107 return $file->isFile();
110 foreach ($iter as $file) {
112 $found_files[] = $file->getBasename();
116 $unexpected_files = array_diff($found_files, $this->ALLOWED_ROOT_FOLDER_FILES);
121 'The following files are not expected in the ILIAS root folder: %s',
122 implode(
', ', $unexpected_files)
127 public function testAppRootFolderOnlyContainsDefinedFolders():
void 129 $found_directories = [];
130 $iter = new \CallbackFilterIterator(
133 return $file->isDir() && !$file->isDot();
136 foreach ($iter as $file) {
138 $found_directories[] = $file->getBasename();
141 $unexpected_directories = array_diff($found_directories, $this->ALLOWED_ROOT_FOLDER_DIRS);
142 sort($unexpected_directories);
145 $unexpected_directories,
147 'The following directories are not expected in the ILIAS root folder: %s',
148 implode(
', ', $unexpected_directories)
const array ALLOWED_ROOT_FOLDER_FILES
sort()
description: > Example for rendering a Sort Glyph.
array $ALLOWED_ROOT_FOLDER_DIRS
array $ALLOWED_ROOT_FOLDER_FILES
const array ALLOWED_ROOT_FOLDER_DIRS