blob: 230197b10bc2f563f824bba702b7bbd812a45594 (
plain) (
blame)
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
|
// SPDX-License-Identifier: GPL-2.0
#include "testqPrefFacebook.h"
#include "core/settings/qPref.h"
#include "core/pref.h"
#include "core/qthelper.h"
#include <QTest>
void TestQPrefFacebook::initTestCase()
{
QCoreApplication::setOrganizationName("Subsurface");
QCoreApplication::setOrganizationDomain("subsurface.hohndel.org");
QCoreApplication::setApplicationName("SubsurfaceTestQPrefFacebook");
}
void TestQPrefFacebook::test_struct_get()
{
// Test struct pref -> get func.
auto tst = qPrefFacebook::instance();
prefs.facebook.access_token = copy_qstring("t1 token");
prefs.facebook.album_id = copy_qstring("t1 album");
prefs.facebook.user_id = copy_qstring("t1 user");
QCOMPARE(tst->access_token(), QString(prefs.facebook.access_token));
QCOMPARE(tst->album_id(), QString(prefs.facebook.album_id));
QCOMPARE(tst->user_id(), QString(prefs.facebook.user_id));
}
void TestQPrefFacebook::test_set_struct()
{
// Test set func -> struct pref
auto tst = qPrefFacebook::instance();
tst->set_access_token("t2 token");
tst->set_album_id("t2 album");
tst->set_user_id("t2 user");
QCOMPARE(QString(prefs.facebook.access_token), QString("t2 token"));
QCOMPARE(QString(prefs.facebook.album_id), QString("t2 album"));
QCOMPARE(QString(prefs.facebook.user_id), QString("t2 user"));
}
void TestQPrefFacebook::test_multiple()
{
// test multiple instances have the same information
prefs.facebook.access_token = copy_qstring("test 1");
auto tst_direct = new qPrefFacebook;
prefs.facebook.access_token = copy_qstring("test 2");
auto tst = qPrefFacebook::instance();
QCOMPARE(tst->access_token(), tst_direct->access_token());
}
QTEST_MAIN(TestQPrefFacebook)
|