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
|
/*
Copyright (c) 2018 Christian Mollekopf <mollekopf@kolabsys.com>
This library is free software; you can redistribute it and/or modify it
under the terms of the GNU Library General Public License as published by
the Free Software Foundation; either version 2 of the License, or (at your
option) any later version.
This library is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public
License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to the
Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
02110-1301, USA.
*/
#include "teststore.h"
#include <sink/store.h>
#include <sink/resourcecontrol.h>
#include <sink/secretstore.h>
#include <kmime/kmime_message.h>
#include <QDebug>
#include <QVariant>
#include "framework/src/domain/mime/mailtemplates.h"
using namespace Kube;
static void iterateOverObjects(const QVariantList &list, std::function<void(const QVariantMap &)> callback)
{
for (const auto &entry : list) {
auto object = entry.toMap();
callback(object);
}
}
static QStringList toStringList(const QVariantList &list)
{
QStringList s;
for (const auto &e : list) {
s << e.toString();
}
return s;
}
static void createMail(const QVariantMap &object)
{
using namespace Sink::ApplicationDomain;
auto toAddresses = toStringList(object["to"].toList());
auto ccAddresses = toStringList(object["cc"].toList());
auto bccAddresses = toStringList(object["bcc"].toList());
KMime::Types::Mailbox mb;
mb.fromUnicodeString("identity@example.org");
auto msg = MailTemplates::createMessage({},
toAddresses,
ccAddresses,
bccAddresses,
mb,
object["subject"].toString(),
object["body"].toString(),
{},
{},
{},
{});
auto mail = ApplicationDomainType::createEntity<Mail>(object["resource"].toByteArray());
mail.setMimeMessage(msg->encodedContent(true));
Sink::Store::create<Mail>(mail).exec().waitForFinished();
}
void TestStore::setup(const QVariantMap &map)
{
QByteArrayList resources;
iterateOverObjects(map.value("resources").toList(), [&] (const QVariantMap &object) {
resources << object["id"].toByteArray();
auto resource = [&] {
using namespace Sink::ApplicationDomain;
auto resource = ApplicationDomainType::createEntity<SinkResource>("", object["id"].toByteArray());
if (object["type"] == "dummy") {
resource.setResourceType("sink.dummy");
} else if (object["type"] == "mailtransport") {
resource.setResourceType("sink.mailtransport");
} else {
Q_ASSERT(false);
}
return resource;
}();
resource.setAccount(object["account"].toByteArray());
Sink::Store::create(resource).exec().waitForFinished();
Sink::SecretStore::instance().insert(resource.identifier(), "secret");
});
iterateOverObjects(map.value("identities").toList(), [] (const QVariantMap &object) {
auto identity = Sink::ApplicationDomain::Identity{};
identity.setAccount(object["account"].toByteArray());
identity.setAddress(object["address"].toString());
identity.setName(object["name"].toString());
Sink::Store::create(identity).exec().waitForFinished();
});
iterateOverObjects(map.value("mails").toList(), createMail);
Sink::ResourceControl::flushMessageQueue(resources).exec().waitForFinished();
}
QVariant TestStore::load(const QByteArray &type, const QVariantMap &filter)
{
using namespace Sink::ApplicationDomain;
if (type == "mail") {
Sink::Query query;
if (filter.contains("resource")) {
query.resourceFilter(filter.value("resource").toByteArray());
}
auto list = Sink::Store::read<Mail>(query);
if (!list.isEmpty()) {
return QVariant::fromValue(Mail::Ptr::create(list.first()));
}
return {};
}
Q_ASSERT(false);
return {};
}
|