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 NoReplyUser class 24 */ 25class NoReplyUserTest extends TestCase 26{ 27 protected static $uses_database = true; 28 29 /** 30 * @covers \Fisharebest\Webtrees\NoReplyUser::id 31 * @covers \Fisharebest\Webtrees\NoReplyUser::email 32 * @covers \Fisharebest\Webtrees\NoReplyUser::realName 33 * @covers \Fisharebest\Webtrees\NoReplyUser::userName 34 * @return void 35 */ 36 public function testConstructor(): void 37 { 38 $user = new NoReplyUser(); 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::NAME, $user->realName()); 44 $this->assertSame('', $user->userName()); 45 } 46 47 /** 48 * @covers \Fisharebest\Webtrees\NoReplyUser::getPreference 49 * @covers \Fisharebest\Webtrees\NoReplyUser::setPreference 50 * @return void 51 */ 52 public function testPreferences(): void 53 { 54 $user = new NoReplyUser(); 55 56 $this->assertSame('', $user->getPreference('foo')); 57 $this->assertSame('', $user->getPreference('foo', '')); 58 $this->assertSame('bar', $user->getPreference('foo', 'bar')); 59 60 // No reply users do not have preferences 61 $user->setPreference('foo', 'bar'); 62 63 $this->assertSame('', $user->getPreference('foo')); 64 } 65} 66