xref: /webtrees/tests/app/GuestUserTest.php (revision 2adcbd9abb8c46fec6ee23c7f719f34dd6b5451d)
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 GuestUser class
24 */
25class GuestUserTest extends TestCase
26{
27    /**
28     * @covers \Fisharebest\Webtrees\GuestUser::__construct
29     * @covers \Fisharebest\Webtrees\GuestUser::id
30     * @covers \Fisharebest\Webtrees\GuestUser::email
31     * @covers \Fisharebest\Webtrees\GuestUser::realName
32     * @covers \Fisharebest\Webtrees\GuestUser::userName
33     * @return void
34     */
35    public function testAnonymous(): void
36    {
37        $user = new GuestUser();
38
39        $this->assertInstanceOf(UserInterface::class, $user);
40        $this->assertSame(0, $user->id());
41        $this->assertSame('GUEST_USER', $user->email());
42        $this->assertSame('GUEST_USER', $user->realName());
43        $this->assertSame('', $user->userName());
44    }
45
46    /**
47     * @covers \Fisharebest\Webtrees\GuestUser::__construct
48     * @covers \Fisharebest\Webtrees\GuestUser::id
49     * @covers \Fisharebest\Webtrees\GuestUser::email
50     * @covers \Fisharebest\Webtrees\GuestUser::realName
51     * @covers \Fisharebest\Webtrees\GuestUser::userName
52     * @return void
53     */
54    public function testVisitor(): void
55    {
56        $user = new GuestUser('guest@example.com', 'guest user');
57
58        $this->assertInstanceOf(UserInterface::class, $user);
59        $this->assertSame(0, $user->id());
60        $this->assertSame('guest@example.com', $user->email());
61        $this->assertSame('guest user', $user->realName());
62        $this->assertSame('', $user->userName());
63    }
64
65    /**
66     * @covers \Fisharebest\Webtrees\GuestUser::getPreference
67     * @covers \Fisharebest\Webtrees\GuestUser::setPreference
68     * @return void
69     */
70    public function testPreferences(): void
71    {
72        $user = new GuestUser();
73
74        $this->assertSame('', $user->getPreference('foo'));
75        $this->assertSame('', $user->getPreference('foo', ''));
76        $this->assertSame('bar', $user->getPreference('foo', 'bar'));
77
78        // Guests users store preferences in the session
79        $user->setPreference('foo', 'bar');
80
81        $this->assertSame('bar', $user->getPreference('foo'));
82    }
83}
84