keepassxc

Форк
0
/
TestPasswordHealth.cpp 
66 строк · 2.3 Кб
1
/*
2
 *  Copyright (C) 2019 KeePassXC Team <team@keepassxc.org>
3
 *
4
 *  This program is free software: you can redistribute it and/or modify
5
 *  it under the terms of the GNU General Public License as published by
6
 *  the Free Software Foundation, either version 2 or (at your option)
7
 *  version 3 of the License.
8
 *
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
 *
14
 *  You should have received a copy of the GNU General Public License
15
 *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
16
 */
17

18
#include "TestPasswordHealth.h"
19

20
#include "core/PasswordHealth.h"
21

22
#include <QTest>
23

24
QTEST_GUILESS_MAIN(TestPasswordHealth)
25

26
void TestPasswordHealth::initTestCase()
27
{
28
}
29

30
void TestPasswordHealth::testNoDb()
31
{
32
    const auto empty = PasswordHealth("");
33
    QCOMPARE(empty.score(), 0);
34
    QCOMPARE(empty.entropy(), 0.0);
35
    QCOMPARE(empty.quality(), PasswordHealth::Quality::Bad);
36
    QVERIFY(!empty.scoreReason().isEmpty());
37
    QVERIFY(!empty.scoreDetails().isEmpty());
38

39
    const auto poor = PasswordHealth("secret");
40
    QCOMPARE(poor.score(), 6);
41
    QCOMPARE(int(poor.entropy()), 6);
42
    QCOMPARE(poor.quality(), PasswordHealth::Quality::Poor);
43
    QVERIFY(!poor.scoreReason().isEmpty());
44
    QVERIFY(!poor.scoreDetails().isEmpty());
45

46
    const auto weak = PasswordHealth("Yohb2ChR4");
47
    QCOMPARE(weak.score(), 47);
48
    QCOMPARE(int(weak.entropy()), 47);
49
    QCOMPARE(weak.quality(), PasswordHealth::Quality::Weak);
50
    QVERIFY(!weak.scoreReason().isEmpty());
51
    QVERIFY(!weak.scoreDetails().isEmpty());
52

53
    const auto good = PasswordHealth("MIhIN9UKrgtPL2hp");
54
    QCOMPARE(good.score(), 78);
55
    QCOMPARE(int(good.entropy()), 78);
56
    QCOMPARE(good.quality(), PasswordHealth::Quality::Good);
57
    QVERIFY(good.scoreReason().isEmpty());
58
    QVERIFY(good.scoreDetails().isEmpty());
59

60
    const auto excellent = PasswordHealth("prompter-ream-oversleep-step-extortion-quarrel-reflected-prefix");
61
    QCOMPARE(excellent.score(), 164);
62
    QCOMPARE(int(excellent.entropy()), 164);
63
    QCOMPARE(excellent.quality(), PasswordHealth::Quality::Excellent);
64
    QVERIFY(excellent.scoreReason().isEmpty());
65
    QVERIFY(excellent.scoreDetails().isEmpty());
66
}
67

Использование cookies

Мы используем файлы cookie в соответствии с Политикой конфиденциальности и Политикой использования cookies.

Нажимая кнопку «Принимаю», Вы даете АО «СберТех» согласие на обработку Ваших персональных данных в целях совершенствования нашего веб-сайта и Сервиса GitVerse, а также повышения удобства их использования.

Запретить использование cookies Вы можете самостоятельно в настройках Вашего браузера.