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 */ 17declare(strict_types=1); 18 19namespace Fisharebest\Webtrees; 20 21use Fisharebest\Webtrees\Contracts\UserInterface; 22 23/** 24 * Test the TreeUser class 25 */ 26class TreeUserTest extends TestCase 27{ 28 protected static $uses_database = true; 29 30 /** 31 * @covers \Fisharebest\Webtrees\TreeUser::__construct 32 * @covers \Fisharebest\Webtrees\TreeUser::id 33 * @covers \Fisharebest\Webtrees\TreeUser::email 34 * @covers \Fisharebest\Webtrees\TreeUser::realName 35 * @covers \Fisharebest\Webtrees\TreeUser::userName 36 * @return void 37 */ 38 public function testConstructor(): void 39 { 40 $tree = Tree::create('name', 'title'); 41 $user = new TreeUser($tree); 42 43 $this->assertInstanceOf(UserInterface::class, $user); 44 $this->assertSame(0, $user->id()); 45 $this->assertSame('', $user->email()); 46 $this->assertSame('title', $user->realName()); 47 $this->assertSame('', $user->userName()); 48 } 49 50 /** 51 * @covers \Fisharebest\Webtrees\TreeUser::getPreference 52 * @covers \Fisharebest\Webtrees\TreeUser::setPreference 53 * @return void 54 */ 55 public function testPreferences(): void 56 { 57 $tree = Tree::create('name', 'title'); 58 $user = new TreeUser($tree); 59 60 $this->assertSame('', $user->getPreference('foo')); 61 $this->assertSame('', $user->getPreference('foo', '')); 62 $this->assertSame('bar', $user->getPreference('foo', 'bar')); 63 64 // Tree users do not have preferences 65 $user->setPreference('foo', 'bar'); 66 67 $this->assertSame('', $user->getPreference('foo')); 68 } 69} 70