added version command and api endpoint (#321)
This commit is contained in:
@@ -9,6 +9,7 @@
|
||||
|
||||
namespace App\Tests\API;
|
||||
|
||||
use App\Constants;
|
||||
use App\Entity\User;
|
||||
|
||||
/**
|
||||
@@ -31,4 +32,28 @@ class HealthcheckControllerTest extends APIControllerBaseTest
|
||||
$this->assertInternalType('array', $result);
|
||||
$this->assertEquals(['message' => 'pong'], $result);
|
||||
}
|
||||
|
||||
public function testVersion()
|
||||
{
|
||||
$client = $this->getClientForAuthenticatedUser(User::ROLE_USER);
|
||||
$this->assertAccessIsGranted($client, '/api/version');
|
||||
$result = json_decode($client->getResponse()->getContent(), true);
|
||||
|
||||
$this->assertInternalType('array', $result);
|
||||
|
||||
$this->assertArrayHasKey('version', $result);
|
||||
$this->assertArrayHasKey('candidate', $result);
|
||||
$this->assertArrayHasKey('semver', $result);
|
||||
$this->assertArrayHasKey('name', $result);
|
||||
$this->assertArrayHasKey('copyright', $result);
|
||||
|
||||
$this->assertSame(Constants::VERSION, $result['version']);
|
||||
$this->assertEquals(Constants::STATUS, $result['candidate']);
|
||||
$this->assertEquals(Constants::VERSION . '-' . Constants::STATUS, $result['semver']);
|
||||
$this->assertEquals(Constants::NAME, $result['name']);
|
||||
$this->assertEquals(
|
||||
'Kimai 2 - ' . Constants::VERSION . ' ' . Constants::STATUS . ' (' . Constants::NAME . ') by Kevin Papst and contributors.',
|
||||
$result['copyright']
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
67
tests/Command/VersionCommandTest.php
Normal file
67
tests/Command/VersionCommandTest.php
Normal file
@@ -0,0 +1,67 @@
|
||||
<?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;
|
||||
|
||||
/**
|
||||
* @coversDefaultClass \App\Command\VersionCommand
|
||||
* @group integration
|
||||
*/
|
||||
class VersionCommandTest extends KernelTestCase
|
||||
{
|
||||
/**
|
||||
* @var Application
|
||||
*/
|
||||
protected $application;
|
||||
|
||||
protected function setUp()
|
||||
{
|
||||
$kernel = self::bootKernel();
|
||||
$this->application = new Application($kernel);
|
||||
|
||||
$this->application->add(new VersionCommand());
|
||||
}
|
||||
|
||||
/**
|
||||
* @dataProvider getTestData
|
||||
*/
|
||||
public function testVersion(array $options, $result)
|
||||
{
|
||||
$commandTester = $this->getCommandTester($options);
|
||||
$output = $commandTester->getDisplay();
|
||||
$this->assertEquals($result . PHP_EOL, $output);
|
||||
}
|
||||
|
||||
public function getTestData()
|
||||
{
|
||||
return [
|
||||
[[], 'Kimai 2 - ' . Constants::VERSION . ' ' . Constants::STATUS . ' (' . Constants::NAME . ') by Kevin Papst and contributors.'],
|
||||
[['--name' => true], Constants::NAME],
|
||||
[['--candidate' => true], Constants::STATUS],
|
||||
[['--short' => true], Constants::VERSION],
|
||||
[['--semver' => true], Constants::VERSION . '-' . Constants::STATUS],
|
||||
];
|
||||
}
|
||||
|
||||
protected function getCommandTester(array $options = [])
|
||||
{
|
||||
$command = $this->application->find('kimai:version');
|
||||
$commandTester = new CommandTester($command);
|
||||
$inputs = array_merge(['command' => $command->getName()], $options);
|
||||
$commandTester->execute($inputs);
|
||||
|
||||
return $commandTester;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user