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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
|
#include <QTest>
#include <QDebug>
#include <QSignalSpy>
#include <QAbstractItemModel>
#include <functional>
#include <test.h>
#include <store.h>
#include <log.h>
#include <configstore.h>
class AccountsTest : public QObject
{
Q_OBJECT
private slots:
void initTestCase()
{
Sink::Test::initTest();
Sink::Log::setDebugOutputLevel(Sink::Log::Trace);
}
void init()
{
ConfigStore("accounts").clear();
ConfigStore("resources").clear();
}
void testLoad()
{
using namespace Sink;
using namespace Sink::ApplicationDomain;
QString accountName("name");
QString accountIcon("icon");
auto account = ApplicationDomainType::createEntity<SinkAccount>();
//FIXME Get rid of this line
account.setProperty("identifier", account.identifier());
account.setProperty("type", "maildir");
account.setProperty("name", accountName);
account.setProperty("icon", accountIcon);
Store::create(account).exec().waitForFinished();
Store::fetchAll<SinkAccount>(Query()).then<void, QList<SinkAccount>>([](const QList<SinkAccount> &accounts) {
QCOMPARE(accounts.size(), 1);
})
.exec().waitForFinished();
QString smtpServer("smtpServer");
QString smtpUsername("smtpUsername");
QString smtpPassword("smtpPassword");
auto resource = ApplicationDomainType::createEntity<SinkResource>();
//FIXME Get rid of this line
resource.setProperty("identifier", resource.identifier());
resource.setProperty("type", "org.kde.mailtransport");
resource.setProperty("account", account.identifier());
resource.setProperty("server", smtpServer);
resource.setProperty("username", smtpUsername);
resource.setProperty("password", smtpPassword);
Store::create(resource).exec().waitForFinished();
Store::fetchAll<SinkResource>(Query()).then<void, QList<SinkResource>>([](const QList<SinkResource> &resources) {
QCOMPARE(resources.size(), 1);
})
.exec().waitForFinished();
Store::remove(resource).exec().waitForFinished();
Store::fetchAll<SinkResource>(Query()).then<void, QList<SinkResource>>([](const QList<SinkResource> &resources) {
QCOMPARE(resources.size(), 0);
})
.exec().waitForFinished();
}
void testLiveQuery()
{
using namespace Sink;
using namespace Sink::ApplicationDomain;
auto account = ApplicationDomainType::createEntity<SinkAccount>();
account.setProperty("type", "maildir");
account.setProperty("name", "name");
Store::create(account).exec().waitForFinished();
Query query;
query.liveQuery = true;
auto model = Store::loadModel<SinkAccount>(query);
QSignalSpy spy(model.data(), &QAbstractItemModel::rowsInserted);
QTRY_COMPARE(spy.count(), 1);
Store::create(account).exec().waitForFinished();
QTRY_COMPARE(spy.count(), 2);
//Ensure the notifier only affects one type
auto resource = ApplicationDomainType::createEntity<SinkResource>();
resource.setProperty("type", "org.kde.mailtransport");
Store::create(resource).exec().waitForFinished();
QTRY_COMPARE(spy.count(), 2);
}
};
QTEST_GUILESS_MAIN(AccountsTest)
#include "accountstest.moc"
|