mirror of
https://github.com/kevinpapst/kimai2.git
synced 2025-01-10 19:47:35 +00:00
63 lines
1.8 KiB
PHP
63 lines
1.8 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\Export\Timesheet;
|
|
|
|
use App\Activity\ActivityStatisticService;
|
|
use App\Export\Timesheet\HtmlRenderer;
|
|
use App\Project\ProjectStatisticService;
|
|
use Symfony\Component\EventDispatcher\EventDispatcher;
|
|
use Symfony\Component\HttpFoundation\Request;
|
|
use Symfony\Component\HttpFoundation\RequestStack;
|
|
use Twig\Environment;
|
|
|
|
/**
|
|
* @covers \App\Export\Timesheet\HtmlRenderer
|
|
* @group integration
|
|
*/
|
|
class HtmlRendererTest extends AbstractRendererTestCase
|
|
{
|
|
public function testConfiguration(): void
|
|
{
|
|
$sut = new HtmlRenderer(
|
|
$this->createMock(Environment::class),
|
|
new EventDispatcher(),
|
|
$this->createMock(ProjectStatisticService::class),
|
|
$this->createMock(ActivityStatisticService::class)
|
|
);
|
|
|
|
self::assertEquals('print', $sut->getId());
|
|
self::assertEquals('print', $sut->getTitle());
|
|
}
|
|
|
|
public function testRender(): void
|
|
{
|
|
$kernel = self::bootKernel();
|
|
/** @var Environment $twig */
|
|
$twig = self::getContainer()->get('twig');
|
|
/** @var RequestStack $stack */
|
|
$stack = self::getContainer()->get('request_stack');
|
|
$request = new Request();
|
|
$request->setLocale('en');
|
|
$stack->push($request);
|
|
|
|
$sut = new HtmlRenderer(
|
|
$twig,
|
|
new EventDispatcher(),
|
|
$this->createMock(ProjectStatisticService::class),
|
|
$this->createMock(ActivityStatisticService::class)
|
|
);
|
|
|
|
$response = $this->render($sut);
|
|
|
|
$content = $response->getContent();
|
|
|
|
self::assertStringContainsString('>1:50<', $content);
|
|
}
|
|
}
|