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 Symfony\Component\Cache\Adapter\NullAdapter; 25 26/** 27 * Test the DefaultUser class 28 */ 29class DefaultUserTest 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 /** 46 * @covers \Fisharebest\Webtrees\DefaultUser::__construct 47 * @covers \Fisharebest\Webtrees\DefaultUser::id 48 * @covers \Fisharebest\Webtrees\DefaultUser::email 49 * @covers \Fisharebest\Webtrees\DefaultUser::realName 50 * @covers \Fisharebest\Webtrees\DefaultUser::userName 51 */ 52 public function testDefaultUser(): void 53 { 54 $user = new DefaultUser(); 55 56 self::assertInstanceOf(UserInterface::class, $user); 57 self::assertSame(-1, $user->id()); 58 self::assertSame('DEFAULT_USER', $user->email()); 59 self::assertSame('DEFAULT_USER', $user->realName()); 60 self::assertSame('', $user->userName()); 61 } 62 63 /** 64 * @covers \Fisharebest\Webtrees\DefaultUser::getPreference 65 * @covers \Fisharebest\Webtrees\DefaultUser::setPreference 66 */ 67 public function testPreferences(): void 68 { 69 $user = new DefaultUser(); 70 71 self::assertSame('', $user->getPreference('foo')); 72 self::assertSame('', $user->getPreference('foo')); 73 self::assertSame('bar', $user->getPreference('foo', 'bar')); 74 75 // Default users store preferences in the database 76 $user->setPreference('foo', 'bar'); 77 78 self::assertSame('bar', $user->getPreference('foo')); 79 } 80} 81