mirror of
https://github.com/kevinpapst/kimai2.git
synced 2025-05-06 02:00:08 +00:00
73 lines
2 KiB
PHP
73 lines
2 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 APIControllerBaseTest
|
|
{
|
|
public function testIsSecurePing()
|
|
{
|
|
$this->assertUrlIsSecured('/api/ping');
|
|
}
|
|
|
|
public function testIsSecureVersion()
|
|
{
|
|
$this->assertUrlIsSecured('/api/version');
|
|
}
|
|
|
|
public function testIsSecurePlugins()
|
|
{
|
|
$this->assertUrlIsSecured('/api/plugins');
|
|
}
|
|
|
|
public function testPing()
|
|
{
|
|
$client = $this->getClientForAuthenticatedUser(User::ROLE_USER);
|
|
$this->assertAccessIsGranted($client, '/api/ping');
|
|
$result = json_decode($client->getResponse()->getContent(), true);
|
|
|
|
$this->assertIsArray($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->assertIsArray($result);
|
|
|
|
$this->assertArrayHasKey('version', $result);
|
|
$this->assertArrayHasKey('versionId', $result);
|
|
$this->assertArrayHasKey('copyright', $result);
|
|
|
|
$this->assertSame(Constants::VERSION, $result['version']);
|
|
$this->assertSame(Constants::VERSION_ID, $result['versionId']);
|
|
$this->assertEquals(
|
|
'Kimai ' . Constants::VERSION . ' by Kevin Papst.',
|
|
$result['copyright']
|
|
);
|
|
}
|
|
|
|
public function testPlugins()
|
|
{
|
|
$client = $this->getClientForAuthenticatedUser(User::ROLE_USER);
|
|
$this->assertAccessIsGranted($client, '/api/plugins');
|
|
$result = json_decode($client->getResponse()->getContent(), true);
|
|
|
|
$this->assertIsArray($result);
|
|
}
|
|
}
|