* 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
57 lines
1.6 KiB
PHP
57 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\Export\Spreadsheet\CellFormatter;
|
|
|
|
use App\Export\Spreadsheet\CellFormatter\CellFormatterInterface;
|
|
use App\Export\Spreadsheet\CellFormatter\DateFormatter;
|
|
use PhpOffice\PhpSpreadsheet\Shared\Date;
|
|
use PhpOffice\PhpSpreadsheet\Spreadsheet;
|
|
use PhpOffice\PhpSpreadsheet\Style\NumberFormat;
|
|
use PhpOffice\PhpSpreadsheet\Style\Style;
|
|
use PHPUnit\Framework\Attributes\CoversClass;
|
|
|
|
#[CoversClass(DateFormatter::class)]
|
|
class DateFormatterTest extends AbstractFormatterTestCase
|
|
{
|
|
private $date;
|
|
|
|
protected function getFormatter(): CellFormatterInterface
|
|
{
|
|
return new DateFormatter();
|
|
}
|
|
|
|
protected function getActualValue(): \DateTimeInterface
|
|
{
|
|
return $this->date = new \DateTime();
|
|
}
|
|
|
|
protected function getExpectedValue(): bool|float
|
|
{
|
|
return Date::PHPToExcel($this->date);
|
|
}
|
|
|
|
public function testFormattedValueWithInvalidValue(): void
|
|
{
|
|
$this->expectException(\InvalidArgumentException::class);
|
|
$this->expectExceptionMessage('Unsupported value given, only DateTimeInterface is supported');
|
|
|
|
$spreadsheet = new Spreadsheet();
|
|
$worksheet = $spreadsheet->getActiveSheet();
|
|
|
|
$sut = $this->getFormatter();
|
|
$sut->setFormattedValue($worksheet, 1, 1, 'sdfsdf');
|
|
}
|
|
|
|
public function assertCellStyle(Style $style): void
|
|
{
|
|
self::assertEquals(NumberFormat::FORMAT_DATE_YYYYMMDD, $style->getNumberFormat()->getFormatCode());
|
|
}
|
|
}
|