1<?php 2/** 3 * webtrees: online genealogy 4 * Copyright (C) 2019 webtrees development team 5 * This program is free software: you can redistribute it and/or modify 6 * it under the terms of the GNU General Public License as published by 7 * the Free Software Foundation, either version 3 of the License, or 8 * (at your option) any later version. 9 * This program is distributed in the hope that it will be useful, 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 * GNU General Public License for more details. 13 * You should have received a copy of the GNU General Public License 14 * along with this program. If not, see <http://www.gnu.org/licenses/>. 15 */ 16declare(strict_types=1); 17 18namespace Fisharebest\Webtrees; 19 20use Fisharebest\Webtrees\Contracts\UserInterface; 21 22/** 23 * Test the SiteUser class 24 */ 25class SiteUserTest extends TestCase 26{ 27 protected static $uses_database = true; 28 29 /** 30 * @covers \Fisharebest\Webtrees\SiteUser::id 31 * @covers \Fisharebest\Webtrees\SiteUser::email 32 * @covers \Fisharebest\Webtrees\SiteUser::realName 33 * @covers \Fisharebest\Webtrees\SiteUser::userName 34 * @return void 35 */ 36 public function testConstructor(): void 37 { 38 $user = new SiteUser(); 39 40 $this->assertInstanceOf(UserInterface::class, $user); 41 $this->assertSame(0, $user->id()); 42 $this->assertSame('no-reply@localhost', $user->email()); 43 $this->assertSame('webtrees', $user->realName()); 44 $this->assertSame('', $user->userName()); 45 46 Site::setPreference('SMTP_FROM_NAME', 'foo@example.com'); 47 $this->assertSame('foo@example.com', $user->email()); 48 } 49 50 /** 51 * @covers \Fisharebest\Webtrees\SiteUser::getPreference 52 * @covers \Fisharebest\Webtrees\SiteUser::setPreference 53 * @return void 54 */ 55 public function testPreferences(): void 56 { 57 $user = new SiteUser(); 58 59 $this->assertSame('', $user->getPreference('foo')); 60 $this->assertSame('', $user->getPreference('foo', '')); 61 $this->assertSame('bar', $user->getPreference('foo', 'bar')); 62 63 // Site users do not have preferences 64 $user->setPreference('foo', 'bar'); 65 66 $this->assertSame('', $user->getPreference('foo')); 67 } 68} 69