Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F16570344
upgradetest.cpp
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Size
8 KB
Referenced Files
None
Subscribers
None
upgradetest.cpp
View Options
/*
* 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
"upgradetest.h"
#include
<QTest>
#include
<kolabcontainers.h>
#include
<kolabformat.h>
#include
<kolabformat/errorhandler.h>
#include
"testutils.h"
#include
"kolabformat/kolabobject.h"
#include
<conversion/commonconversion.h>
#include
<kcalcore/icalformat.h>
#include
<kabc/vcardconverter.h>
void
UpgradeTest
::
testIncidence_data
()
{
QTest
::
addColumn
<
Kolab
::
ObjectType
>
(
"type"
);
QTest
::
addColumn
<
QString
>
(
"filename"
);
QTest
::
addColumn
<
bool
>
(
"forceType"
);
// QTest::newRow( "v2contactSimple" ) << Kolab::KolabV2 << Kolab::ContactObject << TESTFILEDIR+QString::fromLatin1("v2/contacts/simple.vcf") << TESTFILEDIR+QString::fromLatin1("v2/contacts/simple.vcf.mime");
QTest
::
newRow
(
"v2eventSimple"
)
<<
Kolab
::
EventObject
<<
TESTFILEDIR
+
QString
::
fromLatin1
(
"v2/event/simple.ics.mime"
)
<<
false
;
QTest
::
newRow
(
"v2eventComplex"
)
<<
Kolab
::
EventObject
<<
TESTFILEDIR
+
QString
::
fromLatin1
(
"v2/event/complex.ics.mime"
)
<<
false
;
QTest
::
newRow
(
"v2eventAllday"
)
<<
Kolab
::
EventObject
<<
TESTFILEDIR
+
QString
::
fromLatin1
(
"v2/event/allday.ics.mime"
)
<<
false
;
QTest
::
newRow
(
"v2eventAttachment"
)
<<
Kolab
::
EventObject
<<
TESTFILEDIR
+
QString
::
fromLatin1
(
"v2/event/attachment.ics.mime"
)
<<
false
;
QTest
::
newRow
(
"v2eventHorde"
)
<<
Kolab
::
EventObject
<<
TESTFILEDIR
+
QString
::
fromLatin1
(
"v2/event/horde.ics.mime"
)
<<
false
;
//Still broken, although it seems that rather the event comparison is implemented wrong (not using equals)
QTest
::
newRow
(
"v2taskSimple"
)
<<
Kolab
::
TodoObject
<<
TESTFILEDIR
+
QString
::
fromLatin1
(
"v2/task/simple.ics.mime"
)
<<
false
;
QTest
::
newRow
(
"v2taskComplex"
)
<<
Kolab
::
TodoObject
<<
TESTFILEDIR
+
QString
::
fromLatin1
(
"v2/task/complex.ics.mime"
)
<<
false
;
QTest
::
newRow
(
"v2taskPrio1"
)
<<
Kolab
::
TodoObject
<<
TESTFILEDIR
+
QString
::
fromLatin1
(
"v2/task/prioritytest1.ics.mime"
)
<<
false
;
QTest
::
newRow
(
"v2taskPrio2"
)
<<
Kolab
::
TodoObject
<<
TESTFILEDIR
+
QString
::
fromLatin1
(
"v2/task/prioritytest2.ics.mime"
)
<<
false
;
QTest
::
newRow
(
"v2journalSimple"
)
<<
Kolab
::
JournalObject
<<
TESTFILEDIR
+
QString
::
fromLatin1
(
"v2/journal/simple.ics.mime"
)
<<
false
;
QTest
::
newRow
(
"v2journalComplex"
)
<<
Kolab
::
JournalObject
<<
TESTFILEDIR
+
QString
::
fromLatin1
(
"v2/journal/complex.ics.mime"
)
<<
false
;
QTest
::
newRow
(
"v2eventSimple_missingTypeHeader"
)
<<
Kolab
::
EventObject
<<
TESTFILEDIR
+
QString
::
fromLatin1
(
"v2/event/simple_missingTypeHeader.ics.mime"
)
<<
true
;
QTest
::
newRow
(
"v2eventis8859-1"
)
<<
Kolab
::
EventObject
<<
TESTFILEDIR
+
QString
::
fromLatin1
(
"v2/event/iso8859-1.mime"
)
<<
false
;
}
void
UpgradeTest
::
testIncidence
()
{
QFETCH
(
Kolab
::
ObjectType
,
type
);
QFETCH
(
QString
,
filename
);
//To compare
QFETCH
(
bool
,
forceType
);
bool
ok
=
false
;
const
KMime
::
Message
::
Ptr
&
msg
=
readMimeFile
(
filename
,
ok
);
QVERIFY
(
ok
);
Kolab
::
KolabObjectReader
reader
;
if
(
forceType
)
{
reader
.
setObjectType
(
type
);
}
Kolab
::
ObjectType
t
=
reader
.
parseMimeMessage
(
msg
);
QCOMPARE
(
t
,
type
);
QCOMPARE
(
reader
.
getVersion
(),
Kolab
::
KolabV2
);
QCOMPARE
(
Kolab
::
ErrorHandler
::
instance
().
error
(),
Kolab
::
ErrorHandler
::
Debug
);
KCalCore
::
Incidence
::
Ptr
v2result
=
reader
.
getIncidence
();
QVERIFY
(
!
v2result
.
isNull
());
//write KCalCore V3
KMime
::
Message
::
Ptr
v3message
=
Kolab
::
KolabObjectWriter
::
writeIncidence
(
v2result
,
Kolab
::
KolabV3
);
QVERIFY
(
Kolab
::
error
()
==
Kolab
::
NoError
);
// kDebug() << v3message->encodedContent();
//load KCalCore V3
Kolab
::
KolabObjectReader
reader2
;
QCOMPARE
(
reader2
.
parseMimeMessage
(
v3message
),
type
);
KCalCore
::
Incidence
::
Ptr
v3result
=
reader2
.
getIncidence
();
QVERIFY
(
!
v3result
.
isNull
());
normalizeIncidence
(
v2result
);
//We have to override the last modified time with a specific value, so we normalize the input to the same
normalizeIncidence
(
v3result
);
kDebug
()
<<
"--------------------------------------------------------"
;
KCalCore
::
ICalFormat
format
;
const
QString
v2
=
format
.
toString
(
v2result
);
const
QString
v3
=
format
.
toString
(
v3result
);
if
(
*
v2result
!=
*
v3result
)
{
showDiff
(
v2
,
v3
);
// qDebug() << "V2: " << v2;
// qDebug() << "V3: " << v3;
}
QVERIFY
(
!
v2
.
isEmpty
());
QVERIFY
(
!
v3
.
isEmpty
());
QCOMPARE
(
v2
,
v3
);
kDebug
()
<<
"--------------------------------------------------------"
;
// if (v2result->type() == KCalCore::IncidenceBase::TypeTodo) {
// KCalCore::Todo::Ptr t1 = v2result.dynamicCast<KCalCore::Todo>();
// KCalCore::Todo::Ptr t2 = v3result.dynamicCast<KCalCore::Todo>();
// QCOMPARE(t1->percentComplete(), t2->percentComplete());
// QCOMPARE(t1->priority(), t2->priority());
// QCOMPARE(t1->uid(), t2->uid());
// QCOMPARE(t1->dtStart(), t2->dtStart());
// QCOMPARE(t1->dtDue(), t2->dtDue());
// QCOMPARE(*t1->organizer().data(), *t2->organizer().data());
// QCOMPARE(t1->uid(), t2->uid());
// QCOMPARE(t1->allDay(), t2->allDay());
// QCOMPARE(t1->duration(), t2->duration());
// QCOMPARE(t1->hasDuration(), t2->hasDuration());
// qDebug() << "V2: " << v2;
// }
//Test comparator
QCOMPARE
(
*
v2result
,
*
v3result
);
QCOMPARE
(
Kolab
::
ErrorHandler
::
instance
().
error
(),
Kolab
::
ErrorHandler
::
Debug
);
}
void
UpgradeTest
::
testContact_data
()
{
QTest
::
addColumn
<
Kolab
::
ObjectType
>
(
"type"
);
QTest
::
addColumn
<
QString
>
(
"filename"
);
QTest
::
newRow
(
"v2contactSimple"
)
<<
Kolab
::
ContactObject
<<
TESTFILEDIR
+
QString
::
fromLatin1
(
"v2/contacts/simple.vcf.mime"
);
QTest
::
newRow
(
"v2contactComplex"
)
<<
Kolab
::
ContactObject
<<
TESTFILEDIR
+
QString
::
fromLatin1
(
"v2/contacts/complex.vcf.mime"
);
QTest
::
newRow
(
"v2contactAddress"
)
<<
Kolab
::
ContactObject
<<
TESTFILEDIR
+
QString
::
fromLatin1
(
"v2/contacts/address.vcf.mime"
);
QTest
::
newRow
(
"v2contactBug238996"
)
<<
Kolab
::
ContactObject
<<
TESTFILEDIR
+
QString
::
fromLatin1
(
"v2/contacts/bug238996.vcf.mime"
);
QTest
::
newRow
(
"v2contactDisplayname"
)
<<
Kolab
::
ContactObject
<<
TESTFILEDIR
+
QString
::
fromLatin1
(
"v2/contacts/displayname.vcf.mime"
);
QTest
::
newRow
(
"v2contactEmails"
)
<<
Kolab
::
ContactObject
<<
TESTFILEDIR
+
QString
::
fromLatin1
(
"v2/contacts/emails.vcf.mime"
);
QTest
::
newRow
(
"v2contactPhonenumber"
)
<<
Kolab
::
ContactObject
<<
TESTFILEDIR
+
QString
::
fromLatin1
(
"v2/contacts/phonenumbers.vcf.mime"
);
QTest
::
newRow
(
"v2contactPicture"
)
<<
Kolab
::
ContactObject
<<
TESTFILEDIR
+
QString
::
fromLatin1
(
"v2/contacts/picture.vcf.mime"
);
QTest
::
newRow
(
"v2iso8859-1"
)
<<
Kolab
::
ContactObject
<<
TESTFILEDIR
+
QString
::
fromLatin1
(
"v2/contacts/iso8859-1.mime"
);
}
void
UpgradeTest
::
testContact
()
{
QFETCH
(
Kolab
::
ObjectType
,
type
);
QFETCH
(
QString
,
filename
);
//Parse mime message
bool
ok
=
false
;
const
KMime
::
Message
::
Ptr
&
msg
=
readMimeFile
(
filename
,
ok
);
QVERIFY
(
ok
);
Kolab
::
KolabObjectReader
reader
;
Kolab
::
ObjectType
t
=
reader
.
parseMimeMessage
(
msg
);
QCOMPARE
(
t
,
type
);
QCOMPARE
(
reader
.
getVersion
(),
Kolab
::
KolabV2
);
QCOMPARE
(
Kolab
::
ErrorHandler
::
instance
().
error
(),
Kolab
::
ErrorHandler
::
Debug
);
KABC
::
Addressee
v2Addressee
=
reader
.
getContact
();
QVERIFY
(
!
v2Addressee
.
isEmpty
());
//Write
const
KMime
::
Message
::
Ptr
&
v3message
=
Kolab
::
KolabObjectWriter
::
writeContact
(
v2Addressee
,
Kolab
::
KolabV3
);
//load V3
Kolab
::
KolabObjectReader
reader2
;
QCOMPARE
(
reader2
.
parseMimeMessage
(
v3message
),
type
);
KABC
::
Addressee
v3result
=
reader2
.
getContact
();
QVERIFY
(
!
v3result
.
isEmpty
());
normalizeContact
(
v2Addressee
);
QVERIFY
(
normalizePhoneNumbers
(
v3result
,
v2Addressee
)
);
// phone number ids are random
QVERIFY
(
normalizeAddresses
(
v3result
,
v2Addressee
)
);
// same here
KABC
::
VCardConverter
converter
;
if
(
v2Addressee
!=
v3result
)
{
showDiff
(
converter
.
createVCard
(
v2Addressee
),
converter
.
createVCard
(
v3result
));
QVERIFY
(
false
);
}
QCOMPARE
(
Kolab
::
ErrorHandler
::
instance
().
error
(),
Kolab
::
ErrorHandler
::
Debug
);
}
QTEST_MAIN
(
UpgradeTest
)
#include
"upgradetest.moc"
File Metadata
Details
Attached
Mime Type
text/x-c
Expires
Fri, Nov 1, 9:16 AM (1 d, 12 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
10075680
Default Alt Text
upgradetest.cpp (8 KB)
Attached To
Mode
rLK libkolab
Attached
Detach File
Event Timeline
Log In to Comment