~ubuntu-branches/ubuntu/wily/qtbase-opensource-src/wily

« back to all changes in this revision

Viewing changes to tests/auto/corelib/global/qtendian/tst_qtendian.cpp

  • Committer: Package Import Robot
  • Author(s): Timo Jyrinki
  • Date: 2013-02-05 12:46:17 UTC
  • Revision ID: package-import@ubuntu.com-20130205124617-c8jouts182j002fx
Tags: upstream-5.0.1+dfsg
ImportĀ upstreamĀ versionĀ 5.0.1+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/****************************************************************************
 
2
**
 
3
** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies).
 
4
** Contact: http://www.qt-project.org/legal
 
5
**
 
6
** This file is part of the test suite of the Qt Toolkit.
 
7
**
 
8
** $QT_BEGIN_LICENSE:LGPL$
 
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 Digia.  For licensing terms and
 
14
** conditions see http://qt.digia.com/licensing.  For further information
 
15
** use the contact form at http://qt.digia.com/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 as published by the Free Software
 
20
** Foundation and appearing in the file LICENSE.LGPL included in the
 
21
** packaging of this file.  Please review the following information to
 
22
** ensure the GNU Lesser General Public License version 2.1 requirements
 
23
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
 
24
**
 
25
** In addition, as a special exception, Digia gives you certain additional
 
26
** rights.  These rights are described in the Digia Qt LGPL Exception
 
27
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
 
28
**
 
29
** GNU General Public License Usage
 
30
** Alternatively, this file may be used under the terms of the GNU
 
31
** General Public License version 3.0 as published by the Free Software
 
32
** Foundation and appearing in the file LICENSE.GPL included in the
 
33
** packaging of this file.  Please review the following information to
 
34
** ensure the GNU General Public License version 3.0 requirements will be
 
35
** met: http://www.gnu.org/copyleft/gpl.html.
 
36
**
 
37
**
 
38
** $QT_END_LICENSE$
 
39
**
 
40
****************************************************************************/
 
41
 
 
42
 
 
43
#include <QtTest/QtTest>
 
44
#include <QtCore/qendian.h>
 
45
 
 
46
 
 
47
class tst_QtEndian: public QObject
 
48
{
 
49
    Q_OBJECT
 
50
 
 
51
private slots:
 
52
    void fromBigEndian();
 
53
    void fromLittleEndian();
 
54
 
 
55
    void toBigEndian();
 
56
    void toLittleEndian();
 
57
};
 
58
 
 
59
struct TestData
 
60
{
 
61
    quint64 data64;
 
62
    quint32 data32;
 
63
    quint16 data16;
 
64
    quint8 data8;
 
65
 
 
66
    quint8 reserved;
 
67
};
 
68
 
 
69
union RawTestData
 
70
{
 
71
    uchar rawData[sizeof(TestData)];
 
72
    TestData data;
 
73
};
 
74
 
 
75
static const TestData inNativeEndian = { Q_UINT64_C(0x0123456789abcdef), 0x00c0ffee, 0xcafe, 0xcf, '\0' };
 
76
static const RawTestData inBigEndian = { "\x01\x23\x45\x67\x89\xab\xcd\xef" "\x00\xc0\xff\xee" "\xca\xfe" "\xcf" };
 
77
static const RawTestData inLittleEndian = { "\xef\xcd\xab\x89\x67\x45\x23\x01" "\xee\xff\xc0\x00" "\xfe\xca" "\xcf" };
 
78
 
 
79
#define EXPAND_ENDIAN_TEST(endian)          \
 
80
    do {                                    \
 
81
        /* Unsigned tests */                \
 
82
        ENDIAN_TEST(endian, quint, 64);     \
 
83
        ENDIAN_TEST(endian, quint, 32);     \
 
84
        ENDIAN_TEST(endian, quint, 16);     \
 
85
        ENDIAN_TEST(endian, quint, 8);      \
 
86
                                            \
 
87
        /* Signed tests */                  \
 
88
        ENDIAN_TEST(endian, qint, 64);      \
 
89
        ENDIAN_TEST(endian, qint, 32);      \
 
90
        ENDIAN_TEST(endian, qint, 16);      \
 
91
        ENDIAN_TEST(endian, qint, 8);       \
 
92
    } while (false)                         \
 
93
    /**/
 
94
 
 
95
#define ENDIAN_TEST(endian, type, size)                                                 \
 
96
    do {                                                                                \
 
97
        QCOMPARE(qFrom ## endian ## Endian(                                             \
 
98
                    (type ## size)(in ## endian ## Endian.data.data ## size)),          \
 
99
                (type ## size)(inNativeEndian.data ## size));                           \
 
100
        QCOMPARE(qFrom ## endian ## Endian<type ## size>(                               \
 
101
                    in ## endian ## Endian.rawData + offsetof(TestData, data ## size)), \
 
102
                (type ## size)(inNativeEndian.data ## size));                           \
 
103
    } while (false)                                                                     \
 
104
    /**/
 
105
 
 
106
void tst_QtEndian::fromBigEndian()
 
107
{
 
108
    EXPAND_ENDIAN_TEST(Big);
 
109
}
 
110
 
 
111
void tst_QtEndian::fromLittleEndian()
 
112
{
 
113
    EXPAND_ENDIAN_TEST(Little);
 
114
}
 
115
 
 
116
#undef ENDIAN_TEST
 
117
 
 
118
 
 
119
#define ENDIAN_TEST(endian, type, size)                                                 \
 
120
    do {                                                                                \
 
121
        QCOMPARE(qTo ## endian ## Endian(                                               \
 
122
                    (type ## size)(inNativeEndian.data ## size)),                       \
 
123
                (type ## size)(in ## endian ## Endian.data.data ## size));              \
 
124
                                                                                        \
 
125
        RawTestData test;                                                               \
 
126
        qTo ## endian ## Endian(                                                        \
 
127
                (type ## size)(inNativeEndian.data ## size),                            \
 
128
                test.rawData + offsetof(TestData, data ## size));                       \
 
129
        QCOMPARE(test.data.data ## size, in ## endian ## Endian.data.data ## size );    \
 
130
    } while (false)                                                                     \
 
131
    /**/
 
132
 
 
133
void tst_QtEndian::toBigEndian()
 
134
{
 
135
    EXPAND_ENDIAN_TEST(Big);
 
136
}
 
137
 
 
138
void tst_QtEndian::toLittleEndian()
 
139
{
 
140
    EXPAND_ENDIAN_TEST(Little);
 
141
}
 
142
 
 
143
#undef ENDIAN_TEST
 
144
 
 
145
QTEST_MAIN(tst_QtEndian)
 
146
#include "tst_qtendian.moc"