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
|
/*
* 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 <http://www.gnu.org/licenses/>.
*/
#include "testreadrecurrenceid.h"
#include "memorycalendar.h"
#include "icalformat.h"
#include "exceptions.h"
#include <QDebug>
#include <QTimeZone>
#include <QTest>
QTEST_MAIN(TestReadRecurrenceId)
void TestReadRecurrenceId::testReadSingleException()
{
KCalCore::ICalFormat format;
QFile file(QLatin1String(ICALTESTDATADIR) + QLatin1String("test_recurrenceid_single.ics"));
QVERIFY(file.open(QIODevice::ReadOnly));
// qDebug() << file.readAll();
KCalCore::Incidence::Ptr i = format.fromString(QString::fromUtf8(file.readAll()));
if (!i) {
qWarning() << "Failed to parse incidence!";
if (format.exception()) {
qWarning() << format.exception()->arguments();
}
}
QVERIFY(i);
QVERIFY(i->hasRecurrenceId());
}
void TestReadRecurrenceId::testReadSingleExceptionWithThisAndFuture()
{
KCalCore::ICalFormat format;
QFile file(QLatin1String(ICALTESTDATADIR) + QLatin1String("test_recurrenceid_thisandfuture.ics"));
QVERIFY(file.open(QIODevice::ReadOnly));
KCalCore::Incidence::Ptr i = format.fromString(QString::fromUtf8(file.readAll()));
QVERIFY(i);
QVERIFY(i->hasRecurrenceId());
QVERIFY(i->thisAndFuture());
}
void TestReadRecurrenceId::testReadWriteSingleExceptionWithThisAndFuture()
{
KCalCore::MemoryCalendar::Ptr cal(new KCalCore::MemoryCalendar(QTimeZone::utc()));
KCalCore::ICalFormat format;
KCalCore::Incidence::Ptr inc(new KCalCore::Event);
QTimeZone tz("Europe/Berlin");
QDateTime startDate(QDate(2015, 1, 2), QTime(3, 4, 5), tz);
inc->setDtStart(startDate);
inc->setRecurrenceId(startDate);
inc->setThisAndFuture(true);
cal->addIncidence(inc);
const QString result = format.toString(cal, QString());
qDebug() << result;
KCalCore::Incidence::Ptr i = format.fromString(result);
QVERIFY(i);
QVERIFY(i->hasRecurrenceId());
QVERIFY(i->thisAndFuture());
QCOMPARE(i->recurrenceId(), startDate);
}
void TestReadRecurrenceId::testReadExceptionWithMainEvent()
{
KCalCore::MemoryCalendar::Ptr calendar(new KCalCore::MemoryCalendar(QTimeZone::utc()));
KCalCore::ICalFormat format;
QFile file(QLatin1String(ICALTESTDATADIR) + QLatin1String("test_recurrenceid.ics"));
QVERIFY(file.open(QIODevice::ReadOnly));
format.fromString(calendar, QString::fromUtf8(file.readAll()));
QCOMPARE(calendar->rawEvents().size(), 2);
}
|