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
|
/*
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 "testalarm.h"
#include "event.h"
#include "alarm.h"
#include <QTest>
QTEST_MAIN(AlarmTest)
using namespace KCalCore;
void AlarmTest::testValidity()
{
Event inc;
Alarm alarm(&inc);
alarm.setType(Alarm::Email);
QVERIFY(alarm.type() == Alarm::Email);
}
void AlarmTest::testCompare()
{
Event inc1, inc2;
Alarm alarm1(&inc1), alarm2(&inc2);
alarm1.setType(Alarm::Email);
alarm2.setType(Alarm::Email);
alarm1.setMailAddress(Person::Ptr(new Person(QStringLiteral("name"), QStringLiteral("email@foo.com"))));
alarm2.setMailAddress(Person::Ptr(new Person(QStringLiteral("name"), QStringLiteral("email@foo.com"))));
QVERIFY(alarm1 == alarm2);
alarm2.setMailAddress(Person::Ptr(new Person(QStringLiteral("name"), QStringLiteral("email@foo.pt"))));
QVERIFY(alarm1 != alarm2);
alarm2.setType(Alarm::Display);
QVERIFY(alarm1 != alarm2);
}
void AlarmTest::testAssignment()
{
Alarm alarm1(nullptr);
alarm1.setType(Alarm::Display);
Alarm alarm2 = alarm1;
QVERIFY(alarm1 == alarm2);
Alarm alarm3 = Alarm(alarm1);
QVERIFY(alarm2 == alarm3);
}
void AlarmTest::testSerializer_data()
{
QTest::addColumn<KCalCore::Alarm::Ptr>("alarm");
Alarm::Ptr a1 = Alarm::Ptr(new Alarm(nullptr));
Alarm::Ptr a2 = Alarm::Ptr(new Alarm(nullptr));
Alarm::Ptr a3 = Alarm::Ptr(new Alarm(nullptr));
Alarm::Ptr a4 = Alarm::Ptr(new Alarm(nullptr));
a1->setType(Alarm::Email);
a2->setType(Alarm::Procedure);
a3->setType(Alarm::Display);
a4->setType(Alarm::Audio);
a3->setDisplayAlarm(QStringLiteral("foo"));
a3->setText(QStringLiteral("foo bar"));
a4->setAudioFile(QStringLiteral("file.mp3"));
a2->setProgramFile(QStringLiteral("/usr/bin/foo"));
a2->setProgramArguments(QStringLiteral("--play"));
a1->setMailSubject(QStringLiteral("empty subject"));
Person::List persons;
persons << Person::Ptr(new Person(QStringLiteral("a"), QStringLiteral("a@a.pt")))
<< Person::Ptr(new Person(QStringLiteral("b"), QStringLiteral("b@b.pt")));
a1->setMailAddresses(persons);
a1->setMailAttachment(QStringLiteral("foo attachment"));
a1->setMailText(QStringLiteral("mail body"));
a1->setTime(QDateTime(QDate(2006, 8, 3), QTime(8, 0, 0), Qt::UTC));
a2->setStartOffset(Duration(7, Duration::Days));
a3->setEndOffset(Duration(1, Duration::Days));
a1->setSnoozeTime(Duration(1, Duration::Seconds));
a1->setRepeatCount(50);
a1->setEnabled(true);
a2->setEnabled(true);
a3->setHasLocationRadius(false);
a3->setLocationRadius(100);
QTest::newRow("alarm1") << a1;
QTest::newRow("alarm2") << a2;
QTest::newRow("alarm3") << a3;
QTest::newRow("alarm4") << a4;
}
void AlarmTest::testSerializer()
{
QFETCH(KCalCore::Alarm::Ptr, alarm);
QByteArray array;
QDataStream stream(&array, QIODevice::WriteOnly);
stream << alarm; // Serialize
Alarm::Ptr alarm2 = Alarm::Ptr(new Alarm(nullptr));
//QVERIFY(*alarm != *alarm2);
QDataStream stream2(&array, QIODevice::ReadOnly);
stream2 >> alarm2; // deserialize
QVERIFY(*alarm == *alarm2);
}
|