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
|
/*
Copyright (c) 2009 Constantin Berzan <exit3219@gmail.com>
Copyright (c) 2009 Leo Franchi <lfranchi@kde.org>
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 "composertest.h"
#include "qtest_messagecomposer.h"
#include <QDebug>
#include <qtest.h>
#include <kmime/kmime_headers.h>
using namespace KMime;
#include <MessageComposer/Composer>
#include <MessageComposer/GlobalPart>
#include <MessageComposer/InfoPart>
#include <MessageComposer/TextPart>
using namespace MessageComposer;
#include <MessageCore/AttachmentPart>
using MessageCore::AttachmentPart;
QTEST_MAIN(ComposerTest)
void ComposerTest::testAttachments()
{
Composer *composer = new Composer;
fillComposerData(composer);
AttachmentPart::Ptr attachment = AttachmentPart::Ptr(new AttachmentPart);
attachment->setData("abc");
attachment->setMimeType("x-some/x-type");
composer->addAttachmentPart(attachment);
QVERIFY(composer->exec());
QCOMPARE(composer->resultMessages().size(), 1);
KMime::Message::Ptr message = composer->resultMessages().first();
qDebug() << message->encodedContent();
delete composer;
composer = Q_NULLPTR;
// multipart/mixed
{
QVERIFY(message->contentType(false));
QCOMPARE(message->contentType()->mimeType(), QByteArray("multipart/mixed"));
QCOMPARE(message->contents().count(), 2);
// text/plain
{
Content *plain = message->contents().at(0);
QVERIFY(plain->contentType(false));
QCOMPARE(plain->contentType()->mimeType(), QByteArray("text/plain"));
}
// x-some/x-type (attachment)
{
Content *plain = message->contents().at(1);
QVERIFY(plain->contentType(false));
QCOMPARE(plain->contentType()->mimeType(), QByteArray("x-some/x-type"));
}
}
}
void ComposerTest::testAutoSave()
{
Composer *composer = new Composer;
fillComposerData(composer);
AttachmentPart::Ptr attachment = AttachmentPart::Ptr(new AttachmentPart);
attachment->setData("abc");
attachment->setMimeType("x-some/x-type");
composer->addAttachmentPart(attachment);
// This tests if autosave in crash mode works without invoking an event loop, since using an
// event loop in the crash handler would be a pretty bad idea
composer->setAutoSave(true);
composer->start();
QVERIFY(composer->finished());
QCOMPARE(composer->resultMessages().size(), 1);
delete composer;
composer = Q_NULLPTR;
}
void ComposerTest::testNonAsciiHeaders()
{
Composer *composer = new Composer;
fillComposerData(composer);
const QString mailbox = QStringLiteral(" <bla@example.com>");
const QString fromDisplayName = QStringLiteral("Hellö");
const QString toDisplayName = QStringLiteral("æſłĸð");
const QString ccDisplayName = QStringLiteral("Вася");
const QString bccDisplayName = QStringLiteral("ĸłſðđøþĸµ»«„¢þµ¢”«ł„·ĸ”");
const QString replyToDisplayName = QStringLiteral("æĸſłð˝đВасяðæĸđ");
const QString from = fromDisplayName + mailbox;
const QString to = toDisplayName + mailbox;
const QString cc = ccDisplayName + mailbox;
const QString bcc = bccDisplayName + mailbox;
const QString replyto = replyToDisplayName + mailbox;
composer->infoPart()->setFrom(from);
composer->infoPart()->setTo(QStringList() << to);
composer->infoPart()->setCc(QStringList() << cc);
composer->infoPart()->setBcc(QStringList() << bcc);
composer->infoPart()->setReplyTo(replyto);
QVERIFY(composer->exec());
QCOMPARE(composer->resultMessages().size(), 1);
const KMime::Message::Ptr message = composer->resultMessages().first();
qDebug() << message->encodedContent();
message->assemble();
message->parse();
QCOMPARE(message->bcc(false)->displayNames().size(), 1);
QCOMPARE(message->to(false)->displayNames().size(), 1);
QCOMPARE(message->cc(false)->displayNames().size(), 1);
QCOMPARE(message->from(false)->displayNames().size(), 1);
QCOMPARE(message->replyTo(false)->displayNames().size(), 1);
QCOMPARE(message->from()->displayNames().first().toUtf8(), fromDisplayName.toUtf8());
QCOMPARE(message->to()->displayNames().first().toUtf8(), toDisplayName.toUtf8());
QCOMPARE(message->cc()->displayNames().first().toUtf8(), ccDisplayName.toUtf8());
QCOMPARE(message->bcc()->displayNames().first().toUtf8(), bccDisplayName.toUtf8());
QCOMPARE(message->replyTo()->displayNames().first().toUtf8(), replyToDisplayName.toUtf8());
delete composer;
composer = Q_NULLPTR;
}
void ComposerTest::testBug271192()
{
const QString displayName = QStringLiteral("Интернет-компания example");
const QString mailbox = QStringLiteral("example@example.com");
Composer *composer = new Composer;
fillComposerData(composer);
composer->infoPart()->setTo(QStringList() << (displayName + QLatin1String(" <") + mailbox + QLatin1String(">")));
QVERIFY(composer->exec());
QCOMPARE(composer->resultMessages().size(), 1);
const KMime::Message::Ptr message = composer->resultMessages().first();
QCOMPARE(message->to()->displayNames().size(), 1);
QCOMPARE(message->to()->displayNames().first().toUtf8(), displayName.toUtf8());
delete composer;
composer = Q_NULLPTR;
}
void ComposerTest::fillComposerData(Composer *composer)
{
composer->globalPart()->setFallbackCharsetEnabled(true);
composer->infoPart()->setFrom(QStringLiteral("me@me.me"));
composer->infoPart()->setTo(QStringList(QStringLiteral("you@you.you")));
composer->textPart()->setWrappedPlainText(QStringLiteral("All happy families are alike; each unhappy family is unhappy in its own way."));
}
|