Issues (257)

PasswordChangeNeededSubscriberTest.php (1 issue)

Labels
Severity
1
<?php
2
/**
3
 * This file is part of Part-DB (https://github.com/Part-DB/Part-DB-symfony).
4
 *
5
 * Copyright (C) 2019 - 2020 Jan Böhmer (https://github.com/jbtronics)
6
 *
7
 * This program is free software: you can redistribute it and/or modify
8
 * it under the terms of the GNU Affero General Public License as published
9
 * by the Free Software Foundation, either version 3 of the License, or
10
 * (at your option) any later version.
11
 *
12
 * This program is distributed in the hope that it will be useful,
13
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15
 * GNU Affero General Public License for more details.
16
 *
17
 * You should have received a copy of the GNU Affero General Public License
18
 * along with this program.  If not, see <https://www.gnu.org/licenses/>.
19
 */
20
21
declare(strict_types=1);
22
23
namespace App\Tests\EventSubscriber;
24
25
use App\Entity\UserSystem\Group;
26
use App\Entity\UserSystem\U2FKey;
27
use App\Entity\UserSystem\User;
28
use App\Entity\UserSystem\WebauthnKey;
29
use App\EventSubscriber\UserSystem\PasswordChangeNeededSubscriber;
30
use PHPUnit\Framework\TestCase;
0 ignored issues
show
The type PHPUnit\Framework\TestCase was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
31
use Ramsey\Uuid\Uuid;
32
use Webauthn\TrustPath\EmptyTrustPath;
33
34
class PasswordChangeNeededSubscriberTest extends TestCase
35
{
36
    public function testTFARedirectNeeded(): void
37
    {
38
        $user = new User();
39
        $group = new Group();
40
41
        //A user without a group must not redirect
42
        $user->setGroup(null);
43
        $this->assertFalse(PasswordChangeNeededSubscriber::TFARedirectNeeded($user));
44
45
        //When the group does not enforce the redirect the user must not be redirected
46
        $user->setGroup($group);
47
        $this->assertFalse(PasswordChangeNeededSubscriber::TFARedirectNeeded($user));
48
49
        //The user must be redirected if the group enforces 2FA and it does not have a method
50
        $group->setEnforce2FA(true);
51
        $this->assertTrue(PasswordChangeNeededSubscriber::TFARedirectNeeded($user));
52
53
        //User must not be redirect if google authenticator is setup
54
        $user->setGoogleAuthenticatorSecret('abcd');
55
        $this->assertFalse(PasswordChangeNeededSubscriber::TFARedirectNeeded($user));
56
57
        //User must not be redirect if 2FA is setup
58
        $user->setGoogleAuthenticatorSecret(null);
59
        $user->addWebauthnKey(new WebauthnKey(
60
            "Test",
61
            "Test",
62
            [],
63
            "Test",
64
            new EmptyTrustPath(),
65
            Uuid::fromDateTime(new \DateTime()),
66
            "",
67
            "",
68
            0
69
        ));
70
        $this->assertFalse(PasswordChangeNeededSubscriber::TFARedirectNeeded($user));
71
    }
72
}
73