mirror of
https://github.com/kevinpapst/kimai2.git
synced 2024-10-31 06:08:11 +00:00
56 lines
1.6 KiB
PHP
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();
|
|
}
|
|
}
|