‪TYPO3CMS  ‪main
AbstractCommandTest.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 
21 use TYPO3\TestingFramework\Core\Functional\FunctionalTestCase;
22 
23 abstract class ‪AbstractCommandTest extends FunctionalTestCase
24 {
25  protected function ‪executeConsoleCommand(string $cmdline, ...‪$args): array
26  {
27  $cmd = vsprintf(PHP_BINARY . ' ' . GeneralUtility::getFileAbsFileName('EXT:core/bin/typo3') . ' ' . $cmdline, array_map('escapeshellarg', ‪$args));
28 
29  ‪$output = '';
30 
31  $handle = popen($cmd, 'r');
32  while (!feof($handle)) {
33  ‪$output .= fgets($handle, 4096);
34  }
35  $status = pclose($handle);
36 
37  return [
38  'status' => $status,
39  'output' => ‪$output,
40  ];
41  }
42 }
‪TYPO3\CMS\Core\Tests\Functional\Command\AbstractCommandTest\executeConsoleCommand
‪executeConsoleCommand(string $cmdline,... $args)
Definition: AbstractCommandTest.php:25
‪TYPO3\CMS\Core\Tests\Functional\Command\AbstractCommandTest
Definition: AbstractCommandTest.php:24
‪$args
‪$args
Definition: validateRstFiles.php:258
‪$output
‪$output
Definition: annotationChecker.php:119
‪TYPO3\CMS\Core\Utility\GeneralUtility
Definition: GeneralUtility.php:51
‪TYPO3\CMS\Core\Tests\Functional\Command
Definition: AbstractCommandTest.php:18