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\TestCase; 27 28/** 29 * Test harness for the class BirthDeathMarriageReportModule 30 */ 31class BirthDeathMarriageReportModuleTest extends TestCase 32{ 33 protected static bool $uses_database = true; 34 35 /** 36 * @covers \Fisharebest\Webtrees\Module\ModuleReportTrait 37 * @covers \Fisharebest\Webtrees\Module\PedigreeReportModule 38 * @covers \Fisharebest\Webtrees\Report\AbstractRenderer 39 * @covers \Fisharebest\Webtrees\Report\HtmlRenderer 40 * @covers \Fisharebest\Webtrees\Report\PdfRenderer 41 * @covers \Fisharebest\Webtrees\Report\ReportBaseCell 42 * @covers \Fisharebest\Webtrees\Report\ReportBaseElement 43 * @covers \Fisharebest\Webtrees\Report\ReportBaseFootnote 44 * @covers \Fisharebest\Webtrees\Report\ReportBaseImage 45 * @covers \Fisharebest\Webtrees\Report\ReportBaseLine 46 * @covers \Fisharebest\Webtrees\Report\ReportBaseText 47 * @covers \Fisharebest\Webtrees\Report\ReportBaseTextbox 48 * @covers \Fisharebest\Webtrees\Report\ReportExpressionLanguageProvider 49 * @covers \Fisharebest\Webtrees\Report\ReportHtmlCell 50 * @covers \Fisharebest\Webtrees\Report\ReportHtmlFootnote 51 * @covers \Fisharebest\Webtrees\Report\ReportHtmlImage 52 * @covers \Fisharebest\Webtrees\Report\ReportHtmlLine 53 * @covers \Fisharebest\Webtrees\Report\ReportHtmlText 54 * @covers \Fisharebest\Webtrees\Report\ReportHtmlTextbox 55 * @covers \Fisharebest\Webtrees\Report\ReportParserBase 56 * @covers \Fisharebest\Webtrees\Report\ReportParserGenerate 57 * @covers \Fisharebest\Webtrees\Report\ReportParserSetup 58 * @covers \Fisharebest\Webtrees\Report\ReportPdfCell 59 * @covers \Fisharebest\Webtrees\Report\ReportPdfFootnote 60 * @covers \Fisharebest\Webtrees\Report\ReportPdfImage 61 * @covers \Fisharebest\Webtrees\Report\ReportPdfLine 62 * @covers \Fisharebest\Webtrees\Report\ReportPdfText 63 * @covers \Fisharebest\Webtrees\Report\ReportPdfTextBox 64 * @covers \Fisharebest\Webtrees\Report\TcpdfWrapper 65 */ 66 public function testReportRunsWithoutError(): void 67 { 68 $tree = $this->importTree('demo.ged'); 69 $module = new BirthDeathMarriageReportModule(); 70 $module->setName('bdm_report'); 71 72 $xml = 'resources/' . $module->xmlFilename(); 73 $vars = [ 74 'name' => ['id' => ''], 75 'bdmplace' => ['id' => ''], 76 'birthdate1' => ['id' => ''], 77 'birthdate2' => ['id' => ''], 78 'deathdate1' => ['id' => ''], 79 'deathdate2' => ['id' => ''], 80 'sortby' => ['id' => 'BIRT:DATE'], 81 'pageSize' => ['id' => 'A4'], 82 ]; 83 84 $report = new ReportParserSetup($xml); 85 self::assertNotEmpty($report->reportProperties()); 86 87 ob_start(); 88 new ReportParserGenerate($xml, new HtmlRenderer(), $vars, $tree); 89 $html = ob_get_clean(); 90 self::assertStringStartsWith('<', $html); 91 self::assertStringEndsWith('>', $html); 92 93 ob_start(); 94 new ReportParserGenerate($xml, new PdfRenderer(), $vars, $tree); 95 $pdf = ob_get_clean(); 96 self::assertStringStartsWith('%PDF', $pdf); 97 self::assertStringEndsWith("%%EOF\n", $pdf); 98 } 99} 100