xref: /webtrees/tests/app/DefaultUserTest.php (revision 202c018b592d5a516e4a465dc6dc515f3be37399)
1e5a6b4d4SGreg Roach<?php
23976b470SGreg Roach
3e5a6b4d4SGreg Roach/**
4e5a6b4d4SGreg Roach * webtrees: online genealogy
5d11be702SGreg Roach * Copyright (C) 2023 webtrees development team
6e5a6b4d4SGreg Roach * This program is free software: you can redistribute it and/or modify
7e5a6b4d4SGreg Roach * it under the terms of the GNU General Public License as published by
8e5a6b4d4SGreg Roach * the Free Software Foundation, either version 3 of the License, or
9e5a6b4d4SGreg Roach * (at your option) any later version.
10e5a6b4d4SGreg Roach * This program is distributed in the hope that it will be useful,
11e5a6b4d4SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of
12e5a6b4d4SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13e5a6b4d4SGreg Roach * GNU General Public License for more details.
14e5a6b4d4SGreg Roach * You should have received a copy of the GNU General Public License
1589f7189bSGreg Roach * along with this program. If not, see <https://www.gnu.org/licenses/>.
16e5a6b4d4SGreg Roach */
17fcfa147eSGreg Roach
18e5a6b4d4SGreg Roachdeclare(strict_types=1);
19e5a6b4d4SGreg Roach
20e5a6b4d4SGreg Roachnamespace Fisharebest\Webtrees;
21e5a6b4d4SGreg Roach
2269675509SGreg Roachuse Fisharebest\Webtrees\Contracts\CacheFactoryInterface;
23e5a6b4d4SGreg Roachuse Fisharebest\Webtrees\Contracts\UserInterface;
24*202c018bSGreg Roachuse PHPUnit\Framework\Attributes\CoversClass;
2569675509SGreg Roachuse Symfony\Component\Cache\Adapter\NullAdapter;
26e5a6b4d4SGreg Roach
27*202c018bSGreg Roach#[CoversClass(DefaultUser::class)]
28e5a6b4d4SGreg Roachclass DefaultUserTest extends TestCase
29e5a6b4d4SGreg Roach{
30cd94ca66SGreg Roach    protected static bool $uses_database = true;
31e5a6b4d4SGreg Roach
3292a78a2fSGreg Roach    /**
3392a78a2fSGreg Roach     * Things to run before every test.
3492a78a2fSGreg Roach     */
3557b69958SGreg Roach    protected function setUp(): void
3669675509SGreg Roach    {
3769675509SGreg Roach        parent::setUp();
3869675509SGreg Roach
39cd94ca66SGreg Roach        $cache_factory = $this->createMock(CacheFactoryInterface::class);
4069675509SGreg Roach        $cache_factory->method('array')->willReturn(new Cache(new NullAdapter()));
416b9cb339SGreg Roach        Registry::cache($cache_factory);
4269675509SGreg Roach    }
4369675509SGreg Roach
44e5a6b4d4SGreg Roach    public function testDefaultUser(): void
45e5a6b4d4SGreg Roach    {
46e5a6b4d4SGreg Roach        $user = new DefaultUser();
47e5a6b4d4SGreg Roach
485e933c21SGreg Roach        self::assertInstanceOf(UserInterface::class, $user);
495e933c21SGreg Roach        self::assertSame(-1, $user->id());
505e933c21SGreg Roach        self::assertSame('DEFAULT_USER', $user->email());
515e933c21SGreg Roach        self::assertSame('DEFAULT_USER', $user->realName());
525e933c21SGreg Roach        self::assertSame('', $user->userName());
53e5a6b4d4SGreg Roach    }
54e5a6b4d4SGreg Roach
55e5a6b4d4SGreg Roach    public function testPreferences(): void
56e5a6b4d4SGreg Roach    {
57e5a6b4d4SGreg Roach        $user = new DefaultUser();
58e5a6b4d4SGreg Roach
595e933c21SGreg Roach        self::assertSame('', $user->getPreference('foo'));
605e933c21SGreg Roach        self::assertSame('', $user->getPreference('foo'));
615e933c21SGreg Roach        self::assertSame('bar', $user->getPreference('foo', 'bar'));
62e5a6b4d4SGreg Roach
63e5a6b4d4SGreg Roach        // Default users store preferences in the database
64e5a6b4d4SGreg Roach        $user->setPreference('foo', 'bar');
65e5a6b4d4SGreg Roach
665e933c21SGreg Roach        self::assertSame('bar', $user->getPreference('foo'));
67e5a6b4d4SGreg Roach    }
68e5a6b4d4SGreg Roach}
69