1<?php 2 3/** 4 * webtrees: online genealogy 5 * Copyright (C) 2023 webtrees development team 6 * This program is free software: you can redistribute it and/or modify 7 * it under the terms of the GNU General Public License as published by 8 * the Free Software Foundation, either version 3 of the License, or 9 * (at your option) any later version. 10 * This program is distributed in the hope that it will be useful, 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 * GNU General Public License for more details. 14 * You should have received a copy of the GNU General Public License 15 * along with this program. If not, see <https://www.gnu.org/licenses/>. 16 */ 17 18declare(strict_types=1); 19 20namespace Fisharebest\Webtrees\Module; 21 22use Fisharebest\Webtrees\Report\HtmlRenderer; 23use Fisharebest\Webtrees\Report\PdfRenderer; 24use Fisharebest\Webtrees\Report\ReportParserGenerate; 25use Fisharebest\Webtrees\Report\ReportParserSetup; 26use Fisharebest\Webtrees\Services\ModuleService; 27use Fisharebest\Webtrees\TestCase; 28 29/** 30 * Test harness for the class BirthDeathMarriageReportModule 31 */ 32class BirthDeathMarriageReportModuleTest extends TestCase 33{ 34 protected static bool $uses_database = true; 35 36 /** 37 * @covers \Fisharebest\Webtrees\Module\ModuleReportTrait 38 * @covers \Fisharebest\Webtrees\Module\PedigreeReportModule 39 * @covers \Fisharebest\Webtrees\Report\AbstractRenderer 40 * @covers \Fisharebest\Webtrees\Report\HtmlRenderer 41 * @covers \Fisharebest\Webtrees\Report\PdfRenderer 42 * @covers \Fisharebest\Webtrees\Report\ReportBaseCell 43 * @covers \Fisharebest\Webtrees\Report\ReportBaseElement 44 * @covers \Fisharebest\Webtrees\Report\ReportBaseFootnote 45 * @covers \Fisharebest\Webtrees\Report\ReportBaseImage 46 * @covers \Fisharebest\Webtrees\Report\ReportBaseLine 47 * @covers \Fisharebest\Webtrees\Report\ReportBaseText 48 * @covers \Fisharebest\Webtrees\Report\ReportBaseTextbox 49 * @covers \Fisharebest\Webtrees\Report\ReportExpressionLanguageProvider 50 * @covers \Fisharebest\Webtrees\Report\ReportHtmlCell 51 * @covers \Fisharebest\Webtrees\Report\ReportHtmlFootnote 52 * @covers \Fisharebest\Webtrees\Report\ReportHtmlImage 53 * @covers \Fisharebest\Webtrees\Report\ReportHtmlLine 54 * @covers \Fisharebest\Webtrees\Report\ReportHtmlText 55 * @covers \Fisharebest\Webtrees\Report\ReportHtmlTextbox 56 * @covers \Fisharebest\Webtrees\Report\ReportParserBase 57 * @covers \Fisharebest\Webtrees\Report\ReportParserGenerate 58 * @covers \Fisharebest\Webtrees\Report\ReportParserSetup 59 * @covers \Fisharebest\Webtrees\Report\ReportPdfCell 60 * @covers \Fisharebest\Webtrees\Report\ReportPdfFootnote 61 * @covers \Fisharebest\Webtrees\Report\ReportPdfImage 62 * @covers \Fisharebest\Webtrees\Report\ReportPdfLine 63 * @covers \Fisharebest\Webtrees\Report\ReportPdfText 64 * @covers \Fisharebest\Webtrees\Report\ReportPdfTextBox 65 * @covers \Fisharebest\Webtrees\Report\TcpdfWrapper 66 * 67 * @return void 68 */ 69 public function testReportRunsWithoutError(): void 70 { 71 $module_service = new ModuleService(); 72 73 $tree = $this->importTree('demo.ged'); 74 $module = $module_service->findByInterface(BirthDeathMarriageReportModule::class)->first(); 75 $xml = 'resources/' . $module->xmlFilename(); 76 $vars = [ 77 'name' => ['id' => ''], 78 'bdmplace' => ['id' => ''], 79 'birthdate1' => ['id' => ''], 80 'birthdate2' => ['id' => ''], 81 'deathdate1' => ['id' => ''], 82 'deathdate2' => ['id' => ''], 83 'sortby' => ['id' => 'BIRT:DATE'], 84 'pageSize' => ['id' => 'A4'], 85 ]; 86 87 $report = new ReportParserSetup($xml); 88 self::assertIsArray($report->reportProperties()); 89 90 ob_start(); 91 new ReportParserGenerate($xml, new HtmlRenderer(), $vars, $tree); 92 $html = ob_get_clean(); 93 self::assertStringStartsWith('<', $html); 94 self::assertStringEndsWith('>', $html); 95 96 ob_start(); 97 new ReportParserGenerate($xml, new PdfRenderer(), $vars, $tree); 98 $pdf = ob_get_clean(); 99 self::assertStringStartsWith('%PDF', $pdf); 100 self::assertStringEndsWith("%%EOF\n", $pdf); 101 } 102} 103