xref: /webtrees/tests/app/Services/SearchServiceTest.php (revision 1d1f373cc23093682b1736881f66a527f62ccc46)
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\TestCase;
23use Illuminate\Support\Collection;
24
25/**
26 * Test harness for the class SearchService
27 *
28 * @covers \Fisharebest\Webtrees\Services\SearchService
29 */
30class SearchServiceTest extends TestCase
31{
32    protected static $uses_database = true;
33
34    /**
35     * @return void
36     */
37    public function testSearchesReturnCollections(): void
38    {
39        $search_service = new SearchService();
40        $tree           = $this->importTree('demo.ged');
41
42        $result = $search_service->searchFamilies([$tree], ['windsor']);
43        $this->assertInstanceOf(Collection::class, $result);
44
45        $result = $search_service->searchFamilyNames([$tree], ['charles', 'diana']);
46        $this->assertInstanceOf(Collection::class, $result);
47
48        $result = $search_service->searchIndividuals([$tree], ['windsor']);
49        $this->assertInstanceOf(Collection::class, $result);
50
51        $result = $search_service->searchIndividualNames([$tree], ['windsor']);
52        $this->assertInstanceOf(Collection::class, $result);
53
54        $result = $search_service->searchMedia([$tree], ['windsor']);
55        $this->assertInstanceOf(Collection::class, $result);
56
57        $result = $search_service->searchNotes([$tree], ['windsor']);
58        $this->assertInstanceOf(Collection::class, $result);
59
60        $result = $search_service->searchRepositories([$tree], ['national']);
61        $this->assertInstanceOf(Collection::class, $result);
62
63        $result = $search_service->searchSources([$tree], ['england']);
64        $this->assertInstanceOf(Collection::class, $result);
65
66        $result = $search_service->searchSourcesByName([$tree], ['england']);
67        $this->assertInstanceOf(Collection::class, $result);
68
69        $result = $search_service->searchSubmitters([$tree], ['greg']);
70        $this->assertInstanceOf(Collection::class, $result);
71
72        $result = $search_service->searchPlaces($tree, 'England');
73        $this->assertInstanceOf(Collection::class, $result);
74    }
75}
76