0
0
Fork 0
mirror of https://github.com/kevinpapst/kimai2.git synced 2025-01-10 19:47:35 +00:00
kevinpapst_kimai2/tests/DependencyInjection/Compiler/WidgetCompilerPassTest.php
Kevin Papst ad645f5b58
Release 2.7.0 (#4506)
* added api URL for simpler integration
* allow to request password change upon next login
* make ModifiedAt timesheet independent
* improved plugin api
* replace kernel calls with AutoconfigureTag and TaggedIterator attributes
* new translation keys (e.g. for days)
* support setting min and max date on date and daterange pickers
2023-12-26 14:49:11 +01:00

53 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\DependencyInjection\Compiler;
use App\DependencyInjection\Compiler\WidgetCompilerPass;
use App\Widget\Type\ActiveTimesheets;
use App\Widget\Type\ActiveUsersMonth;
use App\Widget\WidgetInterface;
use App\Widget\WidgetService;
use PHPUnit\Framework\TestCase;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\DependencyInjection\Definition;
/**
* @covers \App\DependencyInjection\Compiler\WidgetCompilerPass
*/
class WidgetCompilerPassTest extends TestCase
{
private function getContainer(): ContainerBuilder
{
$container = new ContainerBuilder();
$definition = new Definition(WidgetService::class);
$container->setDefinition(WidgetService::class, $definition);
$widgets = [ActiveTimesheets::class, ActiveUsersMonth::class];
foreach ($widgets as $widget) {
$container->register($widget)->addTag(WidgetInterface::class);
}
return $container;
}
public function testCallsAreAdded(): void
{
$container = $this->getContainer();
$sut = new WidgetCompilerPass();
$sut->process($container);
$definition = $container->findDefinition(WidgetService::class);
$methods = $definition->getMethodCalls();
self::assertCount(2, $methods);
self::assertTrue($definition->hasMethodCall('registerWidget'));
}
}