xref: /webtrees/tests/feature/IndividualListTest.php (revision ca52a40817ad7cecb36551dab9c7d5013162748a)
1<?php
2/**
3 * webtrees: online genealogy
4 * Copyright (C) 2019 webtrees development team
5 * This program is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, either version 3 of the License, or
8 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 */
16declare(strict_types=1);
17
18namespace Fisharebest\Webtrees;
19
20use Fisharebest\Localization\Locale\LocaleEnUs;
21use Fisharebest\Webtrees\Http\Controllers\ListController;
22use Fisharebest\Webtrees\Services\IndividualListService;
23use Fisharebest\Webtrees\Services\LocalizationService;
24use Symfony\Component\HttpFoundation\Request;
25use Symfony\Component\HttpFoundation\Response;
26
27/**
28 * Test the individual lists.
29 *
30 * @coversNothing
31 */
32class IndividualListTest extends TestCase
33{
34    protected static $uses_database = true;
35
36    /**
37     * @covers \Fisharebest\Webtrees\Http\Controllers\ListController
38     * @return void
39     */
40    public function testIndividualList(): void
41    {
42        // Needed for Date::display()
43        global $tree;
44
45        $tree = $this->importTree('demo.ged');
46        $user = Auth::user();
47        app()->instance(Tree::class, $tree);
48        app()->instance(User::class, $user);
49
50        $localization_service    = new LocalizationService(new LocaleEnUs());
51        $individual_list_service = new IndividualListService($localization_service, $tree);
52        $controller              = new ListController($individual_list_service, $localization_service);
53
54        $request  = new Request(['route' => 'individual-list']);
55        $response = $controller->individualList($request, $tree, $user);
56        $this->assertSame(Response::HTTP_OK, $response->getStatusCode());
57
58        $request  = new Request(['route' => 'individual-list', 'alpha' => 'B']);
59        $response = $controller->individualList($request, $tree, $user);
60        $this->assertSame(Response::HTTP_OK, $response->getStatusCode());
61
62        $request  = new Request(['route' => 'individual-list', 'alpha' => ',']);
63        $response = $controller->individualList($request, $tree, $user);
64        $this->assertSame(Response::HTTP_OK, $response->getStatusCode());
65
66        $request  = new Request(['route' => 'individual-list', 'alpha' => '@']);
67        $response = $controller->individualList($request, $tree, $user);
68        $this->assertSame(Response::HTTP_OK, $response->getStatusCode());
69
70        $request  = new Request(['route' => 'individual-list', 'surname' => 'BRAUN']);
71        $response = $controller->individualList($request, $tree, $user);
72        $this->assertSame(Response::HTTP_OK, $response->getStatusCode());
73    }
74}
75