13763c3f2SGreg Roach<?php 23976b470SGreg Roach 33763c3f2SGreg Roach/** 43763c3f2SGreg Roach * webtrees: online genealogy 51fe542e9SGreg Roach * Copyright (C) 2021 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; 259a3accd7SGreg Roachuse Fisharebest\Webtrees\Report\ReportParserGenerate; 264358d8aeSGreg Roachuse Fisharebest\Webtrees\Report\ReportParserSetup; 27b6f35a76SGreg Roachuse Fisharebest\Webtrees\Report\PdfRenderer; 28824da64cSGreg Roachuse Fisharebest\Webtrees\Services\ModuleService; 293c5bb98bSGreg Roachuse Fisharebest\Webtrees\Services\UserService; 303cfcc809SGreg Roachuse Fisharebest\Webtrees\TestCase; 31a04bb9a2SGreg Roachuse League\Flysystem\Filesystem; 32*f7cf8a15SGreg Roachuse League\Flysystem\InMemory\InMemoryFilesystemAdapter; 339a3accd7SGreg Roach 343763c3f2SGreg Roach/** 353763c3f2SGreg Roach * Test harness for the class MissingFactsReportModule 36824da64cSGreg Roach */ 37824da64cSGreg Roachclass MissingFactsReportModuleTest extends TestCase 38824da64cSGreg Roach{ 39824da64cSGreg Roach protected static $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 71824da64cSGreg Roach * 7252348eb8SGreg Roach * @return void 733763c3f2SGreg Roach */ 749a3accd7SGreg Roach public function testReportRunsWithoutError(): void 75c1010edaSGreg Roach { 76*f7cf8a15SGreg Roach $data_filesystem = new Filesystem(new InMemoryFilesystemAdapter()); 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(MissingFactsReportModule::class)->first(); 85824da64cSGreg Roach $xml = 'resources/' . $module->xmlFilename(); 869a3accd7SGreg Roach $vars = [ 873c5bb98bSGreg Roach 'pid' => ['id' => 'X1030'], 889a3accd7SGreg Roach 'relatives' => ['id' => 'direct-ancestors'], 899a3accd7SGreg Roach 'maxgen' => ['id' => '*'], 909a3accd7SGreg Roach 'pageSize' => ['id' => 'A4'], 919a3accd7SGreg Roach 'sortby' => ['id' => 'NAME'], 929a3accd7SGreg Roach 'fbirt' => ['id' => 'on'], 933c5bb98bSGreg Roach 'fburi' => ['id' => 'on'], 949a3accd7SGreg Roach 'fdeat' => ['id' => 'on'], 959a3accd7SGreg Roach 'fsour' => ['id' => 'on'], 969a3accd7SGreg Roach 'fbapm' => ['id' => 'on'], 979a3accd7SGreg Roach 'fbarm' => ['id' => 'on'], 989a3accd7SGreg Roach 'fbasm' => ['id' => 'on'], 999a3accd7SGreg Roach 'fconf' => ['id' => 'on'], 1009a3accd7SGreg Roach 'fenga' => ['id' => 'on'], 1019a3accd7SGreg Roach 'ffcom' => ['id' => 'on'], 1029a3accd7SGreg Roach 'fmarb' => ['id' => 'on'], 1039a3accd7SGreg Roach 'fmarr' => ['id' => 'on'], 1049a3accd7SGreg Roach 'freli' => ['id' => 'on'], 1059a3accd7SGreg Roach ]; 1069a3accd7SGreg Roach 1074358d8aeSGreg Roach $report = new ReportParserSetup($xml); 1085e933c21SGreg Roach self::assertIsArray($report->reportProperties()); 1094358d8aeSGreg Roach 1109a3accd7SGreg Roach ob_start(); 111b6f35a76SGreg Roach new ReportParserGenerate($xml, new HtmlRenderer(), $vars, $tree, $data_filesystem); 1129a3accd7SGreg Roach $html = ob_get_clean(); 1135e933c21SGreg Roach self::assertStringStartsWith('<', $html); 1145e933c21SGreg Roach self::assertStringEndsWith('>', $html); 1159a3accd7SGreg Roach 1169a3accd7SGreg Roach ob_start(); 117b6f35a76SGreg Roach new ReportParserGenerate($xml, new PdfRenderer(), $vars, $tree, $data_filesystem); 1189a3accd7SGreg Roach $pdf = ob_get_clean(); 1195e933c21SGreg Roach self::assertStringStartsWith('%PDF', $pdf); 1205e933c21SGreg Roach self::assertStringEndsWith("%%EOF\n", $pdf); 1213763c3f2SGreg Roach } 1223763c3f2SGreg Roach} 123