| 1 | /**************************************************************************** |
|---|---|
| 2 | ** |
| 3 | ** Copyright (C) 2015 The Qt Company Ltd. |
| 4 | ** Contact: http://www.qt.io/licensing/ |
| 5 | ** |
| 6 | ** This file is part of the test suite of the Qt Toolkit. |
| 7 | ** |
| 8 | ** $QT_BEGIN_LICENSE:LGPL21$ |
| 9 | ** Commercial License Usage |
| 10 | ** Licensees holding valid commercial Qt licenses may use this file in |
| 11 | ** accordance with the commercial license agreement provided with the |
| 12 | ** Software or, alternatively, in accordance with the terms contained in |
| 13 | ** a written agreement between you and The Qt Company. For licensing terms |
| 14 | ** and conditions see http://www.qt.io/terms-conditions. For further |
| 15 | ** information use the contact form at http://www.qt.io/contact-us. |
| 16 | ** |
| 17 | ** GNU Lesser General Public License Usage |
| 18 | ** Alternatively, this file may be used under the terms of the GNU Lesser |
| 19 | ** General Public License version 2.1 or version 3 as published by the Free |
| 20 | ** Software Foundation and appearing in the file LICENSE.LGPLv21 and |
| 21 | ** LICENSE.LGPLv3 included in the packaging of this file. Please review the |
| 22 | ** following information to ensure the GNU Lesser General Public License |
| 23 | ** requirements will be met: https://www.gnu.org/licenses/lgpl.html and |
| 24 | ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. |
| 25 | ** |
| 26 | ** As a special exception, The Qt Company gives you certain additional |
| 27 | ** rights. These rights are described in The Qt Company LGPL Exception |
| 28 | ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. |
| 29 | ** |
| 30 | ** $QT_END_LICENSE$ |
| 31 | ** |
| 32 | ****************************************************************************/ |
| 33 | |
| 34 | #ifndef tst_QVERSITCONTACTEXPORTER_H |
| 35 | #define tst_QVERSITCONTACTEXPORTER_H |
| 36 | |
| 37 | #include <QObject> |
| 38 | #include <QtContacts/qcontact.h> |
| 39 | #include <QtContacts/qcontactdetail.h> |
| 40 | #include <QtVersit/qversitproperty.h> |
| 41 | |
| 42 | QT_BEGIN_NAMESPACE_VERSIT |
| 43 | class QVersitContactExporter; |
| 44 | class QVersitContactExporterPrivate; |
| 45 | class QVersitDocument; |
| 46 | class QVersitProperty; |
| 47 | QT_END_NAMESPACE_VERSIT |
| 48 | |
| 49 | QTCONTACTS_USE_NAMESPACE |
| 50 | QTVERSIT_USE_NAMESPACE |
| 51 | |
| 52 | class MyQVersitResourceHandler; |
| 53 | class MyQVersitContactExporterDetailHandler; |
| 54 | |
| 55 | class tst_QVersitContactExporter : public QObject |
| 56 | { |
| 57 | Q_OBJECT |
| 58 | |
| 59 | private slots: |
| 60 | void init(); |
| 61 | void cleanup(); |
| 62 | |
| 63 | void testConvertContact(); |
| 64 | void testEmptyContact(); |
| 65 | void testContactDetailHandler(); |
| 66 | void testContactDetailHandlerV2(); |
| 67 | void testEncodeName(); |
| 68 | void testEncodePhoneNumber(); |
| 69 | void testEncodeEmailAddress(); |
| 70 | void testEncodeStreetAddress(); |
| 71 | void testEncodeUrl(); |
| 72 | void testEncodeParameters(); |
| 73 | void testEncodeUid(); |
| 74 | void testEncodeRev(); |
| 75 | void testEncodeVersion(); |
| 76 | void testEncodeBirthDay(); |
| 77 | void testEncodeNote(); |
| 78 | void testEncodeGeoLocation(); |
| 79 | void testEncodeOrganization(); |
| 80 | void testEncodeEmbeddedContent(); |
| 81 | void testEncodeRingtone(); |
| 82 | void testEncodeGender(); |
| 83 | void testEncodeNickName(); |
| 84 | void testEncodeTag(); |
| 85 | void testEncodeAnniversary(); |
| 86 | void testEncodeOnlineAccount(); |
| 87 | void testEncodeFamily(); |
| 88 | void testEncodeFavorite(); |
| 89 | void testEncodeExtendedDetail(); |
| 90 | void testEncodeExtendedDetail_data(); |
| 91 | void testEncodeMultipleExtendedDetails(); |
| 92 | void testEncodeAvatar(); |
| 93 | void testDefaultResourceHandler(); |
| 94 | void testEncodeEmailWithContextOther(); |
| 95 | |
| 96 | private: |
| 97 | // Test Utility Functions |
| 98 | QContact createContactWithName(QString name); |
| 99 | int countProperties(const QVersitDocument& document); |
| 100 | QContactDetail findDetailByType(QList<QContactDetail> details, QContactDetail::DetailType search); |
| 101 | QVersitProperty findPropertyByName(const QVersitDocument& document,const QString& propertyName); |
| 102 | |
| 103 | private: // Data |
| 104 | QVersitContactExporter* mExporter; |
| 105 | MyQVersitResourceHandler* mResourceHandler; |
| 106 | }; |
| 107 | |
| 108 | #endif // tst_QVERSITCONTACTEXPORTER_H |
| 109 |
