keepassxc

Форк
0
/
TestPassphraseGenerator.cpp 
54 строки · 1.8 Кб
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 "TestPassphraseGenerator.h"
19
#include "core/PassphraseGenerator.h"
20
#include "crypto/Crypto.h"
21

22
#include <QRegularExpression>
23
#include <QTest>
24

25
QTEST_GUILESS_MAIN(TestPassphraseGenerator)
26

27
void TestPassphraseGenerator::initTestCase()
28
{
29
    QVERIFY(Crypto::init());
30
}
31

32
void TestPassphraseGenerator::testWordCase()
33
{
34
    PassphraseGenerator generator;
35
    generator.setWordSeparator(" ");
36
    QVERIFY(generator.isValid());
37

38
    QString passphrase;
39
    passphrase = generator.generatePassphrase();
40
    QCOMPARE(passphrase, passphrase.toLower());
41

42
    generator.setWordCase(PassphraseGenerator::LOWERCASE);
43
    passphrase = generator.generatePassphrase();
44
    QCOMPARE(passphrase, passphrase.toLower());
45

46
    generator.setWordCase(PassphraseGenerator::UPPERCASE);
47
    passphrase = generator.generatePassphrase();
48
    QCOMPARE(passphrase, passphrase.toUpper());
49

50
    generator.setWordCase(PassphraseGenerator::TITLECASE);
51
    passphrase = generator.generatePassphrase();
52
    QRegularExpression regex("^([A-Z][a-z]* ?)+$");
53
    QVERIFY(regex.match(passphrase).hasMatch());
54
}
55

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

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

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

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