summaryrefslogtreecommitdiff
path: root/indra/test/llsdmessagereader_tut.cpp
blob: 98f92fd9f5c2ea8209ec425fa98a86d3f5485776 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
/**
 * @file llsdmessagereader_tut.cpp
 * @date   February 2006
 * @brief LLSDMessageReader unit tests
 *
 * $LicenseInfo:firstyear=2006&license=viewerlgpl$
 * Second Life Viewer Source Code
 * Copyright (C) 2010, Linden Research, Inc.
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation;
 * version 2.1 of the License only.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 *
 * Linden Research, Inc., 945 Battery Street, San Francisco, CA  94111  USA
 * $/LicenseInfo$
 */

#include <tut/tut.hpp>
#include "linden_common.h"
#include "lltut.h"
#include "v3dmath.h"
#include "v3math.h"
#include "v4math.h"
#include "llquaternion.h"

#include "message.h"
#include "llsdmessagereader.h"
#include "llsdutil.h"
#include "llsdutil_math.h"

namespace tut
{
    struct LLSDMessageReaderTestData {
        static void ensureMessageName(const std::string& msg_name,
                                    const LLSD& msg_data,
                                    const std::string& expected_name)
        {
            LLSDMessageReader msg;
            msg.setMessage(LLMessageStringTable::getInstance()->getString(msg_name.c_str()), msg_data);
            ensure_equals("Ensure name", std::string(msg.getMessageName()),
                          expected_name);
        }

        static void ensureNumberOfBlocks(const LLSD& msg_data,
                                    const std::string& block,
                                    S32 expected_number)
        {
            LLSDMessageReader msg;
            msg.setMessage("fakename", msg_data);
            ensure_equals("Ensure number of blocks", msg.getNumberOfBlocks(block.c_str()),
                          expected_number);
        }

        static void ensureMessageSize(const LLSD& msg_data,
                                    S32 expected_size)
        {
            LLSDMessageReader msg;
            msg.setMessage("fakename", msg_data);
            ensure_equals(  "Ensure size",  msg.getMessageSize(), expected_size);
        }

        static void ensureBool(const LLSD& msg_data,
                                const std::string& block,
                                const std::string& var,
                                S32 blocknum,
                                bool expected)
        {
            LLSDMessageReader msg;
            msg.setMessage("fakename", msg_data);
            bool test_data;
            msg.getBOOL(block.c_str(), var.c_str(), test_data, blocknum);
            ensure_equals(  "Ensure bool field", test_data, expected);
        }
    };

    typedef test_group<LLSDMessageReaderTestData>   LLSDMessageReaderTestGroup;
    typedef LLSDMessageReaderTestGroup::object      LLSDMessageReaderTestObject;
    LLSDMessageReaderTestGroup llsdMessageReaderTestGroup("LLSDMessageReader");

    template<> template<>
    void LLSDMessageReaderTestObject::test<1>()
        // construction and test of empty LLSD
    {
        LLSD message = LLSD::emptyMap();

        ensureMessageName("", message, "");
        ensureNumberOfBlocks(message, "Fakeblock", 0);
        ensureMessageSize(message, 0);
    }

    template<> template<>
    void LLSDMessageReaderTestObject::test<2>()
        // construction and test of simple message with one block
    {
        LLSD message = LLSD::emptyMap();
        message["block1"] = LLSD::emptyArray();
        message["block1"][0] = LLSD::emptyMap();
        message["block1"][0]["Field1"] = 0;

        ensureMessageName("name2", message, "name2");
        ensureNumberOfBlocks(message, "block1", 1);
        ensureMessageSize(message, 0);
    }

    template<> template<>
    void LLSDMessageReaderTestObject::test<3>()
        // multiple blocks
    {
        LLSD message = LLSD::emptyMap();
        message["block1"] = LLSD::emptyArray();
        bool bool_true = true;
        bool bool_false = false;
        message["block1"][0] = LLSD::emptyMap();
        message["block1"][0]["BoolField1"] = bool_true;
        message["block1"][1] = LLSD::emptyMap();
        message["block1"][1]["BoolField1"] = bool_false;
        message["block1"][1]["BoolField2"] = bool_true;

        ensureMessageName("name3", message, "name3");
        ensureBool(message, "block1", "BoolField1", 0, true);
        ensureBool(message, "block1", "BoolField1", 1, false);
        ensureBool(message, "block1", "BoolField2", 1, true);
        ensureNumberOfBlocks(message, "block1", 2);
        ensureMessageSize(message, 0);
    }

    template<typename T>
    LLSDMessageReader testType(const T& value)
    {
        LLSD message = LLSD::emptyMap();
        message["block"][0]["var"] = value;
        LLSDMessageReader msg;
        msg.setMessage("fakename", message);
        return msg;
    }

