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 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171
|
<?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 Twig\Source;
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
{
$command = $this->getMockBuilder(TwigLintCommand::class)
->onlyMethods(['getTemplateContents', 'findFiles'])
->getMock();
$command->expects($this->exactly(1))
->method('findFiles')
->willReturn(
[
'foo.twig',
'foo-invalid.twig',
]
);
$command->expects($this->exactly(2))
->method('getTemplateContents')
->willReturnOnConsecutiveCalls('{{ file }}', '{{ file }');
$filesFound = $this->callFunction($command, TwigLintCommand::class, 'getFilesInfo', [
TEST_PATH . 'test/classes/_data/file_listing',
]);
self::assertEquals([
[
'template' => '{{ file }}',
'file' => 'foo.twig',
'valid' => true,
],
[
'template' => '{{ file }',
'file' => 'foo-invalid.twig',
'valid' => false,
'line' => 1,
'exception' => new SyntaxError('Unexpected "}".', 1, new Source(
'{{ file }',
'foo-invalid.twig'
)),
],
], $filesFound);
}
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);
}
}
|