Page MenuHomePhorge

formattest.h
No OneTemporary

formattest.h

/*
* 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/>.
*/
#ifndef FORMATTEST_H
#define FORMATTEST_H
#include <QObject>
/**
* Test complete serialization from mime message to KCalCore/KABC containers.
*
* The .ics .vcf files serve as reference, under the assumption that the iCal/vCard implementations don't have bugs.
*
* The .ics.mime/.vcf.mime messages are first used to test parsing, and then to compare the result after serialization.
* The mime files are of course just a snapshot of how it is thought that the result should be.
* The files may have bugs themselves and will need to be updated to reflect future changes.
*
* kompare (the kde diff tool) is launched if a test fails to show you the difference between expected and actual conversion.
* Comment the code if you don't want it.
*
* Note that some parts of the mime message are not compared, but show up in kompare as difference:
* * Date-Header
* * Content-Type-Header
* * next-part markers
* * Content-ID Header
*
* These are safe to be ignored as they are randomly generated.
*
* To generate the reference files, you can write the vcf/ics by hand and generate the mime message from that one (using the generateMimefile() function).
* You may need to sort some things manually (addresses/phonenumbers), and generally check manually if everything is as it should be.
* The test will then remain to ensure the same for future versions.
*
*/
class FormatTest: public QObject
{
Q_OBJECT
private slots:
void testIncidence_data();
void testIncidence();
void testContact_data();
void testContact();
void testNote_data();
void testNote();
//Some pseudo tests and helper functions
void generateMimefile();
void generateVCard();
void proveJPGisLossy();
};
#endif // FORMATTEST_H

File Metadata

Mime Type
text/x-c
Expires
Fri, Nov 1, 9:16 AM (1 d, 14 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
10075707
Default Alt Text
formattest.h (2 KB)

Event Timeline