‪TYPO3CMS  ‪main
FolderStructureTestCase.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
5 /*
6  * This file is part of the TYPO3 CMS project.
7  *
8  * It is free software; you can redistribute it and/or modify it under
9  * the terms of the GNU General Public License, either version 2
10  * of the License, or any later version.
11  *
12  * For the full copyright and license information, please read the
13  * LICENSE.txt file that was distributed with this source code.
14  *
15  * The TYPO3 project - inspiring people to share!
16  */
17 
19 
23 use TYPO3\TestingFramework\Core\Unit\UnitTestCase;
24 
28 abstract class ‪FolderStructureTestCase extends UnitTestCase
29 {
36  protected function ‪getTestDirectory($prefix = 'root_'): string
37  {
38  $testRoot = ‪Environment::getVarPath() . '/tests/';
39  $this->testFilesToDelete[] = $testRoot;
40  $path = $testRoot . ‪StringUtility::getUniqueId($prefix);
42  chmod($testRoot, 02777);
43  return $path;
44  }
45 
51  protected function ‪getTestFilePath($prefix = 'file_'): string
52  {
53  return $this->‪getTestDirectory() . '/' . ‪StringUtility::getUniqueId($prefix);
54  }
55 }
‪TYPO3\CMS\Install\Tests\Unit\FolderStructureTestCase\getTestFilePath
‪non empty string getTestFilePath($prefix='file_')
Definition: FolderStructureTestCase.php:51
‪TYPO3\CMS\Install\Tests\Unit\FolderStructureTestCase\getTestDirectory
‪getTestDirectory($prefix='root_')
Definition: FolderStructureTestCase.php:36
‪TYPO3\CMS\Core\Core\Environment\getVarPath
‪static getVarPath()
Definition: Environment.php:197
‪TYPO3\CMS\Core\Utility\GeneralUtility\mkdir_deep
‪static mkdir_deep($directory)
Definition: GeneralUtility.php:1753
‪TYPO3\CMS\Core\Core\Environment
Definition: Environment.php:41
‪TYPO3\CMS\Install\Tests\Unit
‪TYPO3\CMS\Install\Tests\Unit\FolderStructureTestCase
Definition: FolderStructureTestCase.php:29
‪TYPO3\CMS\Core\Utility\GeneralUtility
Definition: GeneralUtility.php:51
‪TYPO3\CMS\Core\Utility\StringUtility
Definition: StringUtility.php:24
‪TYPO3\CMS\Core\Utility\StringUtility\getUniqueId
‪static getUniqueId(string $prefix='')
Definition: StringUtility.php:29