1<?php 2/** 3 * webtrees: online genealogy 4 * Copyright (C) 2019 webtrees development team 5 * This program is free software: you can redistribute it and/or modify 6 * it under the terms of the GNU General Public License as published by 7 * the Free Software Foundation, either version 3 of the License, or 8 * (at your option) any later version. 9 * This program is distributed in the hope that it will be useful, 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 * GNU General Public License for more details. 13 * You should have received a copy of the GNU General Public License 14 * along with this program. If not, see <http://www.gnu.org/licenses/>. 15 */ 16declare(strict_types=1); 17 18namespace Fisharebest\Webtrees\Module; 19 20use Fisharebest\Webtrees\Report\ReportHtml; 21use Fisharebest\Webtrees\Report\ReportParserGenerate; 22use Fisharebest\Webtrees\Report\ReportPdf; 23use Fisharebest\Webtrees\Tree; 24 25/** 26 * Test harness for the class BirthDeathMarriageReportModule 27 * 28 * @covers \Fisharebest\Webtrees\Report\ReportHtml 29 * @covers \Fisharebest\Webtrees\Report\ReportParserGenerate 30 * @covers \Fisharebest\Webtrees\Report\ReportPdf 31 */ 32class BirthDeathMarriageReportModuleTest extends \Fisharebest\Webtrees\TestCase 33{ 34 protected static $uses_database = true; 35 36 /** 37 * @return void 38 */ 39 public function testReportRunsWithoutError(): void 40 { 41 $tree = $this->importTree('demo.ged'); 42 app()->instance(Tree::class, $tree); 43 $xml = WT_ROOT . 'resources/xml/reports/bdm_report.xml'; 44 $vars = [ 45 'name' => ['id' => ''], 46 'bdmplace' => ['id' => ''], 47 'birthdate1' => ['id' => ''], 48 'birthdate2' => ['id' => ''], 49 'deathdate1' => ['id' => ''], 50 'deathdate2' => ['id' => ''], 51 'sortby' => ['id' => 'BIRT:DATE'], 52 'pageSize' => ['id' => 'A4'], 53 ]; 54 55 ob_start(); 56 new ReportParserGenerate($xml, new ReportHtml(), $vars, $tree); 57 $html = ob_get_clean(); 58 $this->assertStringStartsWith('<', $html); 59 $this->assertStringEndsWith('>', $html); 60 61 ob_start(); 62 new ReportParserGenerate($xml, new ReportPdf(), $vars, $tree); 63 $pdf = ob_get_clean(); 64 $this->assertStringStartsWith('%PDF', $pdf); 65 $this->assertStringEndsWith("%%EOF\n", $pdf); 66 } 67} 68