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
|
/*
This file is part of the kcalcore library.
Copyright (c) 2007-2008 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 "testfreebusy.h"
#include "freebusy.h"
#include <QTest>
QTEST_MAIN(FreeBusyTest)
using namespace KCalCore;
void FreeBusyTest::testValidity()
{
const QDateTime firstDateTime(QDate(2007, 7, 23), QTime(7, 0, 0), Qt::UTC);
FreeBusy fb1(firstDateTime, QDateTime(QDate(2007, 7, 23), QTime(8, 0, 0), Qt::UTC));
QCOMPARE(fb1.dtEnd(), QDateTime(QDate(2007, 7, 23), QTime(8, 0, 0), Qt::UTC));
}
void FreeBusyTest::testAddSort()
{
Period::List periods;
const QDateTime firstq1DateTime(QDate(2007, 7, 23), QTime(7, 0, 0), Qt::UTC);
Period q1(firstq1DateTime, QDateTime(QDate(2007, 7, 23), QTime(8, 0, 0), Qt::UTC));
periods.append(q1);
const QDateTime firstq2DateTime(QDate(2007, 8, 23), QTime(7, 0, 0), Qt::UTC);
Period q2(firstq2DateTime, QDateTime(QDate(2007, 8, 23), QTime(8, 0, 0), Qt::UTC));
periods.append(q2);
const QDateTime firstq3DateTime(QDate(2007, 9, 23), QTime(7, 0, 0), Qt::UTC);
Period q3(firstq3DateTime, QDateTime(QDate(2007, 9, 23), QTime(8, 0, 0), Qt::UTC));
periods.append(q3);
FreeBusy fb1;
fb1.addPeriods(periods);
const QDateTime firstfb1DateTime(QDate(2007, 10, 27), QTime(7, 0, 0), Qt::UTC);
fb1.addPeriod(firstfb1DateTime, QDateTime(QDate(2007, 10, 27), QTime(8, 0, 0), Qt::UTC));
const QDateTime secondfb1DateTime(QDate(2007, 8, 27), QTime(7, 0, 0), Qt::UTC);
fb1.addPeriod(secondfb1DateTime, QDateTime(QDate(2007, 8, 27), QTime(8, 0, 0), Qt::UTC));
const QDateTime thirdfb1DateTime(QDate(2007, 6, 27), QTime(7, 0, 0), Qt::UTC);
fb1.addPeriod(thirdfb1DateTime, QDateTime(QDate(2007, 6, 27), QTime(8, 0, 0), Qt::UTC));
QCOMPARE(fb1.busyPeriods().last().end(), QDateTime(QDate(2007, 10, 27), QTime(8, 0, 0), Qt::UTC));
}
void FreeBusyTest::testAssign()
{
const QDateTime firstDateTime(QDate(2007, 7, 23), QTime(7, 0, 0), Qt::UTC);
FreeBusy fb1(firstDateTime, QDateTime(QDate(2007, 7, 23), QTime(8, 0, 0), Qt::UTC));
FreeBusy fb2 = fb1;
QCOMPARE(fb1, fb2);
fb1.setDtStart(firstDateTime.addDays(1));
fb2.setDtStart(firstDateTime.addDays(2));
QVERIFY(!(fb1 == fb2));
FreeBusy fb3 = fb2;
QCOMPARE(fb3, fb2);
QDateTime dt = fb3.dtEnd();
fb3.setDtEnd(dt.addDays(1));
fb2.setDtEnd(dt.addDays(1));
QCOMPARE(fb2, fb3);
}
void FreeBusyTest::testDataStream()
{
const QDateTime firstDateTime(QDate(2007, 7, 23), QTime(7, 0, 0), Qt::UTC);
FreeBusy::Ptr fb1(new FreeBusy(firstDateTime,
QDateTime(QDate(2007, 7, 23), QTime(8, 0, 0), Qt::UTC)));
QByteArray byteArray;
QDataStream out_stream(&byteArray, QIODevice::WriteOnly);
out_stream << fb1;
QDataStream in_stream(&byteArray, QIODevice::ReadOnly);
FreeBusy::Ptr fb2;
in_stream >> fb2;
QCOMPARE(fb1->dtEnd(), fb2->dtEnd());
QCOMPARE(fb1->busyPeriods(), fb2->busyPeriods());
// QVERIFY( *fb1 == *fb2 );
}
|