mirror of
https://github.com/kevinpapst/kimai2.git
synced 2024-12-22 12:18:29 +00:00
75 lines
2.1 KiB
PHP
75 lines
2.1 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\API;
|
|
|
|
use App\Constants;
|
|
use App\Entity\User;
|
|
|
|
/**
|
|
* @group integration
|
|
*/
|
|
class StatusControllerTest extends APIControllerBaseTestCase
|
|
{
|
|
public function testIsSecurePing(): void
|
|
{
|
|
$this->assertUrlIsSecured('/api/ping');
|
|
}
|
|
|
|
public function testIsSecureVersion(): void
|
|
{
|
|
$this->assertUrlIsSecured('/api/version');
|
|
}
|
|
|
|
public function testIsSecurePlugins(): void
|
|
{
|
|
$this->assertUrlIsSecured('/api/plugins');
|
|
}
|
|
|
|
public function testPing(): void
|
|
{
|
|
$client = $this->getClientForAuthenticatedUser(User::ROLE_USER);
|
|
$this->assertAccessIsGranted($client, '/api/ping');
|
|
$result = json_decode($client->getResponse()->getContent(), true);
|
|
|
|
self::assertIsArray($result);
|
|
self::assertEquals(['message' => 'pong'], $result);
|
|
}
|
|
|
|
public function testVersion(): void
|
|
{
|
|
$client = $this->getClientForAuthenticatedUser(User::ROLE_USER);
|
|
$this->assertAccessIsGranted($client, '/api/version');
|
|
$result = json_decode($client->getResponse()->getContent(), true);
|
|
|
|
self::assertIsArray($result);
|
|
|
|
self::assertArrayHasKey('version', $result);
|
|
self::assertArrayHasKey('versionId', $result);
|
|
self::assertArrayHasKey('copyright', $result);
|
|
|
|
self::assertSame(Constants::VERSION, $result['version']);
|
|
self::assertSame(Constants::VERSION_ID, $result['versionId']);
|
|
self::assertEquals(
|
|
'Kimai ' . Constants::VERSION . ' by Kevin Papst.',
|
|
$result['copyright']
|
|
);
|
|
}
|
|
|
|
public function testPlugins(): void
|
|
{
|
|
$client = $this->getClientForAuthenticatedUser(User::ROLE_USER);
|
|
$this->assertAccessIsGranted($client, '/api/plugins');
|
|
$result = json_decode($client->getResponse()->getContent(), true);
|
|
|
|
self::assertIsArray($result);
|
|
// no asserts, as plugins are disabled in tests
|
|
}
|
|
}
|