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/TwigContextCompilerPassTest.php
Kevin Papst 0e91dd886e
release 2.0 beta 2 (#3757)
* do not traverse into invoice template subdirectories (#3735)
* fix security open api definition
* fix currency can be null, removed fluent interface
* merged release 1.30.3
* allow to pre-fill timesheet metafields via URL
* fix api description
* added test accounts with simpler names and password
* upgrade to Symfony 6.2
* removed FrameworkExtraBundle (by Sensio) and replaced with new native SF annotations
* fixed symfony 6.2 deprecations
* fixed #3768
2023-01-18 14:47:48 +01:00

65 lines
2.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\DependencyInjection\Compiler;
use App\DependencyInjection\Compiler\TwigContextCompilerPass;
use App\Export\ServiceExport;
use App\Twig\Configuration;
use App\Twig\Context;
use PHPUnit\Framework\TestCase;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\DependencyInjection\Definition;
/**
* @covers \App\DependencyInjection\Compiler\TwigContextCompilerPass
*/
class TwigContextCompilerPassTest extends TestCase
{
private function getContainer(): ContainerBuilder
{
$container = new ContainerBuilder();
$container->setParameter('kimai.invoice.documents', []); // TODO we could test that as well
$container->setParameter('kimai.export.documents', []); // TODO we could test that as well
$definition = new Definition('twig');
$container->setDefinition('twig', $definition);
$definition = new Definition('twig.loader.native_filesystem');
$container->setDefinition('twig.loader.native_filesystem', $definition);
$definition = new Definition(ServiceExport::class);
$container->setDefinition(ServiceExport::class, $definition);
$definition = new Definition(Context::class);
$container->setDefinition(Context::class, $definition);
$definition = new Definition(Configuration::class);
$container->setDefinition(Configuration::class, $definition);
return $container;
}
public function testCallsAreAdded(): void
{
$container = $this->getContainer();
$sut = new TwigContextCompilerPass();
$sut->process($container);
$definition = $container->findDefinition('twig');
$methods = $definition->getMethodCalls();
self::assertCount(2, $methods);
self::assertTrue($definition->hasMethodCall('addGlobal'));
self::assertEquals('addGlobal', $methods[0][0]);
self::assertEquals('kimai_context', $methods[0][1][0]);
self::assertEquals('addGlobal', $methods[1][0]);
self::assertEquals('kimai_config', $methods[1][1][0]);
}
}