phpmyadmin/tests/unit/Command/WriteGitRevisionCommandTest.php
Maximilian Krög 8286d5c555
Indent heredocs
Signed-off-by: Maximilian Krög <maxi_kroeg@web.de>
2025-08-18 21:09:05 +02:00

122 lines
4.2 KiB
PHP

<?php
declare(strict_types=1);
namespace PhpMyAdmin\Tests\Command;
use PhpMyAdmin\Command\WriteGitRevisionCommand;
use PhpMyAdmin\Tests\AbstractTestCase;
use PHPUnit\Framework\Attributes\CoversClass;
use Symfony\Component\Console\Command\Command;
use function class_exists;
use function implode;
use function sprintf;
#[CoversClass(WriteGitRevisionCommand::class)]
class WriteGitRevisionCommandTest extends AbstractTestCase
{
public function testGetGeneratedClassValidVersion(): void
{
if (! class_exists(Command::class)) {
self::markTestSkipped('The Symfony Console is missing');
}
$command = $this->getMockBuilder(WriteGitRevisionCommand::class)
->onlyMethods(['gitCli'])
->getMock();
$commitBody = implode("\n", [
'tree 6857f00bb50360825c7df2c40ad21006c30beca7',
'parent 1634264816449dc42d17872174f3e8d73d4e36b2',
'author John Doe <john.doe@example.org> 1734427284',
'committer Hosted Weblate <hosted@weblate.org> 1734516032',
'',
'Translated using Weblate (Finnish)',
'',
'Currently translated at 61.4% (2105 of 3428 strings)',
'',
'[ci skip]',
'',
'Translation: phpMyAdmin/5.2',
'Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/5-2/fi/',
'Signed-off-by: John Doe <john.doe@example.org>',
'',
]);
$command->expects(self::exactly(4))
->method('gitCli')
->willReturnMap(
[
['describe --always', 'RELEASE_5_1_0-638-g1c018e2a6c'],
['log -1 --format="%H"', '1c018e2a6c6d518c4a2dde059e49f33af67c4636'],
['symbolic-ref -q HEAD', 'refs/heads/cli-rev-info'],
[
'show -s --pretty="tree %T%nparent %P%nauthor %an <%ae> %at'
. '%ncommitter %cn <%ce> %ct%n%n%B"',
$commitBody,
],
],
);
$output = $this->callFunction(
$command,
WriteGitRevisionCommand::class,
'getRevisionInfo',
[
'https://github.com/phpmyadmin/phpmyadmin/commit/%s',
'https://github.com/phpmyadmin/phpmyadmin/tree/%s',
],
);
$template = <<<'PHP'
<?php
declare(strict_types=1);
/**
* This file is generated by bin/console.
*
* @see \PhpMyAdmin\Command\WriteGitRevisionCommand
*/
return [
'revision' => '%s',
'revisionHash' => '%s',
'revisionUrl' => '%s',
'branch' => '%s',
'branchUrl' => '%s',
'message' => '%s',
'author' => [
'name' => '%s',
'email' => '%s',
'date' => '%s',
],
'committer' => [
'name' => '%s',
'email' => '%s',
'date' => '%s',
],
];
PHP;
self::assertSame(sprintf(
$template,
'RELEASE_5_1_0-638-g1c018e2a6c',
'1c018e2a6c6d518c4a2dde059e49f33af67c4636',
'https://github.com/phpmyadmin/phpmyadmin/commit/1c018e2a6c6d518c4a2dde059e49f33af67c4636',
'cli-rev-info',
'https://github.com/phpmyadmin/phpmyadmin/tree/cli-rev-info',
'Translated using Weblate (Finnish) '
. ' Currently translated at 61.4% (2105 of 3428 strings) '
. ' [ci skip] Translation: phpMyAdmin/5.2 '
. 'Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/5-2/fi/'
. ' Signed-off-by: John Doe <john.doe@example.org>', // Commit message
'John Doe', // Author name
'john.doe@example.org', // Author email
'2024-12-17 09:21:24 +0000', // Author date
'Hosted Weblate', // Committer name
'hosted@weblate.org', // Committer email
'2024-12-18 10:00:32 +0000', // Committer date
), $output);
}
}