author | Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com> |
Mon, 15 Mar 2010 12:43:09 +0200 | |
branch | RCL_3 |
changeset 6 | dee5afe5301f |
parent 5 | d3bac044e0f0 |
permissions | -rw-r--r-- |
0 | 1 |
/**************************************************************************** |
2 |
** |
|
4
3b1da2848fc7
Revision: 201003
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
3 |
** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). |
0 | 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 |
#include <QStringList> |
|
42 |
#include <QFile> |
|
43 |
#include <qtest.h> |
|
44 |
||
5
d3bac044e0f0
Revision: 201007
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
4
diff
changeset
|
45 |
#ifdef Q_OS_SYMBIAN |
d3bac044e0f0
Revision: 201007
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
4
diff
changeset
|
46 |
// In Symbian OS test data is located in applications private dir |
d3bac044e0f0
Revision: 201007
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
4
diff
changeset
|
47 |
// Application private dir is default serach path for files, so SRCDIR can be set to empty |
d3bac044e0f0
Revision: 201007
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
4
diff
changeset
|
48 |
#define SRCDIR "" |
d3bac044e0f0
Revision: 201007
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
4
diff
changeset
|
49 |
#endif |
d3bac044e0f0
Revision: 201007
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
4
diff
changeset
|
50 |
|
0 | 51 |
class tst_QString: public QObject |
52 |
{ |
|
53 |
Q_OBJECT |
|
54 |
private slots: |
|
55 |
void equals() const; |
|
56 |
void equals_data() const; |
|
57 |
void fromUtf8() const; |
|
58 |
}; |
|
59 |
||
60 |
void tst_QString::equals() const |
|
61 |
{ |
|
62 |
QFETCH(QString, a); |
|
63 |
QFETCH(QString, b); |
|
64 |
||
65 |
QBENCHMARK { |
|
66 |
a == b; |
|
67 |
} |
|
68 |
} |
|
69 |
||
70 |
void tst_QString::equals_data() const |
|
71 |
{ |
|
72 |
static const struct { |
|
73 |
ushort data[80]; |
|
74 |
int dummy; // just to ensure 4-byte alignment |
|
75 |
} data = { |
|
76 |
{ |
|
77 |
64, 64, 64, 64, 64, 64, 64, 64, |
|
78 |
64, 64, 64, 64, 64, 64, 64, 64, // 16 |
|
79 |
64, 64, 64, 64, 64, 64, 64, 64, |
|
80 |
64, 64, 64, 64, 64, 64, 64, 64, // 32 |
|
81 |
64, 64, 64, 64, 64, 64, 64, 64, |
|
82 |
64, 64, 64, 64, 64, 64, 64, 64, // 48 |
|
83 |
64, 64, 64, 64, 64, 64, 64, 64, |
|
84 |
64, 64, 64, 64, 64, 64, 64, 64, // 64 |
|
85 |
64, 64, 64, 64, 96, 96, 96, 96, |
|
86 |
64, 64, 96, 96, 96, 96, 96, 96 // 80 |
|
87 |
}, 0 |
|
88 |
}; |
|
89 |
const QChar *ptr = reinterpret_cast<const QChar *>(data.data); |
|
90 |
||
91 |
QTest::addColumn<QString>("a"); |
|
92 |
QTest::addColumn<QString>("b"); |
|
93 |
QString base = QString::fromRawData(ptr, 64); |
|
94 |
||
95 |
QTest::newRow("different-length") << base << QString::fromRawData(ptr, 4); |
|
96 |
QTest::newRow("same-string") << base << base; |
|
97 |
QTest::newRow("same-data") << base << QString::fromRawData(ptr, 64); |
|
98 |
||
99 |
// try to avoid crossing a cache line (that is, at ptr[64]) |
|
100 |
QTest::newRow("aligned-aligned-4n") |
|
101 |
<< QString::fromRawData(ptr, 60) << QString::fromRawData(ptr + 2, 60); |
|
102 |
QTest::newRow("aligned-unaligned-4n") |
|
103 |
<< QString::fromRawData(ptr, 60) << QString::fromRawData(ptr + 1, 60); |
|
104 |
QTest::newRow("unaligned-unaligned-4n") |
|
105 |
<< QString::fromRawData(ptr + 1, 60) << QString::fromRawData(ptr + 3, 60); |
|
106 |
||
107 |
QTest::newRow("aligned-aligned-4n+1") |
|
108 |
<< QString::fromRawData(ptr, 61) << QString::fromRawData(ptr + 2, 61); |
|
109 |
QTest::newRow("aligned-unaligned-4n+1") |
|
110 |
<< QString::fromRawData(ptr, 61) << QString::fromRawData(ptr + 1, 61); |
|
111 |
QTest::newRow("unaligned-unaligned-4n+1") |
|
112 |
<< QString::fromRawData(ptr + 1, 61) << QString::fromRawData(ptr + 3, 61); |
|
113 |
||
114 |
QTest::newRow("aligned-aligned-4n-1") |
|
115 |
<< QString::fromRawData(ptr, 59) << QString::fromRawData(ptr + 2, 59); |
|
116 |
QTest::newRow("aligned-unaligned-4n-1") |
|
117 |
<< QString::fromRawData(ptr, 59) << QString::fromRawData(ptr + 1, 59); |
|
118 |
QTest::newRow("unaligned-unaligned-4n-1") |
|
119 |
<< QString::fromRawData(ptr + 1, 59) << QString::fromRawData(ptr + 3, 59); |
|
120 |
||
121 |
QTest::newRow("aligned-aligned-2n") |
|
122 |
<< QString::fromRawData(ptr, 58) << QString::fromRawData(ptr + 2, 58); |
|
123 |
QTest::newRow("aligned-unaligned-2n") |
|
124 |
<< QString::fromRawData(ptr, 58) << QString::fromRawData(ptr + 1, 58); |
|
125 |
QTest::newRow("unaligned-unaligned-2n") |
|
126 |
<< QString::fromRawData(ptr + 1, 58) << QString::fromRawData(ptr + 3, 58); |
|
127 |
} |
|
128 |
||
129 |
void tst_QString::fromUtf8() const |
|
130 |
{ |
|
131 |
QFile file(SRCDIR "utf-8.txt"); |
|
132 |
if (!file.open(QFile::ReadOnly)) { |
|
133 |
qFatal("Cannot open input file"); |
|
134 |
return; |
|
135 |
} |
|
136 |
QByteArray data = file.readAll(); |
|
137 |
const char *d = data.constData(); |
|
138 |
int size = data.size(); |
|
139 |
||
140 |
QBENCHMARK { |
|
141 |
QString::fromUtf8(d, size); |
|
142 |
} |
|
143 |
} |
|
144 |
||
145 |
QTEST_MAIN(tst_QString) |
|
146 |
||
147 |
#include "main.moc" |