xref: /webtrees/tests/app/Module/ChangeReportModuleTest.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 Roachuse Illuminate\Support\Carbon;
259a3accd7SGreg Roach
263763c3f2SGreg Roach/**
273763c3f2SGreg Roach * Test harness for the class ChangeReportModule
289a3accd7SGreg Roach *
299a3accd7SGreg Roach * @covers \Fisharebest\Webtrees\Report\ReportHtml
30*c52e6333SGreg Roach * @covers \Fisharebest\Webtrees\Report\ReportParserGenerate
31*c52e6333SGreg Roach * @covers \Fisharebest\Webtrees\Report\ReportPdf
323763c3f2SGreg Roach */
3384e2cf4eSGreg Roachclass ChangeReportModuleTest extends \Fisharebest\Webtrees\TestCase
34c1010edaSGreg Roach{
359a3accd7SGreg Roach    protected static $uses_database = true;
369a3accd7SGreg Roach
373763c3f2SGreg Roach    /**
3852348eb8SGreg Roach     * @return void
393763c3f2SGreg Roach     */
409a3accd7SGreg Roach    public function testReportRunsWithoutError(): void
41c1010edaSGreg Roach    {
429a3accd7SGreg Roach        $tree = $this->importTree('demo.ged');
439a3accd7SGreg Roach        app()->instance(Tree::class, $tree);
449a3accd7SGreg Roach        $xml  = WT_ROOT . 'resources/xml/reports/change_report.xml';
459a3accd7SGreg Roach        $vars = [
469a3accd7SGreg Roach            'changeRangeStart' => ['id' => Carbon::now()->subMonths(1)->format('d M Y')],
479a3accd7SGreg Roach            'changeRangeEnd'   => ['id' => Carbon::now()->format('d M Y')],
489a3accd7SGreg Roach            'pending'          => ['id' => 'yes'],
499a3accd7SGreg Roach            'sortby'           => ['id' => 'CHAN'],
509a3accd7SGreg Roach            'pageSize'         => ['id' => 'A4'],
519a3accd7SGreg Roach            'pageorient'       => ['id' => 'landscape'],
529a3accd7SGreg Roach        ];
539a3accd7SGreg Roach
549a3accd7SGreg Roach        ob_start();
559a3accd7SGreg Roach        new ReportParserGenerate($xml, new ReportHtml(), $vars, $tree);
569a3accd7SGreg Roach        $html = ob_get_clean();
579a3accd7SGreg Roach        $this->assertStringStartsWith('<', $html);
589a3accd7SGreg Roach        $this->assertStringEndsWith('>', $html);
599a3accd7SGreg Roach
609a3accd7SGreg Roach        ob_start();
619a3accd7SGreg Roach        new ReportParserGenerate($xml, new ReportPdf(), $vars, $tree);
629a3accd7SGreg Roach        $pdf = ob_get_clean();
639a3accd7SGreg Roach        $this->assertStringStartsWith('%PDF', $pdf);
649a3accd7SGreg Roach        $this->assertStringEndsWith("%%EOF\n", $pdf);
653763c3f2SGreg Roach    }
663763c3f2SGreg Roach}
67