xref: /webtrees/tests/app/Module/DeathReportModuleTest.php (revision 0acf1b4bae16cbf21a23b10e22e968d2efdf4aea)
13763c3f2SGreg Roach<?php
23976b470SGreg Roach
33763c3f2SGreg Roach/**
43763c3f2SGreg Roach * webtrees: online genealogy
5d11be702SGreg Roach * Copyright (C) 2023 webtrees development team
63763c3f2SGreg Roach * This program is free software: you can redistribute it and/or modify
73763c3f2SGreg Roach * it under the terms of the GNU General Public License as published by
83763c3f2SGreg Roach * the Free Software Foundation, either version 3 of the License, or
93763c3f2SGreg Roach * (at your option) any later version.
103763c3f2SGreg Roach * This program is distributed in the hope that it will be useful,
113763c3f2SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of
123763c3f2SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
133763c3f2SGreg Roach * GNU General Public License for more details.
143763c3f2SGreg Roach * You should have received a copy of the GNU General Public License
1589f7189bSGreg Roach * along with this program. If not, see <https://www.gnu.org/licenses/>.
163763c3f2SGreg Roach */
17fcfa147eSGreg Roach
18e7f56f2aSGreg Roachdeclare(strict_types=1);
19e7f56f2aSGreg Roach
2084e2cf4eSGreg Roachnamespace Fisharebest\Webtrees\Module;
213763c3f2SGreg Roach
223c5bb98bSGreg Roachuse Fisharebest\Webtrees\Auth;
231fe542e9SGreg Roachuse Fisharebest\Webtrees\Contracts\UserInterface;
24b6f35a76SGreg Roachuse Fisharebest\Webtrees\Report\HtmlRenderer;
25f0c88a96SGreg Roachuse Fisharebest\Webtrees\Report\PdfRenderer;
269a3accd7SGreg Roachuse Fisharebest\Webtrees\Report\ReportParserGenerate;
274358d8aeSGreg Roachuse Fisharebest\Webtrees\Report\ReportParserSetup;
283c5bb98bSGreg Roachuse Fisharebest\Webtrees\Services\UserService;
293cfcc809SGreg Roachuse Fisharebest\Webtrees\TestCase;
309a3accd7SGreg Roach
31*0acf1b4bSGreg Roachuse function ob_get_clean;
32*0acf1b4bSGreg Roach
333763c3f2SGreg Roach/**
346113edefSGreg Roach * Test harness for the class FactSourcesReportModule
35824da64cSGreg Roach */
36824da64cSGreg Roachclass DeathReportModuleTest extends TestCase
37824da64cSGreg Roach{
38cd94ca66SGreg Roach    protected static bool $uses_database = true;
39824da64cSGreg Roach
40824da64cSGreg Roach    /**
416113edefSGreg Roach     * @covers \Fisharebest\Webtrees\Module\ModuleReportTrait
42824da64cSGreg Roach     * @covers \Fisharebest\Webtrees\Module\PedigreeReportModule
43b6f35a76SGreg Roach     * @covers \Fisharebest\Webtrees\Report\AbstractRenderer
44824da64cSGreg Roach     * @covers \Fisharebest\Webtrees\Report\HtmlRenderer
45824da64cSGreg Roach     * @covers \Fisharebest\Webtrees\Report\PdfRenderer
466113edefSGreg Roach     * @covers \Fisharebest\Webtrees\Report\ReportBaseCell
476113edefSGreg Roach     * @covers \Fisharebest\Webtrees\Report\ReportBaseElement
486113edefSGreg Roach     * @covers \Fisharebest\Webtrees\Report\ReportBaseFootnote
496113edefSGreg Roach     * @covers \Fisharebest\Webtrees\Report\ReportBaseImage
506113edefSGreg Roach     * @covers \Fisharebest\Webtrees\Report\ReportBaseLine
516113edefSGreg Roach     * @covers \Fisharebest\Webtrees\Report\ReportBaseText
526113edefSGreg Roach     * @covers \Fisharebest\Webtrees\Report\ReportBaseTextbox
536113edefSGreg Roach     * @covers \Fisharebest\Webtrees\Report\ReportExpressionLanguageProvider
546113edefSGreg Roach     * @covers \Fisharebest\Webtrees\Report\ReportHtmlCell
556113edefSGreg Roach     * @covers \Fisharebest\Webtrees\Report\ReportHtmlFootnote
566113edefSGreg Roach     * @covers \Fisharebest\Webtrees\Report\ReportHtmlImage
576113edefSGreg Roach     * @covers \Fisharebest\Webtrees\Report\ReportHtmlLine
586113edefSGreg Roach     * @covers \Fisharebest\Webtrees\Report\ReportHtmlText
596113edefSGreg Roach     * @covers \Fisharebest\Webtrees\Report\ReportHtmlTextbox
606113edefSGreg Roach     * @covers \Fisharebest\Webtrees\Report\ReportParserBase
61c52e6333SGreg Roach     * @covers \Fisharebest\Webtrees\Report\ReportParserGenerate
626113edefSGreg Roach     * @covers \Fisharebest\Webtrees\Report\ReportParserSetup
636113edefSGreg Roach     * @covers \Fisharebest\Webtrees\Report\ReportPdfCell
646113edefSGreg Roach     * @covers \Fisharebest\Webtrees\Report\ReportPdfFootnote
656113edefSGreg Roach     * @covers \Fisharebest\Webtrees\Report\ReportPdfImage
666113edefSGreg Roach     * @covers \Fisharebest\Webtrees\Report\ReportPdfLine
676113edefSGreg Roach     * @covers \Fisharebest\Webtrees\Report\ReportPdfText
68b6f35a76SGreg Roach     * @covers \Fisharebest\Webtrees\Report\ReportPdfTextBox
69824da64cSGreg Roach     * @covers \Fisharebest\Webtrees\Report\TcpdfWrapper
70824da64cSGreg Roach     *
7152348eb8SGreg Roach     * @return void
723763c3f2SGreg Roach     */
739a3accd7SGreg Roach    public function testReportRunsWithoutError(): void
74c1010edaSGreg Roach    {
753c5bb98bSGreg Roach        $user = (new UserService())->create('user', 'User', 'user@example.com', 'secret');
761fe542e9SGreg Roach        $user->setPreference(UserInterface::PREF_IS_ADMINISTRATOR, '1');
773c5bb98bSGreg Roach        Auth::login($user);
783c5bb98bSGreg Roach
799a3accd7SGreg Roach        $tree   = $this->importTree('demo.ged');
80*0acf1b4bSGreg Roach        $module = new DeathReportModule();
81*0acf1b4bSGreg Roach        $module->setName('death_report');
82*0acf1b4bSGreg Roach
83824da64cSGreg Roach        $xml  = 'resources/' . $module->xmlFilename();
849a3accd7SGreg Roach        $vars = [
859a3accd7SGreg Roach            'name'       => ['id' => ''],
869a3accd7SGreg Roach            'deathplace' => ['id' => ''],
879a3accd7SGreg Roach            'deathdate1' => ['id' => ''],
889a3accd7SGreg Roach            'deathdate2' => ['id' => ''],
899a3accd7SGreg Roach            'adlist'     => ['id' => 'none'],
909a3accd7SGreg Roach            'sortby'     => ['id' => 'NAME'],
919a3accd7SGreg Roach            'pageSize'   => ['id' => 'A4'],
929a3accd7SGreg Roach        ];
939a3accd7SGreg Roach
944358d8aeSGreg Roach        $report = new ReportParserSetup($xml);
955e933c21SGreg Roach        self::assertIsArray($report->reportProperties());
964358d8aeSGreg Roach
979a3accd7SGreg Roach        ob_start();
989458f20aSGreg Roach        new ReportParserGenerate($xml, new HtmlRenderer(), $vars, $tree);
999a3accd7SGreg Roach        $html = ob_get_clean();
1005e933c21SGreg Roach        self::assertStringStartsWith('<', $html);
1015e933c21SGreg Roach        self::assertStringEndsWith('>', $html);
1029a3accd7SGreg Roach
1039a3accd7SGreg Roach        ob_start();
1049458f20aSGreg Roach        new ReportParserGenerate($xml, new PdfRenderer(), $vars, $tree);
1059a3accd7SGreg Roach        $pdf = ob_get_clean();
1065e933c21SGreg Roach        self::assertStringStartsWith('%PDF', $pdf);
1075e933c21SGreg Roach        self::assertStringEndsWith("%%EOF\n", $pdf);
1083763c3f2SGreg Roach    }
1093763c3f2SGreg Roach}
110