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
|
/*
* SPDX-FileCopyrightText: 2013 Christian Mollekopf <mollekopf@kolabsys.com>
*
* SPDX-License-Identifier: LGPL-3.0-or-later
*/
#include "testrecurrenceexception.h"
#include "memorycalendar.h"
#include <QTest>
QTEST_MAIN(TestRecurrenceException)
void TestRecurrenceException::testCreateTodoException()
{
const QDateTime dtstart(QDate(2013, 03, 10), QTime(10, 0, 0), Qt::UTC);
const QDateTime dtdue(QDate(2013, 03, 10), QTime(11, 0, 0), Qt::UTC);
const QDateTime recurrenceId(QDateTime(dtstart).addDays(1));
KCalendarCore::Todo::Ptr todo(new KCalendarCore::Todo());
todo->setUid(QStringLiteral("todo"));
todo->setDtStart(dtstart);
todo->setDtDue(dtdue);
todo->recurrence()->setDaily(1);
todo->recurrence()->setDuration(3);
const KCalendarCore::Todo::Ptr exception
= KCalendarCore::MemoryCalendar::createException(todo, recurrenceId, false).staticCast<KCalendarCore::Todo>();
QCOMPARE(exception->dtStart(), recurrenceId);
QCOMPARE(exception->dtDue(), QDateTime(dtdue).addDays(1));
//FIXME should be done on clearing the recurrence, but we can't due to BC.
//Probably not that important as long as dtRecurrence is ignored if the todo is not recurring
//QCOMPARE(exception->dtRecurrence(), QDateTime());
//TODO dtCompleted
}
|