xref: /webtrees/tests/app/Module/AhnentafelReportModuleTest.php (revision c52e633348a2ee522a9a5d3b1edd388d659ad39e)
13763c3f2SGreg Roach<?php
23763c3f2SGreg Roach/**
33763c3f2SGreg Roach * webtrees: online genealogy
48fcd0d32SGreg Roach * Copyright (C) 2019 webtrees development team
53763c3f2SGreg Roach * This program is free software: you can redistribute it and/or modify
63763c3f2SGreg Roach * it under the terms of the GNU General Public License as published by
73763c3f2SGreg Roach * the Free Software Foundation, either version 3 of the License, or
83763c3f2SGreg Roach * (at your option) any later version.
93763c3f2SGreg Roach * This program is distributed in the hope that it will be useful,
103763c3f2SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of
113763c3f2SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
123763c3f2SGreg Roach * GNU General Public License for more details.
133763c3f2SGreg Roach * You should have received a copy of the GNU General Public License
143763c3f2SGreg Roach * along with this program. If not, see <http://www.gnu.org/licenses/>.
153763c3f2SGreg Roach */
16e7f56f2aSGreg Roachdeclare(strict_types=1);
17e7f56f2aSGreg Roach
1884e2cf4eSGreg Roachnamespace Fisharebest\Webtrees\Module;
193763c3f2SGreg Roach
209a3accd7SGreg Roachuse Fisharebest\Webtrees\Report\ReportHtml;
219a3accd7SGreg Roachuse Fisharebest\Webtrees\Report\ReportParserGenerate;
229a3accd7SGreg Roachuse Fisharebest\Webtrees\Report\ReportPdf;
239a3accd7SGreg Roachuse Fisharebest\Webtrees\Tree;
249a3accd7SGreg Roach
253763c3f2SGreg Roach/**
263763c3f2SGreg Roach * Test harness for the class AhnentafelReportModule
279a3accd7SGreg Roach *
289a3accd7SGreg Roach * @covers \Fisharebest\Webtrees\Report\ReportHtml
29*c52e6333SGreg Roach * @covers \Fisharebest\Webtrees\Report\ReportParserGenerate
30*c52e6333SGreg Roach * @covers \Fisharebest\Webtrees\Report\ReportPdf
313763c3f2SGreg Roach */
3284e2cf4eSGreg Roachclass AhnentafelReportModuleTest extends \Fisharebest\Webtrees\TestCase
33c1010edaSGreg Roach{
349a3accd7SGreg Roach    protected static $uses_database = true;
359a3accd7SGreg Roach
363763c3f2SGreg Roach    /**
3752348eb8SGreg Roach     * @return void
383763c3f2SGreg Roach     */
399a3accd7SGreg Roach    public function testReportRunsWithoutError(): void
40c1010edaSGreg Roach    {
419a3accd7SGreg Roach        $tree = $this->importTree('demo.ged');
429a3accd7SGreg Roach        app()->instance(Tree::class, $tree);
439a3accd7SGreg Roach        $xml  = WT_ROOT . 'resources/xml/reports/ahnentafel_report.xml';
449a3accd7SGreg Roach        $vars = [
459a3accd7SGreg Roach            'pid'      => ['id' => 'i1'],
469a3accd7SGreg Roach            'maxgen'   => ['id' => '3'],
479a3accd7SGreg Roach            'sources'  => ['id' => 'on'],
489a3accd7SGreg Roach            'pageSize' => ['id' => 'A4'],
499a3accd7SGreg Roach            'notes'    => ['id' => 'on'],
509a3accd7SGreg Roach            'occu'     => ['id' => 'on'],
519a3accd7SGreg Roach            'resi'     => ['id' => 'on'],
529a3accd7SGreg Roach            'children' => ['id' => 'on'],
539a3accd7SGreg Roach        ];
549a3accd7SGreg Roach
559a3accd7SGreg Roach        ob_start();
569a3accd7SGreg Roach        new ReportParserGenerate($xml, new ReportHtml(), $vars, $tree);
579a3accd7SGreg Roach        $html = ob_get_clean();
589a3accd7SGreg Roach        $this->assertStringStartsWith('<', $html);
599a3accd7SGreg Roach        $this->assertStringEndsWith('>', $html);
609a3accd7SGreg Roach
619a3accd7SGreg Roach        ob_start();
629a3accd7SGreg Roach        new ReportParserGenerate($xml, new ReportPdf(), $vars, $tree);
639a3accd7SGreg Roach        $pdf = ob_get_clean();
649a3accd7SGreg Roach        $this->assertStringStartsWith('%PDF', $pdf);
659a3accd7SGreg Roach        $this->assertStringEndsWith("%%EOF\n", $pdf);
663763c3f2SGreg Roach    }
673763c3f2SGreg Roach}
68