xref: /webtrees/tests/app/Module/ChangeReportModuleTest.php (revision 58a588c63196cb1f4cc1926f6fe552c754b0d27a)
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;
24d97083feSGreg Roachuse Fisharebest\Webtrees\Registry;
25b6f35a76SGreg Roachuse Fisharebest\Webtrees\Report\HtmlRenderer;
26f0c88a96SGreg Roachuse Fisharebest\Webtrees\Report\PdfRenderer;
279a3accd7SGreg Roachuse Fisharebest\Webtrees\Report\ReportParserGenerate;
284358d8aeSGreg Roachuse Fisharebest\Webtrees\Report\ReportParserSetup;
293c5bb98bSGreg Roachuse Fisharebest\Webtrees\Services\UserService;
303cfcc809SGreg Roachuse Fisharebest\Webtrees\TestCase;
319a3accd7SGreg Roach
320acf1b4bSGreg Roachuse function ob_get_clean;
330acf1b4bSGreg Roach
343763c3f2SGreg Roach/**
353763c3f2SGreg Roach * Test harness for the class ChangeReportModule
36824da64cSGreg Roach */
37824da64cSGreg Roachclass ChangeReportModuleTest extends TestCase
38824da64cSGreg Roach{
39cd94ca66SGreg Roach    protected static bool $uses_database = true;
40824da64cSGreg Roach
41824da64cSGreg Roach    /**
426113edefSGreg Roach     * @covers \Fisharebest\Webtrees\Module\ModuleReportTrait
43824da64cSGreg Roach     * @covers \Fisharebest\Webtrees\Module\PedigreeReportModule
44b6f35a76SGreg Roach     * @covers \Fisharebest\Webtrees\Report\AbstractRenderer
45824da64cSGreg Roach     * @covers \Fisharebest\Webtrees\Report\HtmlRenderer
46824da64cSGreg Roach     * @covers \Fisharebest\Webtrees\Report\PdfRenderer
476113edefSGreg Roach     * @covers \Fisharebest\Webtrees\Report\ReportBaseCell
486113edefSGreg Roach     * @covers \Fisharebest\Webtrees\Report\ReportBaseElement
496113edefSGreg Roach     * @covers \Fisharebest\Webtrees\Report\ReportBaseFootnote
506113edefSGreg Roach     * @covers \Fisharebest\Webtrees\Report\ReportBaseImage
516113edefSGreg Roach     * @covers \Fisharebest\Webtrees\Report\ReportBaseLine
526113edefSGreg Roach     * @covers \Fisharebest\Webtrees\Report\ReportBaseText
536113edefSGreg Roach     * @covers \Fisharebest\Webtrees\Report\ReportBaseTextbox
546113edefSGreg Roach     * @covers \Fisharebest\Webtrees\Report\ReportExpressionLanguageProvider
556113edefSGreg Roach     * @covers \Fisharebest\Webtrees\Report\ReportHtmlCell
566113edefSGreg Roach     * @covers \Fisharebest\Webtrees\Report\ReportHtmlFootnote
576113edefSGreg Roach     * @covers \Fisharebest\Webtrees\Report\ReportHtmlImage
586113edefSGreg Roach     * @covers \Fisharebest\Webtrees\Report\ReportHtmlLine
596113edefSGreg Roach     * @covers \Fisharebest\Webtrees\Report\ReportHtmlText
606113edefSGreg Roach     * @covers \Fisharebest\Webtrees\Report\ReportHtmlTextbox
616113edefSGreg Roach     * @covers \Fisharebest\Webtrees\Report\ReportParserBase
62c52e6333SGreg Roach     * @covers \Fisharebest\Webtrees\Report\ReportParserGenerate
636113edefSGreg Roach     * @covers \Fisharebest\Webtrees\Report\ReportParserSetup
646113edefSGreg Roach     * @covers \Fisharebest\Webtrees\Report\ReportPdfCell
656113edefSGreg Roach     * @covers \Fisharebest\Webtrees\Report\ReportPdfFootnote
666113edefSGreg Roach     * @covers \Fisharebest\Webtrees\Report\ReportPdfImage
676113edefSGreg Roach     * @covers \Fisharebest\Webtrees\Report\ReportPdfLine
686113edefSGreg Roach     * @covers \Fisharebest\Webtrees\Report\ReportPdfText
69b6f35a76SGreg Roach     * @covers \Fisharebest\Webtrees\Report\ReportPdfTextBox
70824da64cSGreg Roach     * @covers \Fisharebest\Webtrees\Report\TcpdfWrapper
713763c3f2SGreg Roach     */
729a3accd7SGreg Roach    public function testReportRunsWithoutError(): void
73c1010edaSGreg Roach    {
743c5bb98bSGreg Roach        $user = (new UserService())->create('user', 'User', 'user@example.com', 'secret');
751fe542e9SGreg Roach        $user->setPreference(UserInterface::PREF_IS_ADMINISTRATOR, '1');
763c5bb98bSGreg Roach        Auth::login($user);
773c5bb98bSGreg Roach
789a3accd7SGreg Roach        $tree   = $this->importTree('demo.ged');
790acf1b4bSGreg Roach        $module = new ChangeReportModule();
800acf1b4bSGreg Roach        $module->setName('change_report');
810acf1b4bSGreg Roach
82824da64cSGreg Roach        $xml  = 'resources/' . $module->xmlFilename();
839a3accd7SGreg Roach        $vars = [
84d97083feSGreg Roach            'changeRangeStart' => ['id' => Registry::timestampFactory()->now()->subtractMonths(1)->format('d M Y')],
85d97083feSGreg Roach            'changeRangeEnd'   => ['id' => Registry::timestampFactory()->now()->format('d M Y')],
869a3accd7SGreg Roach            'pending'          => ['id' => 'yes'],
879a3accd7SGreg Roach            'sortby'           => ['id' => 'CHAN'],
889a3accd7SGreg Roach            'pageSize'         => ['id' => 'A4'],
899a3accd7SGreg Roach            'pageorient'       => ['id' => 'landscape'],
909a3accd7SGreg Roach        ];
919a3accd7SGreg Roach
924358d8aeSGreg Roach        $report = new ReportParserSetup($xml);
93*58a588c6SGreg Roach        self::assertNotEmpty($report->reportProperties());
944358d8aeSGreg Roach
959a3accd7SGreg Roach        ob_start();
969458f20aSGreg Roach        new ReportParserGenerate($xml, new HtmlRenderer(), $vars, $tree);
979a3accd7SGreg Roach        $html = ob_get_clean();
985e933c21SGreg Roach        self::assertStringStartsWith('<', $html);
995e933c21SGreg Roach        self::assertStringEndsWith('>', $html);
1009a3accd7SGreg Roach
1019a3accd7SGreg Roach        ob_start();
1029458f20aSGreg Roach        new ReportParserGenerate($xml, new PdfRenderer(), $vars, $tree);
1039a3accd7SGreg Roach        $pdf = ob_get_clean();
1045e933c21SGreg Roach        self::assertStringStartsWith('%PDF', $pdf);
1055e933c21SGreg Roach        self::assertStringEndsWith("%%EOF\n", $pdf);
1063763c3f2SGreg Roach    }
1073763c3f2SGreg Roach}
108