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
|
/*
This file is part of the kcalcore library.
Copyright (C) 2007 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 "testfilestorage.h"
#include "filestorage.h"
#include "memorycalendar.h"
#include <QTest>
#include <QTimeZone>
QTEST_MAIN(FileStorageTest)
using namespace KCalCore;
void FileStorageTest::testValidity()
{
MemoryCalendar::Ptr cal(new MemoryCalendar(QTimeZone::utc()));
FileStorage fs(cal, QStringLiteral("fred.ics"));
QCOMPARE(fs.fileName(), QStringLiteral("fred.ics"));
QCOMPARE(fs.calendar().data(), cal.data());
cal->close();
}
void FileStorageTest::testSave()
{
MemoryCalendar::Ptr cal(new MemoryCalendar(QTimeZone::utc()));
FileStorage fs(cal, QStringLiteral("fred.ics"));
QDate dt = QDate::currentDate();
Event::Ptr event1 = Event::Ptr(new Event());
event1->setUid(QStringLiteral("1"));
event1->setDtStart(QDateTime(dt, {}));
event1->setDtEnd(QDateTime(dt, {}).addDays(1));
event1->setSummary(QStringLiteral("Event1 Summary"));
event1->setDescription(QStringLiteral("This is a description of the first event"));
event1->setLocation(QStringLiteral("the place"));
cal->addEvent(event1);
Event::Ptr event2 = Event::Ptr(new Event());
event2->setUid(QStringLiteral("2"));
event2->setDtStart(QDateTime(dt, {}).addDays(1));
event2->setDtEnd(QDateTime(dt, {}).addDays(2));
event2->setSummary(QStringLiteral("Event2 Summary"));
event2->setDescription(QStringLiteral("This is a description of the second event"));
event2->setLocation(QStringLiteral("the other place"));
cal->addEvent(event2);
QVERIFY(fs.open());
QVERIFY(fs.save());
QVERIFY(fs.close());
cal->close();
QFile::remove(QStringLiteral("fred.ics"));
}
void FileStorageTest::testSaveLoadSave()
{
MemoryCalendar::Ptr cal(new MemoryCalendar(QTimeZone::utc()));
FileStorage fs(cal, QStringLiteral("fred.ics"));
QDate dt = QDate::currentDate();
Event::Ptr event1 = Event::Ptr(new Event());
event1->setUid(QStringLiteral("1"));
event1->setDtStart(QDateTime(dt, {}));
event1->setDtEnd(QDateTime(dt, {}).addDays(1));
event1->setSummary(QStringLiteral("Event1 Summary"));
event1->setDescription(QStringLiteral("This is a description of the first event"));
event1->setLocation(QStringLiteral("the place"));
cal->addEvent(event1);
Event::Ptr event2 = Event::Ptr(new Event());
event2->setUid(QStringLiteral("2"));
event2->setDtStart(QDateTime(dt, {}).addDays(1));
event2->setDtEnd(QDateTime(dt, {}).addDays(2));
event2->setSummary(QStringLiteral("Event2 Summary"));
event2->setDescription(QStringLiteral("This is a description of the second event"));
event2->setLocation(QStringLiteral("the other place"));
cal->addEvent(event2);
QVERIFY(fs.open());
QVERIFY(fs.save());
QVERIFY(fs.close());
QVERIFY(fs.open());
QVERIFY(fs.load());
Event::Ptr e = fs.calendar()->incidence(QStringLiteral("1")).staticCast<Event>();
QVERIFY(e != nullptr);
QVERIFY(fs.close());
QFile::remove(QStringLiteral("fred.ics"));
QVERIFY(fs.open());
QVERIFY(fs.save());
QVERIFY(fs.close());
QFile::remove(QStringLiteral("fred.ics"));
}
void FileStorageTest::testSpecialChars()
{
const QDate currentDate = QDate::currentDate();
const QString uid(QStringLiteral("12345"));
Event::Ptr event = Event::Ptr(new Event());
event->setUid(uid);
event->setDtStart(QDateTime(currentDate, {}));
event->setDtEnd(QDateTime(currentDate.addDays(1), {}));
const QChar latin1_umlaut[] = { 0xFC, QLatin1Char('\0') };
event->setSummary(QString(latin1_umlaut));
// Save to file:
MemoryCalendar::Ptr cal(new MemoryCalendar(QTimeZone::utc()));
FileStorage fs(cal, QStringLiteral("bart.ics"));
cal->addEvent(event);
QVERIFY(fs.open());
QVERIFY(fs.save());
QVERIFY(fs.close());
// Load again:
MemoryCalendar::Ptr otherCalendar(new MemoryCalendar(QTimeZone::utc()));
FileStorage otherFs(otherCalendar, QStringLiteral("bart.ics"));
QVERIFY(otherFs.open());
QVERIFY(otherFs.load());
Event::Ptr otherEvent = otherCalendar->incidence(uid).staticCast<Event>();
QVERIFY(otherFs.close());
QVERIFY(otherEvent);
// Make sure the retrieved incidence is equal to the original one
QVERIFY(otherEvent->summary() == event->summary());
QVERIFY(otherEvent->summary().toLatin1().count() == 1
&& strcmp(otherEvent->summary().toLatin1().constData(),
QString(latin1_umlaut).toLatin1().constData()) == 0);
// Make sure bart.ics is in UTF-8
QFile file(QStringLiteral("bart.ics"));
QVERIFY(file.open(QIODevice::ReadOnly | QIODevice::Text));
const QByteArray bytesFromFile = file.readAll();
const QChar utf_umlaut[] = { 0xC3, 0XBC, QLatin1Char('\0') };
QVERIFY(bytesFromFile.contains(QString(utf_umlaut).toLatin1().constData()));
QVERIFY(!bytesFromFile.contains(QString(latin1_umlaut).toLatin1().constData()));
file.close();
file.remove();
}
|