Release 2.39 (#5604)

* prepare audit via annotation
* default calendar slot label distance of 1h
+ replace freestyle config with dropdown
* added missing return definition in callbacks
* refactor view name handling
* dispatch calendar view changes and push them into the URL to be able to reload the poage
* bump packages
* fix timezone issue in calendar sum calculation
* fixes #5618 resetRates()
* show expected daily hours in working-contract screen
This commit is contained in:
Kevin Papst
2025-08-30 11:41:17 +02:00
committed by GitHub
parent 4920ea5075
commit a4d658b821
85 changed files with 987 additions and 516 deletions

View File

@@ -0,0 +1,51 @@
<?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\Form\Type;
use App\Form\Type\CalendarViewType;
use PHPUnit\Framework\Attributes\CoversClass;
use PHPUnit\Framework\Attributes\DataProvider;
use Symfony\Component\Form\Extension\Core\Type\FormType;
use Symfony\Component\Form\Test\TypeTestCase;
#[CoversClass(CalendarViewType::class)]
class CalendarViewTypeTest extends TypeTestCase
{
/**
* @return iterable<int, array<int, string>>
*/
public static function getTestData(): iterable
{
yield ['month', 'month'];
yield ['week', 'week'];
yield ['day', 'day'];
}
#[DataProvider('getTestData')]
public function testSubmitValidData(string $value, string $expected): void
{
$data = ['view' => $value];
$model = new TypeTestModel(['view' => 'some']);
$form = $this->factory->createBuilder(FormType::class, $model);
$form->add('view', CalendarViewType::class);
$form = $form->getForm();
$expected = new TypeTestModel([
'view' => $expected
]);
dump($data);
$form->submit($data);
self::assertTrue($form->isSynchronized());
self::assertEquals($expected, $model);
}
}