xref: /webtrees/tests/app/Services/ModuleServiceTest.php (revision fcfa147e10aaa6c7ff580c29bd6e5b88666befc1)
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\Services;
21
22use Fisharebest\Webtrees\Module\ModuleAnalyticsInterface;
23use Fisharebest\Webtrees\Module\ModuleBlockInterface;
24use Fisharebest\Webtrees\Module\ModuleChartInterface;
25use Fisharebest\Webtrees\Module\ModuleConfigInterface;
26use Fisharebest\Webtrees\Module\ModuleInterface;
27use Fisharebest\Webtrees\Module\ModuleMenuInterface;
28use Fisharebest\Webtrees\Module\ModuleReportInterface;
29use Fisharebest\Webtrees\Module\ModuleSidebarInterface;
30use Fisharebest\Webtrees\Module\ModuleTabInterface;
31use Fisharebest\Webtrees\Module\ModuleThemeInterface;
32use Fisharebest\Webtrees\TestCase;
33use Fisharebest\Webtrees\Tree;
34use Illuminate\Database\Capsule\Manager as DB;
35
36/**
37 * Test the modules
38 *
39 * @coversNothing
40 */
41class ModuleServiceTest extends TestCase
42{
43    protected static $uses_database = true;
44
45    /**
46     * @covers \Fisharebest\Webtrees\Services\ModuleService::all
47     * @covers \Fisharebest\Webtrees\Services\ModuleService::coreModules
48     * @covers \Fisharebest\Webtrees\Services\ModuleService::customModules
49     * @covers \Fisharebest\Webtrees\Services\ModuleService::moduleSorter
50     * @return void
51     */
52    public function testAll(): void
53    {
54        app()->instance(Tree::class, Tree::create('name', 'title'));
55
56        $module_service = new ModuleService();
57
58        $this->assertNotEmpty($module_service->all());
59    }
60
61    /**
62     * @covers \Fisharebest\Webtrees\Services\ModuleService::findByComponent
63     * @covers \Fisharebest\Webtrees\Services\ModuleService::menuSorter
64     * @covers \Fisharebest\Webtrees\Services\ModuleService::sidebarSorter
65     * @covers \Fisharebest\Webtrees\Services\ModuleService::tabSorter
66     * @return void
67     */
68    public function testFindByComponent(): void
69    {
70        $user_service = new UserService();
71        app()->instance(Tree::class, Tree::create('name', 'title'));
72
73        $module_service = new ModuleService();
74
75        $tree = $this->importTree('demo.ged');
76        $user = $user_service->create('UserName', 'RealName', 'user@example.com', 'secret');
77
78        $this->assertNotEmpty($module_service->findByComponent(ModuleBlockInterface::class, $tree, $user)->all());
79        $this->assertNotEmpty($module_service->findByComponent(ModuleChartInterface::class, $tree, $user)->all());
80        $this->assertNotEmpty($module_service->findByComponent(ModuleMenuInterface::class, $tree, $user)->all());
81        $this->assertNotEmpty($module_service->findByComponent(ModuleReportInterface::class, $tree, $user)->all());
82        $this->assertNotEmpty($module_service->findByComponent(ModuleSidebarInterface::class, $tree, $user)->all());
83        $this->assertNotEmpty($module_service->findByComponent(ModuleTabInterface::class, $tree, $user)->all());
84    }
85
86    /**
87     * @covers \Fisharebest\Webtrees\Services\ModuleService::findByInterface
88     * @return void
89     */
90    public function testFindByInterface(): void
91    {
92        app()->instance(Tree::class, Tree::create('name', 'title'));
93
94        $module_service = new ModuleService();
95
96        $this->assertNotEmpty($module_service->findByInterface(ModuleAnalyticsInterface::class, true)->all());
97        $this->assertNotEmpty($module_service->findByInterface(ModuleBlockInterface::class, true)->all());
98        $this->assertNotEmpty($module_service->findByInterface(ModuleChartInterface::class, true)->all());
99        $this->assertNotEmpty($module_service->findByInterface(ModuleConfigInterface::class, true)->all());
100        $this->assertNotEmpty($module_service->findByInterface(ModuleMenuInterface::class, true)->all());
101        $this->assertNotEmpty($module_service->findByInterface(ModuleInterface::class, true)->all());
102        $this->assertNotEmpty($module_service->findByInterface(ModuleReportInterface::class, true)->all());
103        $this->assertNotEmpty($module_service->findByInterface(ModuleSidebarInterface::class, true)->all());
104        $this->assertNotEmpty($module_service->findByInterface(ModuleTabInterface::class, true)->all());
105        $this->assertNotEmpty($module_service->findByInterface(ModuleThemeInterface::class, true)->all());
106
107        // Search for an invalid module type
108        $this->assertEmpty($module_service->findByInterface('not-a-valid-class-or-interface')->all());
109    }
110
111    /**
112     * @covers \Fisharebest\Webtrees\Services\ModuleService::otherModules
113     * @return void
114     */
115    public function testOtherModules(): void
116    {
117        app()->instance(Tree::class, Tree::create('name', 'title'));
118        DB::table('module')->insert(['module_name' => 'not-a-module']);
119
120        $module_service = new ModuleService();
121
122        $this->assertSame(3, $module_service->otherModules()->count());
123    }
124
125    /**
126     * @covers \Fisharebest\Webtrees\Services\ModuleService::deletedModules
127     * @return void
128     */
129    public function testDeletedModules(): void
130    {
131        app()->instance(Tree::class, Tree::create('name', 'title'));
132        DB::table('module')->insert(['module_name' => 'not-a-module']);
133
134        $module_service = new ModuleService();
135
136        $this->assertSame(1, $module_service->deletedModules()->count());
137        $this->assertSame('not-a-module', $module_service->deletedModules()->first());
138    }
139}
140