1e5a6b4d4SGreg Roach<?php 23976b470SGreg Roach 3e5a6b4d4SGreg Roach/** 4e5a6b4d4SGreg Roach * webtrees: online genealogy 5d11be702SGreg Roach * Copyright (C) 2023 webtrees development team 6e5a6b4d4SGreg Roach * This program is free software: you can redistribute it and/or modify 7e5a6b4d4SGreg Roach * it under the terms of the GNU General Public License as published by 8e5a6b4d4SGreg Roach * the Free Software Foundation, either version 3 of the License, or 9e5a6b4d4SGreg Roach * (at your option) any later version. 10e5a6b4d4SGreg Roach * This program is distributed in the hope that it will be useful, 11e5a6b4d4SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of 12e5a6b4d4SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13e5a6b4d4SGreg Roach * GNU General Public License for more details. 14e5a6b4d4SGreg Roach * You should have received a copy of the GNU General Public License 1589f7189bSGreg Roach * along with this program. If not, see <https://www.gnu.org/licenses/>. 16e5a6b4d4SGreg Roach */ 17fcfa147eSGreg Roach 18e5a6b4d4SGreg Roachdeclare(strict_types=1); 19e5a6b4d4SGreg Roach 20e5a6b4d4SGreg Roachnamespace Fisharebest\Webtrees; 21e5a6b4d4SGreg Roach 22e5a6b4d4SGreg Roachuse Fisharebest\Webtrees\Contracts\UserInterface; 232c685d76SGreg Roachuse Fisharebest\Webtrees\Services\GedcomImportService; 241e653452SGreg Roachuse Fisharebest\Webtrees\Services\TreeService; 25*202c018bSGreg Roachuse PHPUnit\Framework\Attributes\CoversClass; 26e5a6b4d4SGreg Roach 27*202c018bSGreg Roach 28*202c018bSGreg Roach#[CoversClass(TreeUser::class)] 29e5a6b4d4SGreg Roachclass TreeUserTest extends TestCase 30e5a6b4d4SGreg Roach{ 31cd94ca66SGreg Roach protected static bool $uses_database = true; 32e5a6b4d4SGreg Roach 33e5a6b4d4SGreg Roach public function testConstructor(): void 34e5a6b4d4SGreg Roach { 352c685d76SGreg Roach $gedcom_import_service = new GedcomImportService(); 362c685d76SGreg Roach $tree_service = new TreeService($gedcom_import_service); 371e653452SGreg Roach $tree = $tree_service->create('name', 'title'); 38e5a6b4d4SGreg Roach $user = new TreeUser($tree); 39e5a6b4d4SGreg Roach 405e933c21SGreg Roach self::assertInstanceOf(UserInterface::class, $user); 415e933c21SGreg Roach self::assertSame(0, $user->id()); 425e933c21SGreg Roach self::assertSame('', $user->email()); 435e933c21SGreg Roach self::assertSame('title', $user->realName()); 445e933c21SGreg Roach self::assertSame('', $user->userName()); 45e5a6b4d4SGreg Roach } 46e5a6b4d4SGreg Roach 47e5a6b4d4SGreg Roach public function testPreferences(): void 48e5a6b4d4SGreg Roach { 492c685d76SGreg Roach $gedcom_import_service = new GedcomImportService(); 502c685d76SGreg Roach $tree_service = new TreeService($gedcom_import_service); 511e653452SGreg Roach $tree = $tree_service->create('name', 'title'); 52e5a6b4d4SGreg Roach $user = new TreeUser($tree); 53e5a6b4d4SGreg Roach 545e933c21SGreg Roach self::assertSame('', $user->getPreference('foo')); 555e933c21SGreg Roach self::assertSame('', $user->getPreference('foo')); 565e933c21SGreg Roach self::assertSame('bar', $user->getPreference('foo', 'bar')); 57e5a6b4d4SGreg Roach 58e5a6b4d4SGreg Roach // Tree users do not have preferences 59e5a6b4d4SGreg Roach $user->setPreference('foo', 'bar'); 60e5a6b4d4SGreg Roach 615e933c21SGreg Roach self::assertSame('', $user->getPreference('foo')); 62e5a6b4d4SGreg Roach } 63e5a6b4d4SGreg Roach} 64