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
|
/*
* Copyright (C) 2012 Christian Mollekopf <mollekopf@kolabsys.com>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program 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 Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#ifndef TESTUTILS_H
#define TESTUTILS_H
#include <QUuid>
#include <QFile>
#include <kolabevent.h>
#include <kmime/kmime_message.h>
#include "kolabformat/kolabobject.h"
Q_DECLARE_METATYPE(Kolab::ObjectType)
Q_DECLARE_METATYPE(Kolab::Version)
#define KCOMPARE(actual, expected) \
do { \
if (!(actual == expected)) { \
qDebug() << __FILE__ << ':' << __LINE__ << "Actual: " #actual ": " << actual << "\nExpected: " #expected ": " << expected; \
return false; \
} \
} while (0)
#endif
#define DIFFCOMPARE(actual, expected) \
do { \
if (!(actual.simplified() == expected.simplified())) { \
qDebug() << "Content not the same."; \
qDebug() << "actual." << actual.simplified() << "\n"; \
qDebug() << "expected." << expected.simplified(); \
showDiff(expected, actual); \
QTest::qFail("Compared versions differ.", __FILE__, __LINE__); \
return; \
} \
} while (0)
#define TESTVALUE(type, name) \
*static_cast<type *>(QTest::qData(#name, ::qMetaTypeId<type >()))
const QString TESTFILEDIR = QString::fromLatin1(TEST_DATA_PATH "/testfiles/");
QString getPath(const char *file)
{
return TESTFILEDIR+QString::fromLatin1(file);
}
void showDiff(const QString &expected, const QString &converted)
{
if (expected.isEmpty() || converted.isEmpty()) {
qWarning() << "files are empty";
return;
}
if (expected == converted) {
qWarning() << "contents are the same";
return;
}
qDebug() << "EXPECTED: " << expected;
qDebug() << "CONVERTED: " << converted;
}
KMime::Message::Ptr readMimeFile(const QString &fileName, bool &ok)
{
// qDebug() << fileName;
QFile file(fileName);
ok = file.open(QFile::ReadOnly);
if (!ok) {
qWarning() << "failed to open file: " << fileName;
return KMime::Message::Ptr();
}
const QByteArray data = file.readAll();
KMime::Message::Ptr msg = KMime::Message::Ptr(new KMime::Message);
msg->setContent(data);
msg->parse();
return msg;
}
void normalizeMimemessage(QString &content)
{
content.replace(QRegExp(QStringLiteral("\\bLibkolab-\\d.\\d.\\d\\b"), Qt::CaseSensitive), QStringLiteral("Libkolab-x.x.x"));
content.replace(QRegExp(QStringLiteral("\\bLibkolabxml-\\d.\\d.\\d\\b"), Qt::CaseSensitive), QStringLiteral("Libkolabxml-x.x.x"));
content.replace(QRegExp(QStringLiteral("\\bLibkolab-\\d.\\d\\b"), Qt::CaseSensitive), QStringLiteral("Libkolab-x.x.x"));
content.replace(QRegExp(QStringLiteral("\\bkdepim-runtime-\\d.\\d\\b"), Qt::CaseSensitive), QStringLiteral("Libkolab-x.x.x"));
content.replace(QRegExp(QStringLiteral("\\bLibkolabxml-\\d.\\d\\b"), Qt::CaseSensitive), QStringLiteral("Libkolabxml-x.x.x"));
content.replace(QRegExp(QStringLiteral("<uri>cid:*@kolab.resource.akonadi</uri>"), Qt::CaseSensitive, QRegExp::Wildcard), QStringLiteral("<uri>cid:id@kolab.resource.akonadi</uri>"));
content.replace(QRegExp(QStringLiteral("Content-ID: <*@kolab.resource.akonadi>"), Qt::CaseSensitive, QRegExp::Wildcard), QStringLiteral("Content-ID: <id@kolab.resource.akonadi>"));
content.replace(QRegExp(QStringLiteral("<uri>mailto:*</uri>"), Qt::CaseSensitive, QRegExp::Wildcard), QStringLiteral("<uri>mailto:</uri>"));
content.replace(QRegExp(QStringLiteral("<cal-address>mailto:*</cal-address>"), Qt::CaseSensitive, QRegExp::Wildcard), QStringLiteral("<cal-address>mailto:</cal-address>"));
content.replace(QRegExp(QStringLiteral("<uri>data:*</uri>"), Qt::CaseSensitive, QRegExp::Wildcard), QStringLiteral("<uri>data:</uri>"));
content.replace(QRegExp(QStringLiteral("<last-modification-date>*</last-modification-date>"), Qt::CaseSensitive, QRegExp::Wildcard),
QStringLiteral("<last-modification-date></last-modification-date>"));
//We no longer support pobox, so remove pobox lines
content.replace(QRegExp(QStringLiteral("<pobox>*</pobox>"), Qt::CaseSensitive, QRegExp::Wildcard), QLatin1String(""));
content.replace(QRegExp(QStringLiteral("<timestamp>*</timestamp>"), Qt::CaseSensitive, QRegExp::Wildcard), QStringLiteral("<timestamp></timestamp>"));
content.replace(QRegExp(QStringLiteral("<x-kolab-version>*</x-kolab-version>"), Qt::CaseSensitive, QRegExp::Wildcard), QStringLiteral("<x-kolab-version></x-kolab-version>"));
content.replace(QRegExp(QStringLiteral("--nextPart\\S*"), Qt::CaseSensitive), QStringLiteral("--part"));
content.replace(QRegExp(QStringLiteral("\\bboundary=\"nextPart[^\\n]*"), Qt::CaseSensitive), QStringLiteral("boundary"));
content.replace(QRegExp(QStringLiteral("Date[^\\n]*"), Qt::CaseSensitive), QStringLiteral("Date"));
//The sort order of the attributes in kolabV2 is unpredictable
content.replace(QRegExp(QStringLiteral("<x-custom*/>"), Qt::CaseSensitive, QRegExp::Wildcard), QStringLiteral("<x-custom/>"));
//quoted-printable encoding changes where the linebreaks are every now and then (an all are valid), so we remove the linebreaks
content.replace(QRegExp(QStringLiteral("=\\n"), Qt::CaseSensitive), QLatin1String(""));
}
QString normalizeVCardMessage(QString content)
{
//The encoding changes every now and then
content.replace(QRegExp(QStringLiteral("ENCODING=b;TYPE=png:*"), Qt::CaseSensitive, QRegExp::Wildcard), QStringLiteral("ENCODING=b;TYPE=png:picturedata"));
return content;
}
//Normalize incidences for comparison
void normalizeIncidence(KCalendarCore::Incidence::Ptr incidence)
{
//The UID is not persistent (it's just the internal pointer), therefore we clear it
//TODO make sure that the UID does really not need to be persistent
auto attendees = incidence->attendees();
for (auto &attendee : attendees) {
attendee.setUid(attendee.email());
}
incidence->setAttendees(attendees);
//FIXME even if hasDueDate can differ, it shouldn't because it breaks equality. Check why they differ in the first place.
if (incidence->type() == KCalendarCore::IncidenceBase::TypeTodo) {
KCalendarCore::Todo::Ptr todo = incidence.dynamicCast<KCalendarCore::Todo>();
Q_ASSERT(todo.data());
if (!todo->hasDueDate() && !todo->hasStartDate()) {
todo->setAllDay(false); // all day has no meaning if there are no start and due dates but may differ nevertheless
}
}
}
template<template<typename> class Op, typename T>
static bool LexicographicalCompare(const T &_x, const T &_y)
{
T x(_x);
x.setId(QString());
T y(_y);
y.setId(QString());
Op<QString> op;
return op(x.toString(), y.toString());
}
bool normalizePhoneNumbers(KContacts::Addressee &addressee, KContacts::Addressee &refAddressee)
{
KContacts::PhoneNumber::List phoneNumbers = addressee.phoneNumbers();
KContacts::PhoneNumber::List refPhoneNumbers = refAddressee.phoneNumbers();
if (phoneNumbers.size() != refPhoneNumbers.size()) {
return false;
}
std::sort(phoneNumbers.begin(), phoneNumbers.end(), LexicographicalCompare<std::less, KContacts::PhoneNumber>);
std::sort(refPhoneNumbers.begin(), refPhoneNumbers.end(), LexicographicalCompare<std::less, KContacts::PhoneNumber>);
for (int i = 0; i < phoneNumbers.size(); ++i) {
KContacts::PhoneNumber phoneNumber = phoneNumbers.at(i);
const KContacts::PhoneNumber refPhoneNumber = refPhoneNumbers.at(i);
KCOMPARE(LexicographicalCompare<std::equal_to>(phoneNumber, refPhoneNumber), true);
addressee.removePhoneNumber(phoneNumber);
phoneNumber.setId(refPhoneNumber.id());
addressee.insertPhoneNumber(phoneNumber);
//Make sure that both have the same sorted order
refAddressee.removePhoneNumber(refPhoneNumber);
refAddressee.insertPhoneNumber(refPhoneNumber);
}
// for ( int i = 0; i < phoneNumbers.size(); ++i ) {
// qDebug() << "--------------------------------------";
// qDebug() << addressee.phoneNumbers().at(i).toString();
// qDebug() << refAddressee.phoneNumbers().at(i).toString();
// }
return true;
}
bool normalizeAddresses(KContacts::Addressee &addressee, const KContacts::Addressee &refAddressee)
{
KContacts::Address::List addresses = addressee.addresses();
KContacts::Address::List refAddresses = refAddressee.addresses();
if (addresses.size() != refAddresses.size()) {
return false;
}
std::sort(addresses.begin(), addresses.end(), LexicographicalCompare<std::less, KContacts::Address>);
std::sort(refAddresses.begin(), refAddresses.end(), LexicographicalCompare<std::less, KContacts::Address>);
for (int i = 0; i < addresses.size(); ++i) {
KContacts::Address address = addresses.at(i);
const KContacts::Address refAddress = refAddresses.at(i);
KCOMPARE(LexicographicalCompare<std::equal_to>(address, refAddress), true);
addressee.removeAddress(address);
address.setId(refAddress.id());
addressee.insertAddress(address);
}
return true;
}
void normalizeContact(KContacts::Addressee &addressee)
{
const KContacts::Address::List addresses = addressee.addresses();
for (KContacts::Address a : addresses) {
addressee.removeAddress(a);
a.setPostOfficeBox(QString()); //Not supported anymore
addressee.insertAddress(a);
}
addressee.setSound(KContacts::Sound()); //Sound is not supported
addressee.removeCustom(QStringLiteral("KOLAB"), QStringLiteral("CreationDate")); //The creation date is no longer existing
//Attachment names are no longer required because we identify the parts by cid and no longer by name
addressee.removeCustom(QStringLiteral("KOLAB"), QStringLiteral("LogoAttachmentName"));
addressee.removeCustom(QStringLiteral("KOLAB"), QStringLiteral("PictureAttachmentName"));
addressee.removeCustom(QStringLiteral("KOLAB"), QStringLiteral("SoundAttachmentName"));
}
Kolab::Event createEvent(const Kolab::cDateTime &start, const Kolab::cDateTime &end)
{
Kolab::Event event;
event.setUid(QUuid::createUuid().toString().toStdString());
event.setStart(start);
event.setEnd(end);
return event;
}
|