1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150
|
<?php
declare(strict_types=1);
namespace PhpMyAdmin\Tests\Command;
use PhpMyAdmin\Command\TwigLintCommand;
use PhpMyAdmin\Tests\AbstractTestCase;
use Symfony\Component\Console\Command\Command;
use Twig\Error\SyntaxError;
use function array_multisort;
use function class_exists;
use function sort;
use const DIRECTORY_SEPARATOR;
use const SORT_NATURAL;
use const SORT_REGULAR;
use const TEST_PATH;
/**
* @covers \PhpMyAdmin\Command\TwigLintCommand
*/
#[\PHPUnit\Framework\Attributes\CoversClass(\PhpMyAdmin\Command\TwigLintCommand::class)]
class TwigLintCommandTest extends AbstractTestCase
{
/** @var TwigLintCommand */
private $command;
public function setUp(): void
{
global $cfg, $config;
if (! class_exists(Command::class)) {
$this->markTestSkipped('The Symfony Console is missing');
}
parent::setUp();
$cfg['environment'] = 'development';
$config = null;
$this->command = new TwigLintCommand();
}
public function testGetTemplateContents(): void
{
$contents = $this->callFunction($this->command, TwigLintCommand::class, 'getTemplateContents', [
TEST_PATH . 'test/classes/_data/file_listing/subfolder/one.ini',
]);
self::assertSame('key=value' . "\n", $contents);
}
public function testFindFiles(): void
{
$path = TEST_PATH . 'test/classes/_data/file_listing';
$filesFound = $this->callFunction($this->command, TwigLintCommand::class, 'findFiles', [$path]);
// Sort results to avoid file system test specific failures
sort($filesFound, SORT_NATURAL);
self::assertSame([
$path . DIRECTORY_SEPARATOR . 'one.txt',
$path . DIRECTORY_SEPARATOR . 'subfolder' . DIRECTORY_SEPARATOR . 'one.ini',
$path . DIRECTORY_SEPARATOR . 'subfolder' . DIRECTORY_SEPARATOR . 'zero.txt',
$path . DIRECTORY_SEPARATOR . 'two.md',
], $filesFound);
}
public function testGetFilesInfo(): void
{
$path = TEST_PATH . 'test/classes/_data/file_listing';
$filesInfos = $this->callFunction($this->command, TwigLintCommand::class, 'getFilesInfo', [$path]);
// Sort results to avoid file system test specific failures
sort($filesInfos, SORT_REGULAR);
self::assertSame([
[
'template' => '',
'file' => $path . DIRECTORY_SEPARATOR . 'one.txt',
'valid' => true,
],
[
'template' => '',
'file' => $path . DIRECTORY_SEPARATOR . 'two.md',
'valid' => true,
],
[
'template' => '0000' . "\n",
'file' => $path . DIRECTORY_SEPARATOR . 'subfolder' . DIRECTORY_SEPARATOR . 'zero.txt',
'valid' => true,
],
[
'template' => 'key=value' . "\n",
'file' => $path . DIRECTORY_SEPARATOR . 'subfolder' . DIRECTORY_SEPARATOR . 'one.ini',
'valid' => true,
],
], $filesInfos);
}
/**
* @requires PHPUnit < 10
*/
#[\PHPUnit\Framework\Attributes\RequiresPhpunit('< 10')]
public function testGetFilesInfoInvalidFile(): void
{
$twigLintCommand = new TwigLintCommand();
$path = __DIR__ . '/../_data/templates/lint_command';
$filesFound = $twigLintCommand->getFilesInfo($path);
self::assertCount(2, $filesFound);
array_multisort($filesFound);
self::assertSame('{{ file }}' . "\n", $filesFound[0]['template']);
self::assertSame($path . DIRECTORY_SEPARATOR . 'foo-valid.twig', $filesFound[0]['file']);
self::assertSame('{{ file }' . "\n", $filesFound[1]['template']);
self::assertSame($path . DIRECTORY_SEPARATOR . 'foo-invalid.twig', $filesFound[1]['file']);
self::assertArrayHasKey('exception', $filesFound[1]);
$exception = $filesFound[1]['exception'];
self::assertInstanceOf(SyntaxError::class, $exception);
self::assertSame(
'Unexpected "}" in "' . $path . DIRECTORY_SEPARATOR . 'foo-invalid.twig" at line 1.',
$exception->getMessage()
);
}
public function testGetContext(): void
{
$context = $this->callFunction($this->command, TwigLintCommand::class, 'getContext', [
'{{ file }',
0,
]);
self::assertSame([1 => '{{ file }'], $context);
$context = $this->callFunction($this->command, TwigLintCommand::class, 'getContext', [
'{{ file }',
3,
]);
self::assertSame([1 => '{{ file }'], $context);
$context = $this->callFunction($this->command, TwigLintCommand::class, 'getContext', [
'{{ file }',
5,
]);
self::assertSame([], $context);
}
}
|