File indexing completed on 2024-12-01 04:35:28
0001 /* 0002 SPDX-FileCopyrightText: 2017-2024 Laurent Montel <montel@kde.org> 0003 0004 SPDX-License-Identifier: LGPL-2.0-or-later 0005 */ 0006 0007 #pragma once 0008 0009 #include <QObject> 0010 0011 class RuqolaServerConfigTest : public QObject 0012 { 0013 Q_OBJECT 0014 public: 0015 explicit RuqolaServerConfigTest(QObject *parent = nullptr); 0016 ~RuqolaServerConfigTest() override = default; 0017 private Q_SLOTS: 0018 void shouldHaveDefaultValues(); 0019 void shouldAssignValues(); 0020 0021 void shouldEnabledRc60_data(); 0022 void shouldEnabledRc60(); 0023 0024 void shouldVerifyOauthType_data(); 0025 void shouldVerifyOauthType(); 0026 0027 void shouldVerifyThatServerSupportService(); 0028 0029 void shouldAddRuqolaAuthenticationSupport(); 0030 0031 void shouldTestVersion_data(); 0032 void shouldTestVersion(); 0033 0034 void shouldSerializeConfig_data(); 0035 void shouldSerializeConfig(); 0036 };