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; 33 34/** 35 * Test harness for the class MarriageReportModule 36 */ 37class MarriageReportModuleTest extends TestCase 38{ 39 protected static $uses_database = true; 40 41 /** 42 * @covers \Fisharebest\Webtrees\Module\ModuleReportTrait 43 * @covers \Fisharebest\Webtrees\Module\PedigreeReportModule 44 * @covers \Fisharebest\Webtrees\Report\AbstractRenderer 45 * @covers \Fisharebest\Webtrees\Report\HtmlRenderer 46 * @covers \Fisharebest\Webtrees\Report\PdfRenderer 47 * @covers \Fisharebest\Webtrees\Report\ReportBaseCell 48 * @covers \Fisharebest\Webtrees\Report\ReportBaseElement 49 * @covers \Fisharebest\Webtrees\Report\ReportBaseFootnote 50 * @covers \Fisharebest\Webtrees\Report\ReportBaseHtml 51 * @covers \Fisharebest\Webtrees\Report\ReportBaseImage 52 * @covers \Fisharebest\Webtrees\Report\ReportBaseLine 53 * @covers \Fisharebest\Webtrees\Report\ReportBasePageHeader 54 * @covers \Fisharebest\Webtrees\Report\ReportBaseText 55 * @covers \Fisharebest\Webtrees\Report\ReportBaseTextbox 56 * @covers \Fisharebest\Webtrees\Report\ReportExpressionLanguageProvider 57 * @covers \Fisharebest\Webtrees\Report\ReportHtmlCell 58 * @covers \Fisharebest\Webtrees\Report\ReportHtmlFootnote 59 * @covers \Fisharebest\Webtrees\Report\ReportHtmlHtml 60 * @covers \Fisharebest\Webtrees\Report\ReportHtmlImage 61 * @covers \Fisharebest\Webtrees\Report\ReportHtmlLine 62 * @covers \Fisharebest\Webtrees\Report\ReportHtmlPageHeader 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\ReportPdfHtml 71 * @covers \Fisharebest\Webtrees\Report\ReportPdfImage 72 * @covers \Fisharebest\Webtrees\Report\ReportPdfLine 73 * @covers \Fisharebest\Webtrees\Report\ReportPdfPageHeader 74 * @covers \Fisharebest\Webtrees\Report\ReportPdfText 75 * @covers \Fisharebest\Webtrees\Report\ReportPdfTextBox 76 * @covers \Fisharebest\Webtrees\Report\TcpdfWrapper 77 * 78 * @return void 79 */ 80 public function testReportRunsWithoutError(): void 81 { 82 $data_filesystem = new Filesystem(new NullAdapter()); 83 $module_service = new ModuleService(); 84 85 $user = (new UserService())->create('user', 'User', 'user@example.com', 'secret'); 86 $user->setPreference(User::PREF_IS_ADMINISTRATOR, '1'); 87 Auth::login($user); 88 89 $tree = $this->importTree('demo.ged'); 90 $module = $module_service->findByInterface(MarriageReportModule::class)->first(); 91 $xml = 'resources/' . $module->xmlFilename(); 92 $vars = [ 93 'name' => ['id' => ''], 94 'marrplace' => ['id' => ''], 95 'marrdate1' => ['id' => ''], 96 'marrdate2' => ['id' => ''], 97 'sortby' => ['id' => 'NAME'], 98 'pageSize' => ['id' => 'A4'], 99 ]; 100 101 $report = new ReportParserSetup($xml); 102 $this->assertIsArray($report->reportProperties()); 103 104 ob_start(); 105 new ReportParserGenerate($xml, new HtmlRenderer(), $vars, $tree, $data_filesystem); 106 $html = ob_get_clean(); 107 $this->assertStringStartsWith('<', $html); 108 $this->assertStringEndsWith('>', $html); 109 110 ob_start(); 111 new ReportParserGenerate($xml, new PdfRenderer(), $vars, $tree, $data_filesystem); 112 $pdf = ob_get_clean(); 113 $this->assertStringStartsWith('%PDF', $pdf); 114 $this->assertStringEndsWith("%%EOF\n", $pdf); 115 } 116} 117