keepassxc

Форк
0
/
TestConfig.cpp 
42 строки · 1.4 Кб
1
/*
2
 *  Copyright (C) 2020 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 "TestConfig.h"
19

20
#include <QTest>
21

22
#include "config-keepassx-tests.h"
23
#include "util/TemporaryFile.h"
24

25
QTEST_GUILESS_MAIN(TestConfig)
26

27
const QString oldTrueConfigPath = QString(KEEPASSX_TEST_DATA_DIR).append("/OutdatedConfig.ini");
28

29
// upgrade config file with deprecated settings (all of which are set to non-default values)
30
void TestConfig::testUpgrade()
31
{
32
    TemporaryFile tempFile;
33

34
    QVERIFY(tempFile.copyFromFile(oldTrueConfigPath));
35
    Config::createConfigFromFile(tempFile.fileName());
36

37
    // value of new setting should be opposite the value of deprecated setting
38
    QVERIFY(!config()->get(Config::Security_PasswordsHidden).toBool());
39
    QVERIFY(config()->get(Config::Security_PasswordEmptyPlaceholder).toBool());
40

41
    tempFile.remove();
42
}
43

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

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

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

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