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 * @return void 67 */ 68 public function testReportRunsWithoutError(): void 69 { 70 $tree = $this->importTree('demo.ged'); 71 $module = new BirthDeathMarriageReportModule(); 72 $module->setName('bdm_report'); 73 74 $xml = 'resources/' . $module->xmlFilename(); 75 $vars = [ 76 'name' => ['id' => ''], 77 'bdmplace' => ['id' => ''], 78 'birthdate1' => ['id' => ''], 79 'birthdate2' => ['id' => ''], 80 'deathdate1' => ['id' => ''], 81 'deathdate2' => ['id' => ''], 82 'sortby' => ['id' => 'BIRT:DATE'], 83 'pageSize' => ['id' => 'A4'], 84 ]; 85 86 $report = new ReportParserSetup($xml); 87 self::assertIsArray($report->reportProperties()); 88 89 ob_start(); 90 new ReportParserGenerate($xml, new HtmlRenderer(), $vars, $tree); 91 $html = ob_get_clean(); 92 self::assertStringStartsWith('<', $html); 93 self::assertStringEndsWith('>', $html); 94 95 ob_start(); 96 new ReportParserGenerate($xml, new PdfRenderer(), $vars, $tree); 97 $pdf = ob_get_clean(); 98 self::assertStringStartsWith('%PDF', $pdf); 99 self::assertStringEndsWith("%%EOF\n", $pdf); 100 } 101} 102