|
1 /**************************************************************************** |
|
2 ** |
|
3 ** Copyright (C) 2010 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 #include <qtest.h> |
|
43 #include <QDeclarativeEngine> |
|
44 #include <QDeclarativeComponent> |
|
45 #include <private/qdeclarativeimage_p.h> |
|
46 |
|
47 #ifdef Q_OS_SYMBIAN |
|
48 // In Symbian OS test data is located in applications private dir |
|
49 #define SRCDIR "." |
|
50 #endif |
|
51 |
|
52 class tst_qmlgraphicsimage : public QObject |
|
53 { |
|
54 Q_OBJECT |
|
55 public: |
|
56 tst_qmlgraphicsimage() {} |
|
57 |
|
58 private slots: |
|
59 void qmlgraphicsimage(); |
|
60 void qmlgraphicsimage_file(); |
|
61 void qmlgraphicsimage_url(); |
|
62 |
|
63 private: |
|
64 QDeclarativeEngine engine; |
|
65 }; |
|
66 |
|
67 void tst_qmlgraphicsimage::qmlgraphicsimage() |
|
68 { |
|
69 int x = 0; |
|
70 QUrl url(SRCDIR "/image.png"); |
|
71 QBENCHMARK { |
|
72 QUrl url2("http://localhost/image" + QString::number(x++) + ".png"); |
|
73 QDeclarativeImage *image = new QDeclarativeImage; |
|
74 QDeclarativeEngine::setContextForObject(image, engine.rootContext()); |
|
75 delete image; |
|
76 } |
|
77 } |
|
78 |
|
79 void tst_qmlgraphicsimage::qmlgraphicsimage_file() |
|
80 { |
|
81 int x = 0; |
|
82 QUrl url(SRCDIR "/image.png"); |
|
83 //get rid of initialization effects |
|
84 { |
|
85 QDeclarativeImage *image = new QDeclarativeImage; |
|
86 QDeclarativeEngine::setContextForObject(image, engine.rootContext()); |
|
87 image->setSource(url); |
|
88 } |
|
89 QBENCHMARK { |
|
90 QUrl url2("http://localhost/image" + QString::number(x++) + ".png"); |
|
91 QDeclarativeImage *image = new QDeclarativeImage; |
|
92 QDeclarativeEngine::setContextForObject(image, engine.rootContext()); |
|
93 image->setSource(url); |
|
94 delete image; |
|
95 } |
|
96 } |
|
97 |
|
98 void tst_qmlgraphicsimage::qmlgraphicsimage_url() |
|
99 { |
|
100 int x = 0; |
|
101 QUrl url(SRCDIR "/image.png"); |
|
102 QBENCHMARK { |
|
103 QUrl url2("http://localhost/image" + QString::number(x++) + ".png"); |
|
104 QDeclarativeImage *image = new QDeclarativeImage; |
|
105 QDeclarativeEngine::setContextForObject(image, engine.rootContext()); |
|
106 image->setSource(url2); |
|
107 delete image; |
|
108 } |
|
109 } |
|
110 |
|
111 QTEST_MAIN(tst_qmlgraphicsimage) |
|
112 |
|
113 #include "tst_qdeclarativeimage.moc" |