|
1 /**************************************************************************** |
|
2 ** |
|
3 ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). |
|
4 ** All rights reserved. |
|
5 ** Contact: Nokia Corporation (qt-info@nokia.com) |
|
6 ** |
|
7 ** This file is part of the test suite of the Qt Toolkit. |
|
8 ** |
|
9 ** $QT_BEGIN_LICENSE:LGPL$ |
|
10 ** No Commercial Usage |
|
11 ** This file contains pre-release code and may not be distributed. |
|
12 ** You may use this file in accordance with the terms and conditions |
|
13 ** contained in the Technology Preview License Agreement accompanying |
|
14 ** this package. |
|
15 ** |
|
16 ** GNU Lesser General Public License Usage |
|
17 ** Alternatively, this file may be used under the terms of the GNU Lesser |
|
18 ** General Public License version 2.1 as published by the Free Software |
|
19 ** Foundation and appearing in the file LICENSE.LGPL included in the |
|
20 ** packaging of this file. Please review the following information to |
|
21 ** ensure the GNU Lesser General Public License version 2.1 requirements |
|
22 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. |
|
23 ** |
|
24 ** In addition, as a special exception, Nokia gives you certain additional |
|
25 ** rights. These rights are described in the Nokia Qt LGPL Exception |
|
26 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. |
|
27 ** |
|
28 ** If you have questions regarding the use of this file, please contact |
|
29 ** Nokia at qt-info@nokia.com. |
|
30 ** |
|
31 ** |
|
32 ** |
|
33 ** |
|
34 ** |
|
35 ** |
|
36 ** |
|
37 ** |
|
38 ** $QT_END_LICENSE$ |
|
39 ** |
|
40 ****************************************************************************/ |
|
41 |
|
42 |
|
43 #include <QFile> |
|
44 #include <QtTest/QtTest> |
|
45 |
|
46 #ifdef QTEST_XMLPATTERNS |
|
47 |
|
48 /* We expect these headers to be available. */ |
|
49 #include <QtXmlPatterns/QAbstractUriResolver> |
|
50 #include <QtXmlPatterns/qabstracturiresolver.h> |
|
51 #include <QAbstractUriResolver> |
|
52 #include <qabstracturiresolver.h> |
|
53 |
|
54 #include "TestURIResolver.h" |
|
55 |
|
56 /*! |
|
57 \class tst_QAbstractUriResolver |
|
58 \internal |
|
59 \since 4.4 |
|
60 \brief Tests the QAbstractUriResolver class. |
|
61 */ |
|
62 class tst_QAbstractUriResolver : public QObject |
|
63 { |
|
64 Q_OBJECT |
|
65 |
|
66 private Q_SLOTS: |
|
67 void constructor() const; |
|
68 void resolve() const; |
|
69 void constCorrectness() const; |
|
70 void objectSize() const; |
|
71 void hasQ_OBJECTMacro() const; |
|
72 }; |
|
73 |
|
74 void tst_QAbstractUriResolver::constructor() const |
|
75 { |
|
76 /* Allocate instances. */ |
|
77 { |
|
78 TestURIResolver instance; |
|
79 } |
|
80 |
|
81 { |
|
82 TestURIResolver instance1; |
|
83 TestURIResolver instance2; |
|
84 } |
|
85 |
|
86 { |
|
87 TestURIResolver instance1; |
|
88 TestURIResolver instance2; |
|
89 TestURIResolver instance3; |
|
90 } |
|
91 } |
|
92 |
|
93 void tst_QAbstractUriResolver::constCorrectness() const |
|
94 { |
|
95 const TestURIResolver instance; |
|
96 |
|
97 /* This function is supposed to be const. */ |
|
98 instance.resolve(QUrl(), QUrl()); |
|
99 } |
|
100 |
|
101 void tst_QAbstractUriResolver::resolve() const |
|
102 { |
|
103 const TestURIResolver instance; |
|
104 QCOMPARE(instance.resolve(QUrl(QLatin1String("foo/relative.file")), |
|
105 QUrl(QLatin1String("http://example.com/NotThisOne"))), |
|
106 QUrl(QLatin1String("http://example.com/"))); |
|
107 } |
|
108 |
|
109 void tst_QAbstractUriResolver::objectSize() const |
|
110 { |
|
111 /* We shouldn't have a different size. */ |
|
112 QCOMPARE(sizeof(QAbstractUriResolver), sizeof(QObject)); |
|
113 } |
|
114 |
|
115 void tst_QAbstractUriResolver::hasQ_OBJECTMacro() const |
|
116 { |
|
117 TestURIResolver uriResolver; |
|
118 /* If this code fails to compile, the Q_OBJECT macro is missing in |
|
119 * the class declaration. */ |
|
120 QAbstractUriResolver *const secondPointer = qobject_cast<QAbstractUriResolver *>(&uriResolver); |
|
121 /* The static_cast is for compiling on broken compilers. */ |
|
122 QCOMPARE(static_cast<QAbstractUriResolver *>(&uriResolver), secondPointer); |
|
123 } |
|
124 |
|
125 QTEST_MAIN(tst_QAbstractUriResolver) |
|
126 |
|
127 #include "tst_qabstracturiresolver.moc" |
|
128 #else |
|
129 QTEST_NOOP_MAIN |
|
130 #endif |
|
131 |
|
132 // vim: et:ts=4:sw=4:sts=4 |