summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorGravatar jan Iversen <jani@apache.org>2018-08-19 14:00:39 +0200
committerGravatar Dirk Hohndel <dirk@hohndel.org>2018-08-25 11:49:47 -0700
commit5dd0981961f367054e38b164804548e7d9b16bfa (patch)
tree99fbf9f894cd74e656c306d6daa2fe5da01cd987 /tests
parent2393dca38ed6f97e15958471cd04c01600af4dfc (diff)
downloadsubsurface-5dd0981961f367054e38b164804548e7d9b16bfa.tar.gz
core/tests: remove QSettings from testgitstorage
update testgitstorage.cpp to use qPrefProxy and qPrefCloudStorage remove core/prefs-macros.h since it is unused Signed-off-by: Jan Iversen <jani@apache.org>
Diffstat (limited to 'tests')
-rw-r--r--tests/testgitstorage.cpp21
1 files changed, 6 insertions, 15 deletions
diff --git a/tests/testgitstorage.cpp b/tests/testgitstorage.cpp
index 43c5ed03a..5184aeb2a 100644
--- a/tests/testgitstorage.cpp
+++ b/tests/testgitstorage.cpp
@@ -5,13 +5,14 @@
#include "core/dive.h"
#include "core/divelist.h"
#include "core/file.h"
-#include "core/prefs-macros.h"
+#include "core/qthelper.h"
#include "core/subsurfacestartup.h"
+#include "core/settings/qPrefProxy.h"
+#include "core/settings/qPrefCloudStorage.h"
#include <QDir>
#include <QTextStream>
#include <QNetworkProxy>
-#include <QSettings>
#include <QTextCodec>
#include <QDebug>
@@ -28,23 +29,13 @@ void TestGitStorage::initTestCase()
QCoreApplication::setOrganizationName("Subsurface");
QCoreApplication::setOrganizationDomain("subsurface.hohndel.org");
QCoreApplication::setApplicationName("Subsurface");
- QSettings s;
- QVariant v;
- s.beginGroup("Network");
- GET_INT_DEF("proxy_type", proxy_type, QNetworkProxy::DefaultProxy);
- GET_TXT("proxy_host", proxy_host);
- GET_INT("proxy_port", proxy_port);
- GET_BOOL("proxy_auth", proxy_auth);
- GET_TXT("proxy_user", proxy_user);
- GET_TXT("proxy_pass", proxy_pass);
- s.endGroup();
- s.beginGroup("CloudStorage");
- GET_TXT("cloud_base_url", cloud_base_url);
+ qPrefProxy::load();
+ qPrefCloudStorage::load();
+
QString gitUrl(prefs.cloud_base_url);
if (gitUrl.right(1) != "/")
gitUrl += "/";
prefs.cloud_git_url = copy_qstring(gitUrl + "git");
- s.endGroup();
prefs.cloud_storage_email_encoded = strdup("ssrftest@hohndel.org");
prefs.cloud_storage_password = strdup("geheim");
QNetworkProxy proxy;