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
|
/*
This file is part of the kcalcore library.
Copyright (C) 2006 Allen Winter <winter@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 "testattachment.h"
#include "event.h"
#include "attachment.h"
#include <QTest>
QTEST_MAIN(AttachmentTest)
using namespace KCalCore;
void AttachmentTest::testValidity()
{
Attachment attachment(QStringLiteral("http://www.kde.org"));
QCOMPARE(attachment.uri(), QStringLiteral("http://www.kde.org"));
QCOMPARE(attachment.data(), QByteArray());
QVERIFY(attachment.decodedData().isEmpty());
QVERIFY(!attachment.isBinary());
attachment.setDecodedData("foo");
QVERIFY(attachment.isBinary());
QCOMPARE(attachment.decodedData(), QByteArray("foo"));
QCOMPARE(attachment.data(), QByteArray("Zm9v"));
QCOMPARE(attachment.size(), 3U);
Attachment attachment2 = Attachment(QByteArray("Zm9v"));
QCOMPARE(attachment2.size(), 3U);
QCOMPARE(attachment2.decodedData(), QByteArray("foo"));
attachment2.setDecodedData("123456");
QCOMPARE(attachment2.size(), 6U);
Attachment attachment3(attachment2);
QCOMPARE(attachment3.size(), attachment2.size());
QByteArray fred("jkajskldfasjfklasjfaskfaskfasfkasfjdasfkasjf");
Attachment attachment4(fred, QLatin1String("image/nonsense"));
QCOMPARE(fred, attachment4.data());
QVERIFY(attachment4.isBinary());
QByteArray ethel("a9fafafjafkasmfasfasffksjklfjau");
attachment4.setData(ethel);
QCOMPARE(ethel, attachment4.data());
Attachment attachment5(QStringLiteral("http://www.kde.org"));
Attachment attachment6(QStringLiteral("http://www.kde.org"));
QVERIFY(attachment5 == attachment6);
attachment5.setUri(QStringLiteral("http://bugs.kde.org"));
QVERIFY(attachment5 != attachment6);
attachment5.setDecodedData("123456");
attachment6.setDecodedData("123456");
QVERIFY(attachment5 == attachment6);
attachment6.setDecodedData("12345");
QVERIFY(attachment5 != attachment6);
}
void AttachmentTest::testSerializer_data()
{
QTest::addColumn<KCalCore::Attachment::Ptr>("attachment");
Attachment::Ptr nonInline = Attachment::Ptr(new Attachment(QStringLiteral("http://www.kde.org")));
Attachment::Ptr inlineAttachment = Attachment::Ptr(new Attachment(QByteArray("foo"), QLatin1String("image/nonsense")));
QTest::newRow("inline") << inlineAttachment;
QTest::newRow("not inline") << nonInline;
}
void AttachmentTest::testSerializer()
{
QFETCH(KCalCore::Attachment::Ptr, attachment);
QByteArray array;
QDataStream stream(&array, QIODevice::WriteOnly);
stream << attachment; // Serialize
Attachment::Ptr attachment2 = Attachment::Ptr(new Attachment(QStringLiteral("foo")));
QVERIFY(*attachment != *attachment2);
QDataStream stream2(&array, QIODevice::ReadOnly);
stream2 >> attachment2; // deserialize
QVERIFY(*attachment == *attachment2);
}
void AttachmentTest::testWriteToTempFile()
{
QByteArray data("foo");
Attachment::Ptr inlineAttachment = Attachment::Ptr(new Attachment(data.toBase64(), QLatin1String("image/png")));
Event *event = new Event();
QString filePath = event->writeAttachmentToTempFile(inlineAttachment);
QVERIFY(filePath.endsWith(QLatin1String(".png")));
QFile file(filePath);
QVERIFY(file.open(QIODevice::ReadOnly | QIODevice::Text));
QCOMPARE(file.readLine(), data);
file.close();
delete event; // file is deleted in DTOR
QVERIFY(!QFile::exists(filePath));
}
|