19 declare(strict_types=1);
34 '.phpunit.result.cache',
35 'captainhook.local.json',
37 'phpstan-baseline.neon',
70 'studip_referrer.php',
71 'unzip_test_file.zip',
112 self::ALLOWED_ROOT_FOLDER_DIRS,
113 explode(
",", (
string) getenv(
'ALLOWED_ROOT_FOLDER_DIRS'))
116 self::ALLOWED_ROOT_FOLDER_FILES,
117 explode(
",", (
string) getenv(
'ALLOWED_ROOT_FOLDER_FILES'))
123 $app_root_folder = getcwd();
125 for (
$i = 0;
$i < 20 && !is_file($app_root_folder .
'/index.php');
$i++) {
126 $app_root_folder .=
'/..';
129 if (!is_file($app_root_folder .
'/index.php')) {
130 $this->fail(
'Could not determine ILIAS root folder');
133 return $app_root_folder;
136 public function testAppRootFolderOnlyContainsDefinedFiles():
void 139 $iter =
new CallbackFilterIterator(
141 static function (DirectoryIterator $file):
bool {
142 return $file->isFile();
145 foreach ($iter as $file) {
147 $found_files[] = $file->getBasename();
156 'The following files are not expected in the ILIAS root folder: %s',
157 implode(
', ', $unexpected_files)
162 public function testAppRootFolderOnlyContainsDefinedFolders():
void 164 $found_directories = [];
165 $iter =
new CallbackFilterIterator(
167 static function (DirectoryIterator $file):
bool {
168 return $file->isDir() && !$file->isDot();
171 foreach ($iter as $file) {
173 $found_directories[] = $file->getBasename();
177 sort($unexpected_directories);
180 $unexpected_directories,
182 'The following directories are not expected in the ILIAS root folder: %s',
183 implode(
', ', $unexpected_directories)
const ALLOWED_ROOT_FOLDER_FILES
const ALLOWED_ROOT_FOLDER_DIRS
array $ALLOWED_ROOT_FOLDER_DIRS
array $ALLOWED_ROOT_FOLDER_FILES