added annotation based exporter (#1831)
* added user exporter * added project exporter * added customer exporter * added activity exporter
This commit is contained in:
69
tests/Export/Spreadsheet/SpreadsheetExporterTest.php
Normal file
69
tests/Export/Spreadsheet/SpreadsheetExporterTest.php
Normal file
@@ -0,0 +1,69 @@
|
||||
<?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;
|
||||
|
||||
use App\Entity\Project;
|
||||
use App\Export\Spreadsheet\CellFormatter\CellFormatterInterface;
|
||||
use App\Export\Spreadsheet\ColumnDefinition;
|
||||
use App\Export\Spreadsheet\SpreadsheetExporter;
|
||||
use PhpOffice\PhpSpreadsheet\Worksheet\Worksheet;
|
||||
use PHPUnit\Framework\TestCase;
|
||||
use Symfony\Contracts\Translation\TranslatorInterface;
|
||||
|
||||
/**
|
||||
* @covers \App\Export\Spreadsheet\SpreadsheetExporter
|
||||
*/
|
||||
class SpreadsheetExporterTest extends TestCase
|
||||
{
|
||||
public function testExport()
|
||||
{
|
||||
$sut = new SpreadsheetExporter($this->createMock(TranslatorInterface::class));
|
||||
$sut->registerCellFormatter('foo', new class() implements CellFormatterInterface {
|
||||
public function setFormattedValue(Worksheet $sheet, int $column, int $row, $value): void
|
||||
{
|
||||
$sheet->setCellValueByColumnAndRow($column, $row, '##' . $value . '##');
|
||||
}
|
||||
});
|
||||
$sut->registerCellFormatter('bar', new class() implements CellFormatterInterface {
|
||||
public function setFormattedValue(Worksheet $sheet, int $column, int $row, $value): void
|
||||
{
|
||||
$sheet->setCellValueByColumnAndRow($column, $row, '~' . $value . '~');
|
||||
}
|
||||
});
|
||||
|
||||
$project = new Project();
|
||||
$project->setName('test project');
|
||||
$project->setVisible(false);
|
||||
|
||||
$columns = [
|
||||
new ColumnDefinition('test1', 'foo', function (Project $project) {
|
||||
return $project->getName();
|
||||
}),
|
||||
new ColumnDefinition('test2', 'bar', function (Project $project) {
|
||||
return $project->getName();
|
||||
}),
|
||||
new ColumnDefinition('test3', 'boolean', function (Project $project) {
|
||||
return $project->isVisible();
|
||||
}),
|
||||
];
|
||||
|
||||
$entries = [
|
||||
$project
|
||||
];
|
||||
|
||||
$spreadsheet = $sut->export($columns, $entries);
|
||||
|
||||
$worksheet = $spreadsheet->getActiveSheet();
|
||||
|
||||
self::assertEquals('##test project##', $worksheet->getCellByColumnAndRow(1, 2, false)->getValue());
|
||||
self::assertEquals('~test project~', $worksheet->getCellByColumnAndRow(2, 2, false)->getValue());
|
||||
self::assertFalse($worksheet->getCellByColumnAndRow(3, 2, false)->getValue());
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user