0
0
mirror of https://github.com/kevinpapst/kimai2.git synced 2024-12-22 12:18:29 +00:00
kevinpapst_kimai2/tests/Command/VersionCommandTest.php
2024-12-22 01:25:30 +01:00

64 lines
1.7 KiB
PHP

<?php
/*
* This file is part of the Kimai time-tracking app.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace App\Tests\Command;
use App\Command\VersionCommand;
use App\Constants;
use Symfony\Bundle\FrameworkBundle\Console\Application;
use Symfony\Bundle\FrameworkBundle\Test\KernelTestCase;
use Symfony\Component\Console\Tester\CommandTester;
/**
* @covers \App\Command\VersionCommand
* @group integration
*/
class VersionCommandTest extends KernelTestCase
{
private Application $application;
protected function setUp(): void
{
parent::setUp();
$kernel = self::bootKernel();
$this->application = new Application($kernel);
$this->application->add(new VersionCommand());
}
/**
* @dataProvider getTestData
*/
public function testVersion(array $options, $result): void
{
$commandTester = $this->getCommandTester($options);
$output = $commandTester->getDisplay();
self::assertEquals($result . PHP_EOL, $output);
}
public static function getTestData(): array // @phpstan-ignore missingType.iterableValue
{
return [
[[], 'Kimai ' . Constants::VERSION . ' by Kevin Papst.'],
[['--short' => true], Constants::VERSION],
[['--number' => true], Constants::VERSION_ID],
];
}
protected function getCommandTester(array $options = []): CommandTester
{
$command = $this->application->find('kimai:version');
$commandTester = new CommandTester($command);
$inputs = array_merge(['command' => $command->getName()], $options);
$commandTester->execute($inputs);
return $commandTester;
}
}