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\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 = $this->createMock(UserService::class); 42 43 $user = $this->createMock(User::class); 44 $user->expects($this->once())->method('setEmail')->with('b'); 45 $user->expects($this->once())->method('setPassword')->with('e'); 46 $user->expects($this->once())->method('setRealName')->with('d'); 47 $user->expects($this->once())->method('setUserName')->with('h'); 48 $user->expects($this->at(6))->method('setPreference')->with(User::PREF_CONTACT_METHOD, 'a'); 49 $user->expects($this->at(7))->method('setPreference')->with(User::PREF_LANGUAGE, 'c'); 50 $user->expects($this->at(8))->method('setPreference')->with(User::PREF_TIME_ZONE, 'g'); 51 $user->expects($this->at(9))->method('setPreference')->with(User::PREF_IS_VISIBLE_ONLINE, 'i'); 52 53 $tree = $this->createMock(Tree::class); 54 $tree->expects($this->once())->method('setUserPreference')->with($user, User::PREF_TREE_DEFAULT_XREF, 'f'); 55 56 $handler = new AccountUpdate($user_service); 57 $request = self::createRequest() 58 ->withAttribute('tree', $tree) 59 ->withAttribute('user', $user) 60 ->withParsedBody([ 61 'contact-method' => 'a', 62 'email' => 'b', 63 'language' => 'c', 64 'real_name' => 'd', 65 'password' => 'e', 66 'default-xref' => 'f', 67 'timezone' => 'g', 68 'user_name' => 'h', 69 'visible-online' => 'i', 70 ]); 71 $response = $handler->handle($request); 72 73 $this->assertSame(StatusCodeInterface::STATUS_FOUND, $response->getStatusCode()); 74 } 75} 76