1<?php 2 3/** 4 * webtrees: online genealogy 5 * Copyright (C) 2019 webtrees development team 6 * This program is free software: you can redistribute it and/or modify 7 * it under the terms of the GNU General Public License as published by 8 * the Free Software Foundation, either version 3 of the License, or 9 * (at your option) any later version. 10 * This program is distributed in the hope that it will be useful, 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 * GNU General Public License for more details. 14 * You should have received a copy of the GNU General Public License 15 * along with this program. If not, see <http://www.gnu.org/licenses/>. 16 */ 17 18declare(strict_types=1); 19 20namespace Fisharebest\Webtrees\Module; 21 22use Fisharebest\Webtrees\Auth; 23use Fisharebest\Webtrees\Report\HtmlRenderer; 24use Fisharebest\Webtrees\Report\ReportParserGenerate; 25use Fisharebest\Webtrees\Report\ReportParserSetup; 26use Fisharebest\Webtrees\Report\PdfRenderer; 27use Fisharebest\Webtrees\Services\ModuleService; 28use Fisharebest\Webtrees\Services\UserService; 29use Fisharebest\Webtrees\TestCase; 30use Fisharebest\Webtrees\User; 31use League\Flysystem\Adapter\NullAdapter; 32use League\Flysystem\Filesystem; 33use PHPUnit\Framework\Error\Notice; 34 35use function ob_get_clean; 36use function ob_start; 37 38/** 39 * Test harness for the class DescendancyReportModule 40 */ 41class DescendancyReportModuleTest extends TestCase 42{ 43 protected static $uses_database = true; 44 45 /** 46 * @covers \Fisharebest\Webtrees\Module\ModuleReportTrait 47 * @covers \Fisharebest\Webtrees\Module\PedigreeReportModule 48 * @covers \Fisharebest\Webtrees\Report\AbstractRenderer 49 * @covers \Fisharebest\Webtrees\Report\HtmlRenderer 50 * @covers \Fisharebest\Webtrees\Report\PdfRenderer 51 * @covers \Fisharebest\Webtrees\Report\ReportBaseCell 52 * @covers \Fisharebest\Webtrees\Report\ReportBaseElement 53 * @covers \Fisharebest\Webtrees\Report\ReportBaseFootnote 54 * @covers \Fisharebest\Webtrees\Report\ReportBaseImage 55 * @covers \Fisharebest\Webtrees\Report\ReportBaseLine 56 * @covers \Fisharebest\Webtrees\Report\ReportBaseText 57 * @covers \Fisharebest\Webtrees\Report\ReportBaseTextbox 58 * @covers \Fisharebest\Webtrees\Report\ReportExpressionLanguageProvider 59 * @covers \Fisharebest\Webtrees\Report\ReportHtmlCell 60 * @covers \Fisharebest\Webtrees\Report\ReportHtmlFootnote 61 * @covers \Fisharebest\Webtrees\Report\ReportHtmlImage 62 * @covers \Fisharebest\Webtrees\Report\ReportHtmlLine 63 * @covers \Fisharebest\Webtrees\Report\ReportHtmlText 64 * @covers \Fisharebest\Webtrees\Report\ReportHtmlTextbox 65 * @covers \Fisharebest\Webtrees\Report\ReportParserBase 66 * @covers \Fisharebest\Webtrees\Report\ReportParserGenerate 67 * @covers \Fisharebest\Webtrees\Report\ReportParserSetup 68 * @covers \Fisharebest\Webtrees\Report\ReportPdfCell 69 * @covers \Fisharebest\Webtrees\Report\ReportPdfFootnote 70 * @covers \Fisharebest\Webtrees\Report\ReportPdfImage 71 * @covers \Fisharebest\Webtrees\Report\ReportPdfLine 72 * @covers \Fisharebest\Webtrees\Report\ReportPdfText 73 * @covers \Fisharebest\Webtrees\Report\ReportPdfTextBox 74 * @covers \Fisharebest\Webtrees\Report\TcpdfWrapper 75 * 76 * @return void 77 */ 78 public function testReportRunsWithoutError(): void 79 { 80 $data_filesystem = new Filesystem(new NullAdapter()); 81 $module_service = new ModuleService(); 82 83 $user = (new UserService())->create('user', 'User', 'user@example.com', 'secret'); 84 $user->setPreference(User::PREF_IS_ADMINISTRATOR, '1'); 85 Auth::login($user); 86 87 $tree = $this->importTree('demo.ged'); 88 $module = $module_service->findByInterface(DescendancyReportModule::class)->first(); 89 $xml = 'resources/' . $module->xmlFilename(); 90 $vars = [ 91 'pid' => ['id' => 'X1030'], 92 'maxgen' => ['id' => '3'], 93 'sources' => ['id' => 'on'], 94 'pageSize' => ['id' => 'A4'], 95 ]; 96 97 $report = new ReportParserSetup($xml); 98 $this->assertIsArray($report->reportProperties()); 99 100 ob_start(); 101 new ReportParserGenerate($xml, new HtmlRenderer(), $vars, $tree, $data_filesystem); 102 $html = ob_get_clean(); 103 $this->assertStringStartsWith('<', $html); 104 $this->assertStringEndsWith('>', $html); 105 106 ob_start(); 107 try { 108 if (PHP_VERSION_ID >= 70400) { 109 $this->expectException(Notice::class); 110 $this->expectExceptionMessage('Trying to access array offset on value of type int'); 111 } 112 113 new ReportParserGenerate($xml, new PdfRenderer(), $vars, $tree, $data_filesystem); 114 } finally { 115 $pdf = ob_get_clean(); 116 } 117 $this->assertStringStartsWith('%PDF', $pdf); 118 $this->assertStringEndsWith("%%EOF\n", $pdf); 119 } 120} 121