From 3dce5de12ddbf310ed047227f3470d478b505540 Mon Sep 17 00:00:00 2001 From: Tomaz Canabrava Date: Sun, 28 Aug 2016 20:11:29 -0300 Subject: Add the beginning of the Preferences test And it actually helped me to find a bug. yey. Signed-off-by: Tomaz Canabrava Signed-off-by: Dirk Hohndel --- tests/testpreferences.cpp | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 tests/testpreferences.cpp (limited to 'tests/testpreferences.cpp') diff --git a/tests/testpreferences.cpp b/tests/testpreferences.cpp new file mode 100644 index 000000000..652cf6f1d --- /dev/null +++ b/tests/testpreferences.cpp @@ -0,0 +1,35 @@ +#include "testpreferences.h" + +#include "core/subsurface-qt/SettingsObjectWrapper.h" + +#include + +#define TEST(METHOD, VALUE) \ +QCOMPARE(METHOD, VALUE); \ +pref->sync(); \ +pref->load(); \ +QCOMPARE(METHOD, VALUE); + + +void TestPreferences::testPreferences() +{ + auto pref = SettingsObjectWrapper::instance(); + pref->load(); + + pref->animation_settings->setAnimationSpeed(20); + TEST(pref->animation_settings->animationSpeed(), 20); + pref->animation_settings->setAnimationSpeed(30); + TEST(pref->animation_settings->animationSpeed(), 30); + + pref->cloud_storage->setBackgroundSync(true); + TEST(pref->cloud_storage->backgroundSync(), true); + pref->cloud_storage->setBackgroundSync(false); + TEST(pref->cloud_storage->backgroundSync(), false); + + pref->cloud_storage->setBaseUrl("test_one"); + TEST(pref->cloud_storage->baseUrl(), QStringLiteral("test_one")); + pref->cloud_storage->setBaseUrl("test_two"); + TEST(pref->cloud_storage->baseUrl(), QStringLiteral("test_two")); +} + +QTEST_MAIN(TestPreferences) -- cgit v1.2.3-70-g09d2