0
0
mirror of https://github.com/kevinpapst/kimai2.git synced 2024-10-31 06:08:11 +00:00
kevinpapst_kimai2/tests/Timesheet/TrackingModeServiceTest.php
2024-02-07 23:47:25 +01:00

56 lines
1.6 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\Timesheet;
use App\Tests\Mocks\TrackingModeServiceFactory;
use App\Timesheet\TrackingMode\PunchInOutMode;
use PHPUnit\Framework\TestCase;
use Symfony\Component\DependencyInjection\Exception\ServiceNotFoundException;
/**
* @covers \App\Timesheet\TrackingModeService
*/
class TrackingModeServiceTest extends TestCase
{
public function testDefaultTrackingModesAreRegistered(): void
{
$sut = (new TrackingModeServiceFactory($this))->create('punch');
$modes = $sut->getModes();
self::assertGreaterThanOrEqual(4, $modes);
$ids = [];
foreach ($modes as $mode) {
$ids[] = $mode->getId();
}
self::assertContains('default', $ids);
self::assertContains('punch', $ids);
self::assertContains('duration_fixed_begin', $ids);
}
public function testGetActiveMode(): void
{
$sut = (new TrackingModeServiceFactory($this))->create('punch');
self::assertInstanceOf(PunchInOutMode::class, $sut->getActiveMode());
}
public function testGetActiveModeThrowsExceptionOnlyInvalidMode(): void
{
$this->expectException(ServiceNotFoundException::class);
$this->expectExceptionMessage('You have requested a non-existent service "xxxxxx"');
$sut = (new TrackingModeServiceFactory($this))->create('xxxxxx');
$sut->getActiveMode();
}
}