xref: /webtrees/tests/feature/IndividualListTest.php (revision 71378461661e7642e52abe7d41c9cfffb3e5369b)
1e9e85398SGreg Roach<?php
23976b470SGreg Roach
3e9e85398SGreg Roach/**
4e9e85398SGreg Roach * webtrees: online genealogy
5e9e85398SGreg Roach * Copyright (C) 2019 webtrees development team
6e9e85398SGreg Roach * This program is free software: you can redistribute it and/or modify
7e9e85398SGreg Roach * it under the terms of the GNU General Public License as published by
8e9e85398SGreg Roach * the Free Software Foundation, either version 3 of the License, or
9e9e85398SGreg Roach * (at your option) any later version.
10e9e85398SGreg Roach * This program is distributed in the hope that it will be useful,
11e9e85398SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of
12e9e85398SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13e9e85398SGreg Roach * GNU General Public License for more details.
14e9e85398SGreg Roach * You should have received a copy of the GNU General Public License
15e9e85398SGreg Roach * along with this program. If not, see <http://www.gnu.org/licenses/>.
16e9e85398SGreg Roach */
17e9e85398SGreg Roachdeclare(strict_types=1);
18e9e85398SGreg Roach
19e9e85398SGreg Roachnamespace Fisharebest\Webtrees;
20e9e85398SGreg Roach
21*71378461SGreg Roachuse Fig\Http\Message\RequestMethodInterface;
22*71378461SGreg Roachuse Fig\Http\Message\StatusCodeInterface;
23b9fc687eSGreg Roachuse Fisharebest\Localization\Locale\LocaleEnUs;
24b9fc687eSGreg Roachuse Fisharebest\Webtrees\Http\Controllers\ListController;
2587cca37cSGreg Roachuse Fisharebest\Webtrees\Module\IndividualListModule;
26b9fc687eSGreg Roachuse Fisharebest\Webtrees\Services\IndividualListService;
27b9fc687eSGreg Roachuse Fisharebest\Webtrees\Services\LocalizationService;
28b9fc687eSGreg Roach
29e9e85398SGreg Roach/**
30b9fc687eSGreg Roach * Test the individual lists.
31e9e85398SGreg Roach *
32e9e85398SGreg Roach * @coversNothing
33e9e85398SGreg Roach */
34e5a6b4d4SGreg Roachclass IndividualListTest extends TestCase
35e9e85398SGreg Roach{
36e9e85398SGreg Roach    protected static $uses_database = true;
37e9e85398SGreg Roach
38e9e85398SGreg Roach    /**
39b9fc687eSGreg Roach     * @covers \Fisharebest\Webtrees\Http\Controllers\ListController
40e9e85398SGreg Roach     * @return void
41e9e85398SGreg Roach     */
42b9fc687eSGreg Roach    public function testIndividualList(): void
43e9e85398SGreg Roach    {
44b9fc687eSGreg Roach        $tree = $this->importTree('demo.ged');
45b9fc687eSGreg Roach        $user = Auth::user();
46e11ffd0cSGreg Roach        app()->instance(Tree::class, $tree);
47e11ffd0cSGreg Roach        app()->instance(User::class, $user);
48b9fc687eSGreg Roach
4987cca37cSGreg Roach        $list_module             = new IndividualListModule();
50b9fc687eSGreg Roach        $localization_service    = new LocalizationService(new LocaleEnUs());
51b9fc687eSGreg Roach        $individual_list_service = new IndividualListService($localization_service, $tree);
52b9fc687eSGreg Roach        $controller              = new ListController($individual_list_service, $localization_service);
53b9fc687eSGreg Roach
54*71378461SGreg Roach        $request  = self::createRequest(RequestMethodInterface::METHOD_GET, [
556ccdf4f0SGreg Roach            'route'  => 'module',
566ccdf4f0SGreg Roach            'module' => 'individual_list',
576ccdf4f0SGreg Roach            'action' => 'List',
5857ab2231SGreg Roach        ])->withAttribute('tree', $tree)
5957ab2231SGreg Roach            ->withAttribute('user', $user);
6057ab2231SGreg Roach        $response = $controller->individualList($request, $list_module);
61*71378461SGreg Roach        $this->assertSame(StatusCodeInterface::STATUS_OK, $response->getStatusCode());
62b9fc687eSGreg Roach
63*71378461SGreg Roach        $request  = self::createRequest(RequestMethodInterface::METHOD_GET, ['route' => 'module', 'module' => 'individual_list', 'action' => 'List', 'alpha' => 'B'])
6457ab2231SGreg Roach            ->withAttribute('tree', $tree)
6557ab2231SGreg Roach            ->withAttribute('user', $user);
6657ab2231SGreg Roach        $response = $controller->individualList($request, $list_module);
67*71378461SGreg Roach        $this->assertSame(StatusCodeInterface::STATUS_OK, $response->getStatusCode());
68b9fc687eSGreg Roach
69*71378461SGreg Roach        $request  = self::createRequest(RequestMethodInterface::METHOD_GET, ['route' => 'module', 'module' => 'individual_list', 'action' => 'List', 'alpha' => ','])
7057ab2231SGreg Roach            ->withAttribute('tree', $tree)
7157ab2231SGreg Roach            ->withAttribute('user', $user);
7257ab2231SGreg Roach        $response = $controller->individualList($request, $list_module);
73*71378461SGreg Roach        $this->assertSame(StatusCodeInterface::STATUS_OK, $response->getStatusCode());
74b9fc687eSGreg Roach
75*71378461SGreg Roach        $request  = self::createRequest(RequestMethodInterface::METHOD_GET, ['route' => 'module', 'module' => 'individual_list', 'action' => 'List', 'alpha' => '@'])
7657ab2231SGreg Roach            ->withAttribute('tree', $tree)
7757ab2231SGreg Roach            ->withAttribute('user', $tree);
7857ab2231SGreg Roach        $response = $controller->individualList($request, $list_module);
79*71378461SGreg Roach        $this->assertSame(StatusCodeInterface::STATUS_OK, $response->getStatusCode());
80b9fc687eSGreg Roach
81*71378461SGreg Roach        $request  = self::createRequest(RequestMethodInterface::METHOD_GET, ['route' => 'module', 'module' => 'individual_list', 'action' => 'List', 'surname' => 'BRAUN'])
8257ab2231SGreg Roach            ->withAttribute('tree', $tree)
8357ab2231SGreg Roach            ->withAttribute('user', $user);
8457ab2231SGreg Roach        $response = $controller->individualList($request, $list_module);
85*71378461SGreg Roach        $this->assertSame(StatusCodeInterface::STATUS_OK, $response->getStatusCode());
86e9e85398SGreg Roach    }
87e9e85398SGreg Roach}
88