xref: /webtrees/tests/app/Http/RequestHandlers/AccountUpdateTest.php (revision dd7506438d263cafa87ed54abdb26282971f3fd0)
1<?php
2
3/**
4 * webtrees: online genealogy
5 * Copyright (C) 2023 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 <https://www.gnu.org/licenses/>.
16 */
17
18declare(strict_types=1);
19
20namespace Fisharebest\Webtrees\Http\RequestHandlers;
21
22use Fig\Http\Message\StatusCodeInterface;
23use Fisharebest\Webtrees\Contracts\UserInterface;
24use Fisharebest\Webtrees\Services\UserService;
25use Fisharebest\Webtrees\TestCase;
26use Fisharebest\Webtrees\Tree;
27use Fisharebest\Webtrees\User;
28
29/**
30 * Test the AccountUpdate request handler.
31 *
32 * @covers \Fisharebest\Webtrees\Http\RequestHandlers\AccountUpdate
33 */
34class AccountUpdateTest extends TestCase
35{
36    public function testHandler(): void
37    {
38        $user_service = $this->createMock(UserService::class);
39
40        $user = $this->createMock(User::class);
41        $user->expects(self::once())->method('setEmail')->with('b');
42        $user->expects(self::once())->method('setPassword')->with('e');
43        $user->expects(self::once())->method('setRealName')->with('d');
44        $user->expects(self::once())->method('setUserName')->with('h');
45        $user->expects(self::exactly(4))
46            ->method('setPreference')
47            ->with(
48                self::withConsecutive([UserInterface::PREF_CONTACT_METHOD, UserInterface::PREF_LANGUAGE, UserInterface::PREF_TIME_ZONE, UserInterface::PREF_IS_VISIBLE_ONLINE]),
49                self::withConsecutive(['a', 'c', 'g', ''])
50            );
51
52        $tree = $this->createMock(Tree::class);
53        $tree->expects(self::once())->method('setUserPreference')->with($user, UserInterface::PREF_TREE_DEFAULT_XREF, 'f');
54
55        $handler  = new AccountUpdate($user_service);
56        $request  = self::createRequest()
57            ->withAttribute('tree', $tree)
58            ->withAttribute('user', $user)
59            ->withParsedBody([
60                'contact-method' => 'a',
61                'email'          => 'b',
62                'language'       => 'c',
63                'real_name'      => 'd',
64                'password'       => 'e',
65                'default-xref'   => 'f',
66                'timezone'       => 'g',
67                'user_name'      => 'h',
68                'visible-online' => 'i',
69            ]);
70        $response = $handler->handle($request);
71
72        self::assertSame(StatusCodeInterface::STATUS_FOUND, $response->getStatusCode());
73    }
74}
75