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; 21 22use Fisharebest\Webtrees\Contracts\CacheFactoryInterface; 23use Fisharebest\Webtrees\Contracts\UserInterface; 24use Fisharebest\Webtrees\Services\UserService; 25use PHPUnit\Framework\Attributes\CoversClass; 26use Symfony\Component\Cache\Adapter\NullAdapter; 27 28#[CoversClass(User::class)] 29class UserTest extends TestCase 30{ 31 protected static bool $uses_database = true; 32 33 /** 34 * Things to run before every test. 35 */ 36 protected function setUp(): void 37 { 38 parent::setUp(); 39 40 $cache_factory = $this->createMock(CacheFactoryInterface::class); 41 $cache_factory->method('array')->willReturn(new Cache(new NullAdapter())); 42 Registry::cache($cache_factory); 43 } 44 45 public function testConstructor(): void 46 { 47 $user = new User(123, 'username', 'real name', 'email'); 48 49 self::assertInstanceOf(UserInterface::class, $user); 50 self::assertSame(123, $user->id()); 51 self::assertSame('email', $user->email()); 52 self::assertSame('real name', $user->realName()); 53 self::assertSame('username', $user->userName()); 54 } 55 56 public function testGettersAndSetters(): void 57 { 58 $user_service = new UserService(); 59 $user = $user_service->create('user', 'User', 'user@example.com', 'secret'); 60 61 self::assertSame(1, $user->id()); 62 63 self::assertSame('user', $user->userName()); 64 $user->setUserName('foo'); 65 self::assertSame('foo', $user->userName()); 66 67 self::assertSame('User', $user->realName()); 68 $user->setRealName('Foo'); 69 self::assertSame('Foo', $user->realName()); 70 71 self::assertSame('user@example.com', $user->email()); 72 $user->setEmail('foo@example.com'); 73 self::assertSame('foo@example.com', $user->email()); 74 75 self::assertTrue($user->checkPassword('secret')); 76 $user->setPassword('letmein'); 77 self::assertTrue($user->checkPassword('letmein')); 78 } 79 80 public function testPreferences(): void 81 { 82 $user_service = new UserService(); 83 $user = $user_service->create('user', 'User', 'user@example.com', 'secret'); 84 85 self::assertSame('', $user->getPreference('foo')); 86 $user->setPreference('foo', 'bar'); 87 self::assertSame('bar', $user->getPreference('foo')); 88 } 89} 90