xref: /webtrees/tests/app/DefaultUserTest.php (revision 80ea34ecc70d4262c6d367d07e1df0ef880f5367)
1<?php
2
3/**
4 * webtrees: online genealogy
5 * Copyright (C) 2023 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 <https://www.gnu.org/licenses/>.
16 */
17
18declare(strict_types=1);
19
20namespace Fisharebest\Webtrees;
21
22use Fisharebest\Webtrees\Contracts\CacheFactoryInterface;
23use Fisharebest\Webtrees\Contracts\UserInterface;
24use Symfony\Component\Cache\Adapter\NullAdapter;
25
26/**
27 * Test the DefaultUser class
28 */
29class DefaultUserTest extends TestCase
30{
31    protected static bool $uses_database = true;
32
33    /**
34     * Things to run before every test.
35     */
36    protected function setUp(): void
37    {
38        parent::setUp();
39
40        $cache_factory = $this->createMock(CacheFactoryInterface::class);
41        $cache_factory->method('array')->willReturn(new Cache(new NullAdapter()));
42        Registry::cache($cache_factory);
43    }
44
45    /**
46     * @covers \Fisharebest\Webtrees\DefaultUser::__construct
47     * @covers \Fisharebest\Webtrees\DefaultUser::id
48     * @covers \Fisharebest\Webtrees\DefaultUser::email
49     * @covers \Fisharebest\Webtrees\DefaultUser::realName
50     * @covers \Fisharebest\Webtrees\DefaultUser::userName
51     * @return void
52     */
53    public function testDefaultUser(): void
54    {
55        $user = new DefaultUser();
56
57        self::assertInstanceOf(UserInterface::class, $user);
58        self::assertSame(-1, $user->id());
59        self::assertSame('DEFAULT_USER', $user->email());
60        self::assertSame('DEFAULT_USER', $user->realName());
61        self::assertSame('', $user->userName());
62    }
63
64    /**
65     * @covers \Fisharebest\Webtrees\DefaultUser::getPreference
66     * @covers \Fisharebest\Webtrees\DefaultUser::setPreference
67     * @return void
68     */
69    public function testPreferences(): void
70    {
71        $user = new DefaultUser();
72
73        self::assertSame('', $user->getPreference('foo'));
74        self::assertSame('', $user->getPreference('foo'));
75        self::assertSame('bar', $user->getPreference('foo', 'bar'));
76
77        // Default users store preferences in the database
78        $user->setPreference('foo', 'bar');
79
80        self::assertSame('bar', $user->getPreference('foo'));
81    }
82}
83