13763c3f2SGreg Roach<?php 23976b470SGreg Roach 33763c3f2SGreg Roach/** 43763c3f2SGreg Roach * webtrees: online genealogy 55bfc6897SGreg Roach * Copyright (C) 2022 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; 28824da64cSGreg Roachuse Fisharebest\Webtrees\Services\ModuleService; 293c5bb98bSGreg Roachuse Fisharebest\Webtrees\Services\UserService; 303cfcc809SGreg Roachuse Fisharebest\Webtrees\TestCase; 3169100c6dSGreg Roach 3269100c6dSGreg Roachuse function ob_get_clean; 3369100c6dSGreg Roachuse function ob_start; 349a3accd7SGreg Roach 353763c3f2SGreg Roach/** 363763c3f2SGreg Roach * Test harness for the class DescendancyReportModule 37824da64cSGreg Roach */ 38824da64cSGreg Roachclass DescendancyReportModuleTest extends TestCase 39824da64cSGreg Roach{ 40cd94ca66SGreg Roach protected static bool $uses_database = true; 41824da64cSGreg Roach 42824da64cSGreg Roach /** 436113edefSGreg Roach * @covers \Fisharebest\Webtrees\Module\ModuleReportTrait 44824da64cSGreg Roach * @covers \Fisharebest\Webtrees\Module\PedigreeReportModule 45b6f35a76SGreg Roach * @covers \Fisharebest\Webtrees\Report\AbstractRenderer 46824da64cSGreg Roach * @covers \Fisharebest\Webtrees\Report\HtmlRenderer 47824da64cSGreg Roach * @covers \Fisharebest\Webtrees\Report\PdfRenderer 486113edefSGreg Roach * @covers \Fisharebest\Webtrees\Report\ReportBaseCell 496113edefSGreg Roach * @covers \Fisharebest\Webtrees\Report\ReportBaseElement 506113edefSGreg Roach * @covers \Fisharebest\Webtrees\Report\ReportBaseFootnote 516113edefSGreg Roach * @covers \Fisharebest\Webtrees\Report\ReportBaseImage 526113edefSGreg Roach * @covers \Fisharebest\Webtrees\Report\ReportBaseLine 536113edefSGreg Roach * @covers \Fisharebest\Webtrees\Report\ReportBaseText 546113edefSGreg Roach * @covers \Fisharebest\Webtrees\Report\ReportBaseTextbox 556113edefSGreg Roach * @covers \Fisharebest\Webtrees\Report\ReportExpressionLanguageProvider 566113edefSGreg Roach * @covers \Fisharebest\Webtrees\Report\ReportHtmlCell 576113edefSGreg Roach * @covers \Fisharebest\Webtrees\Report\ReportHtmlFootnote 586113edefSGreg Roach * @covers \Fisharebest\Webtrees\Report\ReportHtmlImage 596113edefSGreg Roach * @covers \Fisharebest\Webtrees\Report\ReportHtmlLine 606113edefSGreg Roach * @covers \Fisharebest\Webtrees\Report\ReportHtmlText 616113edefSGreg Roach * @covers \Fisharebest\Webtrees\Report\ReportHtmlTextbox 626113edefSGreg Roach * @covers \Fisharebest\Webtrees\Report\ReportParserBase 63c52e6333SGreg Roach * @covers \Fisharebest\Webtrees\Report\ReportParserGenerate 646113edefSGreg Roach * @covers \Fisharebest\Webtrees\Report\ReportParserSetup 656113edefSGreg Roach * @covers \Fisharebest\Webtrees\Report\ReportPdfCell 666113edefSGreg Roach * @covers \Fisharebest\Webtrees\Report\ReportPdfFootnote 676113edefSGreg Roach * @covers \Fisharebest\Webtrees\Report\ReportPdfImage 686113edefSGreg Roach * @covers \Fisharebest\Webtrees\Report\ReportPdfLine 696113edefSGreg Roach * @covers \Fisharebest\Webtrees\Report\ReportPdfText 70b6f35a76SGreg Roach * @covers \Fisharebest\Webtrees\Report\ReportPdfTextBox 71824da64cSGreg Roach * @covers \Fisharebest\Webtrees\Report\TcpdfWrapper 72824da64cSGreg Roach * 7352348eb8SGreg Roach * @return void 743763c3f2SGreg Roach */ 759a3accd7SGreg Roach public function testReportRunsWithoutError(): void 76c1010edaSGreg Roach { 77824da64cSGreg Roach $module_service = new ModuleService(); 78a04bb9a2SGreg Roach 793c5bb98bSGreg Roach $user = (new UserService())->create('user', 'User', 'user@example.com', 'secret'); 801fe542e9SGreg Roach $user->setPreference(UserInterface::PREF_IS_ADMINISTRATOR, '1'); 813c5bb98bSGreg Roach Auth::login($user); 823c5bb98bSGreg Roach 839a3accd7SGreg Roach $tree = $this->importTree('demo.ged'); 84824da64cSGreg Roach $module = $module_service->findByInterface(DescendancyReportModule::class)->first(); 85824da64cSGreg Roach $xml = 'resources/' . $module->xmlFilename(); 869a3accd7SGreg Roach $vars = [ 873c5bb98bSGreg Roach 'pid' => ['id' => 'X1030'], 889a3accd7SGreg Roach 'maxgen' => ['id' => '3'], 899a3accd7SGreg Roach 'sources' => ['id' => 'on'], 909a3accd7SGreg Roach 'pageSize' => ['id' => 'A4'], 919a3accd7SGreg Roach ]; 929a3accd7SGreg Roach 934358d8aeSGreg Roach $report = new ReportParserSetup($xml); 945e933c21SGreg Roach self::assertIsArray($report->reportProperties()); 954358d8aeSGreg Roach 969a3accd7SGreg Roach ob_start(); 97*9458f20aSGreg Roach new ReportParserGenerate($xml, new HtmlRenderer(), $vars, $tree); 989a3accd7SGreg Roach $html = ob_get_clean(); 995e933c21SGreg Roach self::assertStringStartsWith('<', $html); 1005e933c21SGreg Roach self::assertStringEndsWith('>', $html); 1019a3accd7SGreg Roach 1029a3accd7SGreg Roach ob_start(); 103*9458f20aSGreg Roach new ReportParserGenerate($xml, new PdfRenderer(), $vars, $tree); 1049a3accd7SGreg Roach $pdf = ob_get_clean(); 105d44668f6SGreg Roach 1065e933c21SGreg Roach self::assertStringStartsWith('%PDF', $pdf); 1075e933c21SGreg Roach self::assertStringEndsWith("%%EOF\n", $pdf); 1083763c3f2SGreg Roach } 1093763c3f2SGreg Roach} 110