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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
|
#include <QTest>
#include <QDebug>
#include <QSignalSpy>
#include <functional>
#include <QStandardPaths>
#include <QDir>
#include <QtWebEngine>
#include <QGpgME/KeyListJob>
#include <QGpgME/Protocol>
#include <gpgme++/key.h>
#include <gpgme++/keylistresult.h>
#include "mailtemplates.h"
#include "mailcrypto.h"
static KMime::Content *getSubpart(KMime::Content *msg, const QByteArray &mimeType)
{
for (const auto c : msg->contents()) {
if (c->contentType(false)->mimeType() == mimeType) {
return c;
}
}
return nullptr;
}
static std::vector< GpgME::Key, std::allocator< GpgME::Key > > getKeys(bool smime = false)
{
QGpgME::KeyListJob *job = nullptr;
if (smime) {
const QGpgME::Protocol *const backend = QGpgME::smime();
Q_ASSERT(backend);
job = backend->keyListJob(false);
} else {
const QGpgME::Protocol *const backend = QGpgME::openpgp();
Q_ASSERT(backend);
job = backend->keyListJob(false);
}
Q_ASSERT(job);
std::vector< GpgME::Key > keys;
GpgME::KeyListResult res = job->exec(QStringList(), true, keys);
if (!smime) {
Q_ASSERT(keys.size() == 3);
}
Q_ASSERT(!res.error());
/*
qDebug() << "got private keys:" << keys.size();
for (std::vector< GpgME::Key >::iterator i = keys.begin(); i != keys.end(); ++i) {
qDebug() << "key isnull:" << i->isNull() << "isexpired:" << i->isExpired();
qDebug() << "key numuserIds:" << i->numUserIDs();
for (uint k = 0; k < i->numUserIDs(); ++k) {
qDebug() << "userIDs:" << i->userID(k).email();
}
}
*/
return keys;
}
static QByteArray readMailFromFile(const QString &mailFile)
{
Q_ASSERT(!QString::fromLatin1(MAIL_DATA_DIR).isEmpty());
QFile file(QLatin1String(MAIL_DATA_DIR) + QLatin1Char('/') + mailFile);
file.open(QIODevice::ReadOnly);
Q_ASSERT(file.isOpen());
return file.readAll();
}
static KMime::Message::Ptr readMail(const QString &mailFile)
{
auto msg = KMime::Message::Ptr::create();
msg->setContent(readMailFromFile(mailFile));
msg->parse();
return msg;
}
static QString removeFirstLine(const QString &s)
{
return s.mid(s.indexOf("\n") + 1);
}
static QString normalize(const QString &s)
{
auto text = s;
text.replace(">", "");
text.replace("\n", "");
text.replace("=", "");
text.replace(" ", "");
return text;
}
static QString unquote(const QString &s)
{
auto text = s;
text.replace("> ", "");
return text;
}
class MailTemplateTest : public QObject
{
Q_OBJECT
private slots:
void initTestCase()
{
QtWebEngine::initialize();
}
void testPlainReply()
{
auto msg = readMail("plaintext.mbox");
KMime::Message::Ptr result;
MailTemplates::reply(msg, [&] (const KMime::Message::Ptr &r) {
result = r;
});
QTRY_VERIFY(result);
QCOMPARE(normalize(removeFirstLine(result->body())), normalize(msg->body()));
QCOMPARE(result->to()->addresses(), {{"konqi@example.org"}});
QCOMPARE(result->subject()->asUnicodeString(), {"RE: A random subject with alternative contenttype"});
}
void testHtmlReply()
{
auto msg = readMail("html.mbox");
KMime::Message::Ptr result;
MailTemplates::reply(msg, [&] (const KMime::Message::Ptr &r) {
result = r;
});
QTRY_VERIFY(result);
QCOMPARE(unquote(removeFirstLine(result->body())), QLatin1String("HTML text"));
}
void testHtml8BitEncodedReply()
{
auto msg = readMail("8bitencoded.mbox");
KMime::Message::Ptr result;
MailTemplates::reply(msg, [&] (const KMime::Message::Ptr &r) {
result = r;
});
QTRY_VERIFY(result);
QVERIFY(MailTemplates::plaintextContent(result).contains(QString::fromUtf8("Why Pisa’s Tower")));
}
void testMultipartSignedReply()
{
auto msg = readMail("openpgp-signed-mailinglist.mbox");
KMime::Message::Ptr result;
MailTemplates::reply(msg, [&] (const KMime::Message::Ptr &r) {
result = r;
});
QTRY_VERIFY(result);
auto content = removeFirstLine(result->body());
QVERIFY(!content.isEmpty());
QVERIFY(content.contains("i noticed a new branch"));
}
void testMultipartAlternativeReply()
{
auto msg = readMail("alternative.mbox");
KMime::Message::Ptr result;
MailTemplates::reply(msg, [&] (const KMime::Message::Ptr &r) {
result = r;
});
QTRY_VERIFY(result);
auto content = removeFirstLine(result->body());
QVERIFY(!content.isEmpty());
QCOMPARE(unquote(content), QLatin1String("If you can see this text it means that your email client couldn't display our newsletter properly.\nPlease visit this link to view the newsletter on our website: http://www.gog.com/newsletter/\n"));
}
void testAttachmentReply()
{
auto msg = readMail("plaintextattachment.mbox");
KMime::Message::Ptr result;
MailTemplates::reply(msg, [&] (const KMime::Message::Ptr &r) {
result = r;
});
QTRY_VERIFY(result);
auto content = removeFirstLine(result->body());
QVERIFY(!content.isEmpty());
QCOMPARE(unquote(content), QLatin1String("sdlkjsdjf"));
}
void testMultiRecipientReply()
{
auto msg = readMail("multirecipients.mbox");
KMime::Message::Ptr result;
MailTemplates::reply(msg, [&] (const KMime::Message::Ptr &r) {
result = r;
});
QTRY_VERIFY(result);
auto content = removeFirstLine(result->body());
QVERIFY(!content.isEmpty());
QCOMPARE(unquote(content), QLatin1String("test"));
QCOMPARE(result->to()->addresses(), {{"konqi@example.org"}});
auto l = QVector<QByteArray>{{"release-team@kde.org"}, {"kde-devel@kde.org"}};
QCOMPARE(result->cc()->addresses(), l);
}
void testMultiRecipientReplyFilteringMe()
{
KMime::Types::AddrSpecList me;
KMime::Types::Mailbox mb;
mb.setAddress("release-team@kde.org");
me << mb.addrSpec();
auto msg = readMail("multirecipients.mbox");
KMime::Message::Ptr result;
MailTemplates::reply(msg, [&] (const KMime::Message::Ptr &r) {
result = r;
}, me);
QTRY_VERIFY(result);
auto content = removeFirstLine(result->body());
QVERIFY(!content.isEmpty());
QCOMPARE(unquote(content), QLatin1String("test"));
QCOMPARE(result->to()->addresses(), {{"konqi@example.org"}});
auto l = QVector<QByteArray>{{"kde-devel@kde.org"}};
QCOMPARE(result->cc()->addresses(), l);
}
void testCreatePlainMail()
{
QStringList to = {{"to@example.org"}};
QStringList cc = {{"cc@example.org"}};
QStringList bcc = {{"bcc@example.org"}};;
KMime::Types::Mailbox from;
from.fromUnicodeString("from@example.org");
QString subject = "subject";
QString body = "body";
QList<Attachment> attachments;
auto result = MailTemplates::createMessage({}, to, cc, bcc, from, subject, body, false, attachments);
QVERIFY(result);
QCOMPARE(result->subject()->asUnicodeString(), subject);
QCOMPARE(result->body(), body.toUtf8());
QVERIFY(result->date(false)->dateTime().isValid());
QVERIFY(result->contentType()->isMimeType("text/plain"));
QVERIFY(result->messageID(false) && !result->messageID(false)->isEmpty());
}
void testCreateHtmlMail()
{
QStringList to = {{"to@example.org"}};
QStringList cc = {{"cc@example.org"}};
QStringList bcc = {{"bcc@example.org"}};;
KMime::Types::Mailbox from;
from.fromUnicodeString("from@example.org");
QString subject = "subject";
QString body = "body";
QList<Attachment> attachments;
auto result = MailTemplates::createMessage({}, to, cc, bcc, from, subject, body, true, attachments);
QVERIFY(result);
QCOMPARE(result->subject()->asUnicodeString(), subject);
QVERIFY(result->date(false)->dateTime().isValid());
QVERIFY(result->contentType()->isMimeType("multipart/alternative"));
const auto contents = result->contents();
//1 Plain + 1 Html
QCOMPARE(contents.size(), 2);
}
void testCreatePlainMailWithAttachments()
{
QStringList to = {{"to@example.org"}};
QStringList cc = {{"cc@example.org"}};;
QStringList bcc = {{"bcc@example.org"}};;
KMime::Types::Mailbox from;
from.fromUnicodeString("from@example.org");
QString subject = "subject";
QString body = "body";
QList<Attachment> attachments = {{"name", "filename", "mimetype", true, "inlineAttachment"}, {"name", "filename", "mimetype", false, "nonInlineAttachment"}};
auto result = MailTemplates::createMessage({}, to, cc, bcc, from, subject, body, false, attachments);
QVERIFY(result);
QCOMPARE(result->subject()->asUnicodeString(), subject);
QVERIFY(result->contentType()->isMimeType("multipart/mixed"));
QVERIFY(result->date(false)->dateTime().isValid());
const auto contents = result->contents();
//1 Plain + 2 Attachments
QCOMPARE(contents.size(), 3);
auto p = getSubpart(result.data(), "text/plain");
QVERIFY(p);
}
void testCreateHtmlMailWithAttachments()
{
QStringList to = {{"to@example.org"}};
QStringList cc = {{"cc@example.org"}};;
QStringList bcc = {{"bcc@example.org"}};;
KMime::Types::Mailbox from;
from.fromUnicodeString("from@example.org");
QString subject = "subject";
QString body = "body";
QList<Attachment> attachments = {{"name", "filename", "mimetype", true, "inlineAttachment"}, {"name", "filename", "mimetype", false, "nonInlineAttachment"}};
auto result = MailTemplates::createMessage({}, to, cc, bcc, from, subject, body, true, attachments);
QVERIFY(result);
QCOMPARE(result->subject()->asUnicodeString(), subject);
QVERIFY(result->contentType()->isMimeType("multipart/mixed"));
QVERIFY(result->date(false)->dateTime().isValid());
const auto contents = result->contents();
//1 alternative + 2 Attachments
QCOMPARE(contents.size(), 3);
auto p = getSubpart(result.data(), "multipart/alternative");
QVERIFY(p);
}
void testCreatePlainMailSigned()
{
QStringList to = {{"to@example.org"}};
QStringList cc = {{"cc@example.org"}};;
QStringList bcc = {{"bcc@example.org"}};;
KMime::Types::Mailbox from;
from.fromUnicodeString("from@example.org");
QString subject = "subject";
QString body = "body";
QList<Attachment> attachments;
std::vector<GpgME::Key> keys = getKeys();
auto result = MailTemplates::createMessage({}, to, cc, bcc, from, subject, body, false, attachments, keys);
QVERIFY(result);
// qWarning() << "---------------------------------";
// qWarning().noquote() << result->encodedContent();
// qWarning() << "---------------------------------";
QCOMPARE(result->subject()->asUnicodeString(), subject);
QVERIFY(result->date(false)->dateTime().isValid());
QVERIFY(result->contentType()->isMimeType("multipart/signed"));
const auto contents = result->contents();
QCOMPARE(contents.size(), 2);
{
auto c = contents.at(0);
QVERIFY(c->contentType()->isMimeType("text/plain"));
}
{
auto c = contents.at(1);
QVERIFY(c->contentType()->isMimeType("application/pgp-signature"));
}
}
void testCreatePlainMailWithAttachmentsSigned()
{
QStringList to = {{"to@example.org"}};
QStringList cc = {{"cc@example.org"}};;
QStringList bcc = {{"bcc@example.org"}};;
KMime::Types::Mailbox from;
from.fromUnicodeString("from@example.org");
QString subject = "subject";
QString body = "body";
QList<Attachment> attachments = {{"name", "filename", "mimetype", true, "inlineAttachment"}, {"name", "filename", "mimetype", false, "nonInlineAttachment"}};
std::vector<GpgME::Key> keys = getKeys();
auto result = MailTemplates::createMessage({}, to, cc, bcc, from, subject, body, false, attachments, keys);
QVERIFY(result);
QCOMPARE(result->subject()->asUnicodeString(), subject);
QVERIFY(result->date(false)->dateTime().isValid());
QVERIFY(result->contentType()->isMimeType("multipart/signed"));
const auto contents = result->contents();
QCOMPARE(contents.size(), 2);
{
auto c = contents.at(0);
QVERIFY(c->contentType()->isMimeType("multipart/mixed"));
//1 text + 2 attachments
QCOMPARE(c->contents().size(), 3);
}
{
auto c = contents.at(1);
QVERIFY(c->contentType()->isMimeType("application/pgp-signature"));
}
}
};
QTEST_MAIN(MailTemplateTest)
#include "mailtemplatetest.moc"
|