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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
|
#include <QTest>
#include <QDebug>
#include <QSignalSpy>
#include <QAbstractItemModel>
#include <functional>
#include <test.h>
#include <store.h>
#include <log.h>
#include <configstore.h>
#include "testutils.h"
class AccountsTest : public QObject
{
Q_OBJECT
private slots:
void initTestCase()
{
Sink::Test::initTest();
}
void init()
{
ConfigStore("accounts", "type").clear();
ConfigStore("resources", Sink::ApplicationDomain::SinkResource::ResourceType::name).clear();
}
void testLoad()
{
using namespace Sink;
using namespace Sink::ApplicationDomain;
QString accountName("name");
QString accountIcon("icon");
auto account = ApplicationDomainType::createEntity<SinkAccount>();
account.setAccountType("maildir");
account.setName(accountName);
account.setIcon(accountIcon);
Store::create(account).exec().waitForFinished();
Store::fetchAll<SinkAccount>(Query()).then([&](const QList<SinkAccount::Ptr> &accounts) {
QCOMPARE(accounts.size(), 1);
auto account = accounts.first();
QCOMPARE(account->getAccountType(), QString("maildir"));
QCOMPARE(account->getName(), accountName);
QCOMPARE(account->getIcon(), accountIcon);
})
.exec().waitForFinished();
QString smtpServer("smtpServer");
QString smtpUsername("smtpUsername");
QString smtpPassword("smtpPassword");
auto resource = ApplicationDomainType::createEntity<SinkResource>();
resource.setResourceType("sink.mailtransport");
resource.setAccount(account);
resource.setProperty("server", smtpServer);
resource.setProperty("username", smtpUsername);
resource.setProperty("password", smtpPassword);
Store::create(resource).exec().waitForFinished();
Store::fetchAll<SinkResource>(Query()).then([&](const QList<SinkResource::Ptr> &resources) {
QCOMPARE(resources.size(), 1);
auto resource = resources.first();
QCOMPARE(resource->getResourceType(), QByteArray("sink.mailtransport"));
QCOMPARE(resource->getProperty("server").toString(), smtpServer);
})
.exec().waitForFinished();
auto identity = ApplicationDomainType::createEntity<Identity>();
identity.setName(smtpServer);
identity.setAddress(smtpUsername);
identity.setAccount(account.identifier());
Store::create(identity).exec().waitForFinished();
Store::fetchAll<Identity>(Query()).then([&](const QList<Identity::Ptr> &identities) {
QCOMPARE(identities.size(), 1);
QCOMPARE(identities.first()->getName(), smtpServer);
QCOMPARE(identities.first()->getAddress(), smtpUsername);
QCOMPARE(identities.first()->getAccount(), account.identifier());
})
.exec().waitForFinished();
Store::remove(resource).exec().waitForFinished();
Store::fetchAll<SinkResource>(Query()).then([](const QList<SinkResource::Ptr> &resources) {
QCOMPARE(resources.size(), 0);
})
.exec().waitForFinished();
}
void testLiveQuery()
{
using namespace Sink;
using namespace Sink::ApplicationDomain;
auto account = ApplicationDomainType::createEntity<SinkAccount>();
account.setAccountType("maildir");
account.setName("name");
Store::create(account).exec().waitForFinished();
Query query;
query.setFlags(Query::LiveQuery);
auto model = Store::loadModel<SinkAccount>(query);
QTRY_COMPARE(model->rowCount(QModelIndex()), 1);
auto account2 = ApplicationDomainType::createEntity<SinkAccount>();
account2.setAccountType("maildir");
account2.setName("name");
Store::create(account2).exec().waitForFinished();
QTRY_COMPARE(model->rowCount(QModelIndex()), 2);
//Ensure the notifier only affects one type
auto resource = ApplicationDomainType::createEntity<SinkResource>();
resource.setResourceType("sink.mailtransport");
Store::create(resource).exec().waitForFinished();
QTRY_COMPARE(model->rowCount(QModelIndex()), 2);
}
void testLoadAccountStatus()
{
using namespace Sink;
using namespace Sink::ApplicationDomain;
auto account = ApplicationDomainType::createEntity<SinkAccount>();
account.setAccountType("dummy");
account.setName("name");
VERIFYEXEC(Store::create(account));
auto res = Sink::ApplicationDomain::DummyResource::create(account.identifier());
VERIFYEXEC(Sink::Store::create(res));
{
Sink::Query query;
query.setFlags(Query::LiveQuery);
query.request<Sink::ApplicationDomain::SinkAccount::Status>();
auto model = Sink::Store::loadModel<Sink::ApplicationDomain::SinkAccount>(query);
QTRY_COMPARE(model->rowCount(QModelIndex()), 1);
auto account = model->data(model->index(0, 0, QModelIndex()), Sink::Store::DomainObjectRole).value<Sink::ApplicationDomain::SinkAccount::Ptr>();
QCOMPARE(account->getStatus(), static_cast<int>(Sink::ApplicationDomain::NoStatus));
//Synchronize to connect
VERIFYEXEC(Sink::Store::synchronize(Query().resourceFilter(res.identifier())));
QTRY_COMPARE_WITH_TIMEOUT(model->data(model->index(0, 0, QModelIndex()), Sink::Store::DomainObjectRole).value<Sink::ApplicationDomain::SinkAccount::Ptr>()->getStatus(), static_cast<int>(Sink::ApplicationDomain::ConnectedStatus), 1000);
}
}
};
QTEST_GUILESS_MAIN(AccountsTest)
#include "accountstest.moc"
|