1<?php 2 3/** 4 * webtrees: online genealogy 5 * Copyright (C) 2020 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\Http\Controllers\Admin; 21 22use Fig\Http\Message\StatusCodeInterface; 23use Fisharebest\Webtrees\Http\RequestHandlers\AccountUpdate; 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 /** 37 * @return void 38 */ 39 public function testHandler(): void 40 { 41 $user_service = self::createMock(UserService::class); 42 43 $user = self::createMock(User::class); 44 $user->expects(self::once())->method('setEmail')->with('b'); 45 $user->expects(self::once())->method('setPassword')->with('e'); 46 $user->expects(self::once())->method('setRealName')->with('d'); 47 $user->expects(self::once())->method('setUserName')->with('h'); 48 $user->expects(self::exactly(4)) 49 ->method('setPreference') 50 ->withConsecutive( 51 [User::PREF_CONTACT_METHOD, 'a'], 52 [User::PREF_LANGUAGE, 'c'], 53 [User::PREF_TIME_ZONE, 'g'], 54 [User::PREF_IS_VISIBLE_ONLINE, 'i'] 55 ); 56 57 $tree = self::createMock(Tree::class); 58 $tree->expects(self::once())->method('setUserPreference')->with($user, User::PREF_TREE_DEFAULT_XREF, 'f'); 59 60 $handler = new AccountUpdate($user_service); 61 $request = self::createRequest() 62 ->withAttribute('tree', $tree) 63 ->withAttribute('user', $user) 64 ->withParsedBody([ 65 'contact-method' => 'a', 66 'email' => 'b', 67 'language' => 'c', 68 'real_name' => 'd', 69 'password' => 'e', 70 'default-xref' => 'f', 71 'timezone' => 'g', 72 'user_name' => 'h', 73 'visible-online' => 'i', 74 ]); 75 $response = $handler->handle($request); 76 77 self::assertSame(StatusCodeInterface::STATUS_FOUND, $response->getStatusCode()); 78 } 79} 80