    template<> template<>
    void LLSDMessageReaderTestObject::test<4>()
        // S8
    {
        S8 outValue, inValue = -3;
        LLSDMessageReader msg = testType(inValue);
        msg.getS8("block", "var", outValue);
        ensure_equals("Ensure S8", outValue, inValue);
    }
    template<> template<>
    void
    LLSDMessageReaderTestObject::test<5>()
        // U8
    {
        U8 outValue, inValue = 2;
        LLSDMessageReader msg = testType(inValue);
        msg.getU8("block", "var", outValue);
        ensure_equals("Ensure U8", outValue, inValue);
    }
    template<> template<>
    void LLSDMessageReaderTestObject::test<6>()
        // S16
    {
        S16 outValue, inValue = 90;
        LLSDMessageReader msg = testType(inValue);
        msg.getS16("block", "var", outValue);
        ensure_equals("Ensure S16", outValue, inValue);
    }
    template<> template<>
    void LLSDMessageReaderTestObject::test<7>()
        // U16
    {
        U16 outValue, inValue = 3;
        LLSDMessageReader msg = testType(inValue);
        msg.getU16("block", "var", outValue);
        ensure_equals("Ensure S16", outValue, inValue);
    }
    template<> template<>
    void LLSDMessageReaderTestObject::test<8>()
        // S32
    {
        S32 outValue, inValue = 44;
        LLSDMessageReader msg = testType(inValue);
        msg.getS32("block", "var", outValue);
        ensure_equals("Ensure S32", outValue, inValue);
    }
    template<> template<>
    void LLSDMessageReaderTestObject::test<9>()
        // F32
    {
        F32 outValue, inValue = 121.44f;
        LLSDMessageReader msg = testType(inValue);
        msg.getF32("block", "var", outValue);
        ensure_equals("Ensure F32", outValue, inValue);
    }
    template<> template<>
    void LLSDMessageReaderTestObject::test<10>()
        // U32
    {
        U32 outValue, inValue = 88;
        LLSD sdValue = ll_sd_from_U32(inValue);
        LLSDMessageReader msg = testType(sdValue);
        msg.getU32("block", "var", outValue);
        ensure_equals("Ensure U32", outValue, inValue);
    }
    template<> template<>
    void LLSDMessageReaderTestObject::test<11>()
        // U64
    {
        U64 outValue, inValue = 121;
        LLSD sdValue = ll_sd_from_U64(inValue);
        LLSDMessageReader msg = testType(sdValue);
        msg.getU64("block", "var", outValue);
        ensure_equals("Ensure U64", outValue, inValue);
    }
    template<> template<>
    void LLSDMessageReaderTestObject::test<12>()
        // F64
    {
        F64 outValue, inValue = 3232143.33;
        LLSDMessageReader msg = testType(inValue);
        msg.getF64("block", "var", outValue);
        ensure_equals("Ensure F64", outValue, inValue);
    }
    template<> template<>
    void LLSDMessageReaderTestObject::test<13>()
        // String
    {
         std::string outValue, inValue = "testing";
        LLSDMessageReader msg = testType<std::string>(inValue.c_str());

        char buffer[MAX_STRING];
        msg.getString("block", "var", MAX_STRING, buffer);
        outValue = buffer;
        ensure_equals("Ensure String", outValue, inValue);
    }
    template<> template<>
    void LLSDMessageReaderTestObject::test<14>()
        // Vector3
    {
         LLVector3 outValue, inValue = LLVector3(1,2,3);
        LLSD sdValue = ll_sd_from_vector3(inValue);
        LLSDMessageReader msg = testType(sdValue);
        msg.getVector3("block", "var", outValue);
        ensure_equals("Ensure Vector3", outValue, inValue);
    }
    template<> template<>
    void LLSDMessageReaderTestObject::test<15>()
        // Vector4
    {
        LLVector4 outValue, inValue = LLVector4(1,2,3,4);
        LLSD sdValue = ll_sd_from_vector4(inValue);
        LLSDMessageReader msg = testType(sdValue);
        msg.getVector4("block", "var", outValue);
        ensure_equals("Ensure Vector4", outValue, inValue);
    }
    template<> template<>
    void LLSDMessageReaderTestObject::test<16>()
        // Vector3d
    {
         LLVector3d outValue, inValue = LLVector3d(1,2,3);
         LLSD sdValue = ll_sd_from_vector3d(inValue);
        LLSDMessageReader msg = testType(sdValue);
        msg.getVector3d("block", "var", outValue);
        ensure_equals("Ensure Vector3d", outValue, inValue);
    }
    template<> template<>
    void LLSDMessageReaderTestObject::test<17>()
        // Quaternion
    {
        LLQuaternion outValue, inValue = LLQuaternion(1,LLVector3(2,3,4));
        LLSD sdValue = ll_sd_from_quaternion(inValue);
        LLSDMessageReader msg = testType(sdValue);
        msg.getQuat("block", "var", outValue);
        ensure_equals("Ensure Quaternion", outValue, inValue);
    }
    template<> template<>
    void LLSDMessageReaderTestObject::test<18>()
        // UUID
    {
        LLUUID outValue, inValue;
        inValue.generate();
        LLSDMessageReader msg = testType(inValue);
        msg.getUUID("block", "var", outValue);
        ensure_equals("Ensure UUID", outValue, inValue);
    }
    template<> template<>
    void LLSDMessageReaderTestObject::test<19>()
        // IPAddr
    {
        U32 outValue, inValue = 12344556;
        LLSD sdValue = ll_sd_from_ipaddr(inValue);
        LLSDMessageReader msg = testType(sdValue);
        msg.getIPAddr("block", "var", outValue);
        ensure_equals("Ensure IPAddr", outValue, inValue);
    }
    template<> template<>
    void LLSDMessageReaderTestObject::test<20>()
        // IPPort
    {
        U16 outValue, inValue = 80;
        LLSDMessageReader msg = testType(inValue);
        msg.getIPPort("block", "var", outValue);
        ensure_equals("Ensure IPPort", outValue, inValue);
    }
    template<> template<>
    void LLSDMessageReaderTestObject::test<21>()
        // Binary
    {
        std::vector<U8> outValue(2), inValue(2);
        inValue[0] = 0;
        inValue[1] = 1;

        LLSDMessageReader msg = testType(inValue);
        msg.getBinaryData("block", "var", &(outValue[0]), inValue.size());
        ensure_equals("Ensure Binary", outValue, inValue);
    }
}