1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90
|
// SPDX-FileCopyrightText: 2021 - 2022 UnionTech Software Technology Co., Ltd.
//
// SPDX-License-Identifier: LGPL-3.0-or-later
#include <gtest/gtest.h>
#include <QFile>
#include <QTextStream>
#include <QJsonObject>
#include "settings/dsettings.h"
#include "settings/dsettingsoption.h"
#include "settings/dsettingsgroup.h"
#include "settings/backend/gsettingsbackend.h"
#include "settings/backend/qsettingbackend.h"
DCORE_USE_NAMESPACE
class ut_GSettings : public testing::Test
{
protected:
void SetUp() override;
void TearDown() override;
DSettings *settings = nullptr;
GSettingsBackend * gSettingBackend = nullptr;
QString jsonContent;
};
void ut_GSettings::SetUp()
{
GTEST_SKIP_("Do not test GSettingsBackend. schema was removed...");
QFile file("/tmp/test.json");
if (!file.open(QIODevice::WriteOnly | QIODevice::Text))
return;
QTextStream out(&file);
jsonContent = " { "
" \"gsettings\": { "
" \"id\": \"com.deepin.dtk\","
" \"path\": \"/dtk/deepin/deepin-terminal/\" "
"},"
" \"groups\": [{ "
" \"key\": \"base\", "
" \"name\": \"Basic settings\", "
" \"groups\": [{ "
" \"key\": \"open_action\", "
" \"name\": \"Open Action\", "
" \"options\": [{ "
" \"key\": \"paletteType\", "
" \"type\": \"checkbox\", "
" \"text\": \"Always Open On New Windows\", "
" \"default\": true "
" }] "
" }] }]"
"}";
out << jsonContent;
file.close();
settings = DSettings::fromJson(jsonContent.toLatin1());
gSettingBackend = new GSettingsBackend(settings);
}
void ut_GSettings::TearDown()
{
if (gSettingBackend) {
delete gSettingBackend;
gSettingBackend = nullptr;
}
if (settings) {
delete settings;
settings = nullptr;
}
QFile file("/tmp/test.json");
if (file.exists())
file.remove();
}
TEST_F(ut_GSettings, testGSettingBackendKeys)
{
QStringList qKeys = gSettingBackend->keys();
ASSERT_TRUE(!qKeys.isEmpty());
}
TEST_F(ut_GSettings, testGSettingBackendGetOption)
{
QStringList qKeys = gSettingBackend->keys();
ASSERT_TRUE(!qKeys.isEmpty());
QVariant value = gSettingBackend->getOption(qKeys[0]);
ASSERT_TRUE(!value.toString().isEmpty());
}
|