VirtualBox

source: vbox/trunk/src/VBox/Runtime/testcase/tstRTStrFormat.cpp@ 58269

Last change on this file since 58269 was 57358, checked in by vboxsync, 9 years ago

*: scm cleanup run.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id Revision
File size: 30.9 KB
Line 
1/* $Id: tstRTStrFormat.cpp 57358 2015-08-14 15:16:38Z vboxsync $ */
2/** @file
3 * IPRT Testcase - String formatting.
4 */
5
6/*
7 * Copyright (C) 2006-2015 Oracle Corporation
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 *
17 * The contents of this file may alternatively be used under the terms
18 * of the Common Development and Distribution License Version 1.0
19 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
20 * VirtualBox OSE distribution, in which case the provisions of the
21 * CDDL are applicable instead of those of the GPL.
22 *
23 * You may elect to license modified versions of this file under the
24 * terms and conditions of either the GPL or the CDDL or both.
25 */
26
27
28/*********************************************************************************************************************************
29* Header Files *
30*********************************************************************************************************************************/
31#include <iprt/string.h>
32
33#include <iprt/initterm.h>
34#include <iprt/net.h>
35#include <iprt/stream.h>
36#include <iprt/test.h>
37#include <iprt/uuid.h>
38
39
40/** See FNRTSTRFORMATTYPE. */
41static DECLCALLBACK(size_t) TstType(PFNRTSTROUTPUT pfnOutput, void *pvArgOutput,
42 const char *pszType, void const *pvValue,
43 int cchWidth, int cchPrecision, unsigned fFlags,
44 void *pvUser)
45{
46 /* validate */
47 if (strncmp(pszType, "type", 4))
48 RTTestIFailed("pszType=%s expected 'typeN'\n", pszType);
49
50 int iType = pszType[4] - '0';
51 if ((uintptr_t)pvUser != (uintptr_t)TstType + iType)
52 RTTestIFailed("pvValue=%p expected %p\n", pvUser, (void *)((uintptr_t)TstType + iType));
53
54 /* format */
55 size_t cch = pfnOutput(pvArgOutput, pszType, 5);
56 cch += pfnOutput(pvArgOutput, "=", 1);
57 char szNum[64];
58 size_t cchNum = RTStrFormatNumber(szNum, (uintptr_t)pvValue, 10, cchWidth, cchPrecision, fFlags);
59 cch += pfnOutput(pvArgOutput, szNum, cchNum);
60 return cch;
61}
62
63
64static void testNested(int iLine, const char *pszExpect, const char *pszFormat, ...)
65{
66 size_t cchExpect = strlen(pszExpect);
67 char szBuf[512];
68
69 va_list va;
70 va_start(va, pszFormat);
71 size_t cch = RTStrPrintf(szBuf, sizeof(szBuf), "%N", pszFormat, &va);
72 va_end(va);
73 if (strcmp(szBuf, pszExpect))
74 RTTestIFailed("at line %d: nested format '%s'\n"
75 " output: '%s'\n"
76 " wanted: '%s'\n",
77 iLine, pszFormat, szBuf, pszExpect);
78 else if (cch != cchExpect)
79 RTTestIFailed("at line %d: Invalid length %d returned, expected %u!\n",
80 iLine, cch, cchExpect);
81
82 va_start(va, pszFormat);
83 cch = RTStrPrintf(szBuf, sizeof(szBuf), "%uxxx%Nyyy%u", 43, pszFormat, &va, 43);
84 va_end(va);
85 if ( strncmp(szBuf, "43xxx", 5)
86 || strncmp(szBuf + 5, pszExpect, cchExpect)
87 || strcmp( szBuf + 5 + cchExpect, "yyy43") )
88 RTTestIFailed("at line %d: nested format '%s'\n"
89 " output: '%s'\n"
90 " wanted: '43xxx%syyy43'\n",
91 iLine, pszFormat, szBuf, pszExpect);
92 else if (cch != 5 + cchExpect + 5)
93 RTTestIFailed("at line %d: Invalid length %d returned, expected %u!\n",
94 iLine, cch, 5 + cchExpect + 5);
95}
96
97
98int main()
99{
100 RTTEST hTest;
101 int rc = RTTestInitAndCreate("tstRTStrFormat", &hTest);
102 if (rc)
103 return rc;
104 RTTestBanner(hTest);
105
106 uint32_t u32 = 0x010;
107 uint64_t u64 = 0x100;
108#define BUF_SIZE 120
109 char *pszBuf = (char *)RTTestGuardedAllocHead(hTest, BUF_SIZE);
110 char *pszBuf2 = (char *)RTTestGuardedAllocHead(hTest, BUF_SIZE);
111
112 RTTestSub(hTest, "Basics");
113
114 /* simple */
115 size_t cch = RTStrPrintf(pszBuf, BUF_SIZE, "u32=%d u64=%lld u64=%#llx", u32, u64, u64);
116 if (strcmp(pszBuf, "u32=16 u64=256 u64=0x100"))
117 {
118 RTTestIFailed("error: '%s'\n"
119 "wanted 'u32=16 u64=256 u64=0x100'\n", pszBuf);
120 }
121
122 /* just big. */
123 u64 = UINT64_C(0x7070605040302010);
124 cch = RTStrPrintf(pszBuf, BUF_SIZE, "u64=%#llx 42=%d u64=%lld 42=%d", u64, 42, u64, 42);
125 if (strcmp(pszBuf, "u64=0x7070605040302010 42=42 u64=8102081627430068240 42=42"))
126 {
127 RTTestIFailed("error: '%s'\n"
128 "wanted 'u64=0x8070605040302010 42=42 u64=8102081627430068240 42=42'\n", pszBuf);
129 RTTestIPrintf(RTTESTLVL_FAILURE, "%d\n", (int)(u64 % 10));
130 }
131
132 /* huge and negative. */
133 u64 = UINT64_C(0x8070605040302010);
134 cch = RTStrPrintf(pszBuf, BUF_SIZE, "u64=%#llx 42=%d u64=%llu 42=%d u64=%lld 42=%d", u64, 42, u64, 42, u64, 42);
135 /* Not sure if this is the correct decimal representation... But both */
136 if (strcmp(pszBuf, "u64=0x8070605040302010 42=42 u64=9255003132036915216 42=42 u64=-9191740941672636400 42=42"))
137 {
138 RTTestIFailed("error: '%s'\n"
139 "wanted 'u64=0x8070605040302010 42=42 u64=9255003132036915216 42=42 u64=-9191740941672636400 42=42'\n", pszBuf);
140 RTTestIPrintf(RTTESTLVL_FAILURE, "%d\n", (int)(u64 % 10));
141 }
142
143 /* 64-bit value bug. */
144 u64 = 0xa0000000;
145 cch = RTStrPrintf(pszBuf, BUF_SIZE, "u64=%#llx 42=%d u64=%lld 42=%d", u64, 42, u64, 42);
146 if (strcmp(pszBuf, "u64=0xa0000000 42=42 u64=2684354560 42=42"))
147 RTTestIFailed("error: '%s'\n"
148 "wanted 'u64=0xa0000000 42=42 u64=2684354560 42=42'\n", pszBuf);
149
150 /* uuid */
151 RTUUID Uuid;
152 RTUuidCreate(&Uuid);
153 char szCorrect[RTUUID_STR_LENGTH];
154 RTUuidToStr(&Uuid, szCorrect, sizeof(szCorrect));
155 cch = RTStrPrintf(pszBuf, BUF_SIZE, "%RTuuid", &Uuid);
156 if (strcmp(pszBuf, szCorrect))
157 RTTestIFailed("error: '%s'\n"
158 "expected: '%s'\n",
159 pszBuf, szCorrect);
160
161 /*
162 * Nested
163 */
164 RTTestSub(hTest, "Nested (%N)");
165 testNested(__LINE__, "42 2684354560 42 asdf 42", "42 %u 42 %s 42", 2684354560U, "asdf");
166 testNested(__LINE__, "", "");
167
168 /*
169 * allocation
170 */
171 RTTestSub(hTest, "RTStrAPrintf");
172 char *psz = (char *)~0;
173 int cch2 = RTStrAPrintf(&psz, "Hey there! %s%s", "This is a test", "!");
174 if (cch2 < 0)
175 RTTestIFailed("RTStrAPrintf failed, cch2=%d\n", cch2);
176 else if (strcmp(psz, "Hey there! This is a test!"))
177 RTTestIFailed("RTStrAPrintf failed\n"
178 "got : '%s'\n"
179 "wanted: 'Hey there! This is a test!'\n",
180 psz);
181 else if ((int)strlen(psz) != cch2)
182 RTTestIFailed("RTStrAPrintf failed, cch2 == %d expected %u\n", cch2, strlen(psz));
183 RTStrFree(psz);
184
185#define CHECK42(fmt, arg, out) \
186 do { \
187 cch = RTStrPrintf(pszBuf, BUF_SIZE, fmt " 42=%d " fmt " 42=%d", arg, 42, arg, 42); \
188 if (strcmp(pszBuf, out " 42=42 " out " 42=42")) \
189 RTTestIFailed("at line %d: format '%s'\n" \
190 " output: '%s'\n" \
191 " wanted: '%s'\n", \
192 __LINE__, fmt, pszBuf, out " 42=42 " out " 42=42"); \
193 else if (cch != sizeof(out " 42=42 " out " 42=42") - 1) \
194 RTTestIFailed("at line %d: Invalid length %d returned, expected %u!\n", \
195 __LINE__, cch, sizeof(out " 42=42 " out " 42=42") - 1); \
196 } while (0)
197
198#define CHECKSTR(Correct) \
199 if (strcmp(pszBuf, Correct)) \
200 RTTestIFailed("error: '%s'\n" \
201 "expected: '%s'\n", pszBuf, Correct); \
202
203 /*
204 * Runtime extensions.
205 */
206 RTTestSub(hTest, "Runtime format types (%R*)");
207 CHECK42("%RGi", (RTGCINT)127, "127");
208 CHECK42("%RGi", (RTGCINT)-586589, "-586589");
209
210 CHECK42("%RGp", (RTGCPHYS)0x0000000044505045, "0000000044505045");
211 CHECK42("%RGp", ~(RTGCPHYS)0, "ffffffffffffffff");
212
213 CHECK42("%RGu", (RTGCUINT)586589, "586589");
214 CHECK42("%RGu", (RTGCUINT)1, "1");
215 CHECK42("%RGu", (RTGCUINT)3000000000U, "3000000000");
216
217#if GC_ARCH_BITS == 32
218 CHECK42("%RGv", (RTGCUINTPTR)0, "00000000");
219 CHECK42("%RGv", ~(RTGCUINTPTR)0, "ffffffff");
220 CHECK42("%RGv", (RTGCUINTPTR)0x84342134, "84342134");
221#else
222 CHECK42("%RGv", (RTGCUINTPTR)0, "0000000000000000");
223 CHECK42("%RGv", ~(RTGCUINTPTR)0, "ffffffffffffffff");
224 CHECK42("%RGv", (RTGCUINTPTR)0x84342134, "0000000084342134");
225#endif
226
227 CHECK42("%RGx", (RTGCUINT)0x234, "234");
228 CHECK42("%RGx", (RTGCUINT)0xffffffff, "ffffffff");
229
230 CHECK42("%RRv", (RTRCUINTPTR)0, "00000000");
231 CHECK42("%RRv", ~(RTRCUINTPTR)0, "ffffffff");
232 CHECK42("%RRv", (RTRCUINTPTR)0x84342134, "84342134");
233
234 CHECK42("%RHi", (RTHCINT)127, "127");
235 CHECK42("%RHi", (RTHCINT)-586589, "-586589");
236
237 CHECK42("%RHp", (RTHCPHYS)0x0000000044505045, "0000000044505045");
238 CHECK42("%RHp", ~(RTHCPHYS)0, "ffffffffffffffff");
239
240 CHECK42("%RHu", (RTHCUINT)586589, "586589");
241 CHECK42("%RHu", (RTHCUINT)1, "1");
242 CHECK42("%RHu", (RTHCUINT)3000000000U, "3000000000");
243
244 if (sizeof(void*) == 8)
245 {
246 CHECK42("%RHv", (RTHCUINTPTR)0, "0000000000000000");
247 CHECK42("%RHv", ~(RTHCUINTPTR)0, "ffffffffffffffff");
248 CHECK42("%RHv", (RTHCUINTPTR)0x84342134, "0000000084342134");
249 }
250 else
251 {
252 CHECK42("%RHv", (RTHCUINTPTR)0, "00000000");
253 CHECK42("%RHv", ~(RTHCUINTPTR)0, "ffffffff");
254 CHECK42("%RHv", (RTHCUINTPTR)0x84342134, "84342134");
255 }
256
257 CHECK42("%RHx", (RTHCUINT)0x234, "234");
258 CHECK42("%RHx", (RTHCUINT)0xffffffff, "ffffffff");
259
260 CHECK42("%RI16", (int16_t)1, "1");
261 CHECK42("%RI16", (int16_t)-16384, "-16384");
262
263 CHECK42("%RI32", (int32_t)1123, "1123");
264 CHECK42("%RI32", (int32_t)-86596, "-86596");
265
266 CHECK42("%RI64", (int64_t)112345987345LL, "112345987345");
267 CHECK42("%RI64", (int64_t)-8659643985723459LL, "-8659643985723459");
268
269 CHECK42("%RI8", (int8_t)1, "1");
270 CHECK42("%RI8", (int8_t)-128, "-128");
271
272 CHECK42("%Rbn", "file.c", "file.c");
273 CHECK42("%Rbn", "foo/file.c", "file.c");
274 CHECK42("%Rbn", "/foo/file.c", "file.c");
275 CHECK42("%Rbn", "/dir/subdir/", "subdir/");
276
277 CHECK42("%Rfn", "function", "function");
278 CHECK42("%Rfn", "void function(void)", "function");
279
280 CHECK42("%RTfile", (RTFILE)127, "127");
281 CHECK42("%RTfile", (RTFILE)12341234, "12341234");
282
283 CHECK42("%RTfmode", (RTFMODE)0x123403, "00123403");
284
285 CHECK42("%RTfoff", (RTFOFF)12342312, "12342312");
286 CHECK42("%RTfoff", (RTFOFF)-123123123, "-123123123");
287 CHECK42("%RTfoff", (RTFOFF)858694596874568LL, "858694596874568");
288
289 RTFAR16 fp16;
290 fp16.off = 0x34ff;
291 fp16.sel = 0x0160;
292 CHECK42("%RTfp16", fp16, "0160:34ff");
293
294 RTFAR32 fp32;
295 fp32.off = 0xff094030;
296 fp32.sel = 0x0168;
297 CHECK42("%RTfp32", fp32, "0168:ff094030");
298
299 RTFAR64 fp64;
300 fp64.off = 0xffff003401293487ULL;
301 fp64.sel = 0x0ff8;
302 CHECK42("%RTfp64", fp64, "0ff8:ffff003401293487");
303 fp64.off = 0x0;
304 fp64.sel = 0x0;
305 CHECK42("%RTfp64", fp64, "0000:0000000000000000");
306
307 CHECK42("%RTgid", (RTGID)-1, "-1");
308 CHECK42("%RTgid", (RTGID)1004, "1004");
309
310 CHECK42("%RTino", (RTINODE)0, "0000000000000000");
311 CHECK42("%RTino", (RTINODE)0x123412341324ULL, "0000123412341324");
312
313 CHECK42("%RTint", (RTINT)127, "127");
314 CHECK42("%RTint", (RTINT)-586589, "-586589");
315 CHECK42("%RTint", (RTINT)-23498723, "-23498723");
316
317 CHECK42("%RTiop", (RTIOPORT)0x3c4, "03c4");
318 CHECK42("%RTiop", (RTIOPORT)0xffff, "ffff");
319
320 RTMAC Mac;
321 Mac.au8[0] = 0;
322 Mac.au8[1] = 0x1b;
323 Mac.au8[2] = 0x21;
324 Mac.au8[3] = 0x0a;
325 Mac.au8[4] = 0x1d;
326 Mac.au8[5] = 0xd9;
327 CHECK42("%RTmac", &Mac, "00:1b:21:0a:1d:d9");
328 Mac.au16[0] = 0xffff;
329 Mac.au16[1] = 0xffff;
330 Mac.au16[2] = 0xffff;
331 CHECK42("%RTmac", &Mac, "ff:ff:ff:ff:ff:ff");
332
333 RTNETADDRIPV4 Ipv4Addr;
334 Ipv4Addr.u = RT_H2N_U32_C(0xf040d003);
335 CHECK42("%RTnaipv4", Ipv4Addr.u, "240.64.208.3");
336 Ipv4Addr.u = RT_H2N_U32_C(0xffffffff);
337 CHECK42("%RTnaipv4", Ipv4Addr.u, "255.255.255.255");
338
339 RTNETADDRIPV6 Ipv6Addr;
340
341 /* any */
342 memset(&Ipv6Addr, 0, sizeof(Ipv6Addr));
343 CHECK42("%RTnaipv6", &Ipv6Addr, "::");
344
345 /* loopback */
346 Ipv6Addr.au8[15] = 1;
347 CHECK42("%RTnaipv6", &Ipv6Addr, "::1");
348
349 /* IPv4-compatible */
350 Ipv6Addr.au8[12] = 1;
351 Ipv6Addr.au8[13] = 1;
352 Ipv6Addr.au8[14] = 1;
353 Ipv6Addr.au8[15] = 1;
354 CHECK42("%RTnaipv6", &Ipv6Addr, "::1.1.1.1");
355
356 /* IPv4-mapped */
357 Ipv6Addr.au16[5] = RT_H2N_U16_C(0xffff);
358 CHECK42("%RTnaipv6", &Ipv6Addr, "::ffff:1.1.1.1");
359
360 /* IPv4-translated */
361 Ipv6Addr.au16[4] = RT_H2N_U16_C(0xffff);
362 Ipv6Addr.au16[5] = RT_H2N_U16_C(0x0000);
363 CHECK42("%RTnaipv6", &Ipv6Addr, "::ffff:0:1.1.1.1");
364
365 /* single zero word is not abbreviated, leading zeroes are not printed */
366 Ipv6Addr.au16[0] = RT_H2N_U16_C(0x0000);
367 Ipv6Addr.au16[1] = RT_H2N_U16_C(0x0001);
368 Ipv6Addr.au16[2] = RT_H2N_U16_C(0x0000);
369 Ipv6Addr.au16[3] = RT_H2N_U16_C(0x0001);
370 Ipv6Addr.au16[4] = RT_H2N_U16_C(0x0000);
371 Ipv6Addr.au16[5] = RT_H2N_U16_C(0x0001);
372 Ipv6Addr.au16[6] = RT_H2N_U16_C(0x0000);
373 Ipv6Addr.au16[7] = RT_H2N_U16_C(0x0001);
374 CHECK42("%RTnaipv6", &Ipv6Addr, "0:1:0:1:0:1:0:1");
375
376 /* longest run is abbreviated (here: at the beginning) */
377 Ipv6Addr.au16[0] = RT_H2N_U16_C(0x0000);
378 Ipv6Addr.au16[1] = RT_H2N_U16_C(0x0000);
379 Ipv6Addr.au16[2] = RT_H2N_U16_C(0x0000);
380 Ipv6Addr.au16[3] = RT_H2N_U16_C(0x0001);
381 Ipv6Addr.au16[4] = RT_H2N_U16_C(0x0000);
382 Ipv6Addr.au16[5] = RT_H2N_U16_C(0x0000);
383 Ipv6Addr.au16[6] = RT_H2N_U16_C(0x0001);
384 Ipv6Addr.au16[7] = RT_H2N_U16_C(0x0000);
385 CHECK42("%RTnaipv6", &Ipv6Addr, "::1:0:0:1:0");
386
387 /* longest run is abbreviated (here: first) */
388 Ipv6Addr.au16[0] = RT_H2N_U16_C(0x0001);
389 Ipv6Addr.au16[1] = RT_H2N_U16_C(0x0000);
390 Ipv6Addr.au16[2] = RT_H2N_U16_C(0x0000);
391 Ipv6Addr.au16[3] = RT_H2N_U16_C(0x0000);
392 Ipv6Addr.au16[4] = RT_H2N_U16_C(0x0001);
393 Ipv6Addr.au16[5] = RT_H2N_U16_C(0x0000);
394 Ipv6Addr.au16[6] = RT_H2N_U16_C(0x0000);
395 Ipv6Addr.au16[7] = RT_H2N_U16_C(0x0001);
396 CHECK42("%RTnaipv6", &Ipv6Addr, "1::1:0:0:1");
397
398 /* longest run is abbreviated (here: second) */
399 Ipv6Addr.au16[0] = RT_H2N_U16_C(0x0001);
400 Ipv6Addr.au16[1] = RT_H2N_U16_C(0x0000);
401 Ipv6Addr.au16[2] = RT_H2N_U16_C(0x0000);
402 Ipv6Addr.au16[3] = RT_H2N_U16_C(0x0001);
403 Ipv6Addr.au16[4] = RT_H2N_U16_C(0x0000);
404 Ipv6Addr.au16[5] = RT_H2N_U16_C(0x0000);
405 Ipv6Addr.au16[6] = RT_H2N_U16_C(0x0000);
406 Ipv6Addr.au16[7] = RT_H2N_U16_C(0x0001);
407 CHECK42("%RTnaipv6", &Ipv6Addr, "1:0:0:1::1");
408
409 /* longest run is abbreviated (here: at the end) */
410 Ipv6Addr.au16[0] = RT_H2N_U16_C(0x0001);
411 Ipv6Addr.au16[1] = RT_H2N_U16_C(0x0000);
412 Ipv6Addr.au16[2] = RT_H2N_U16_C(0x0000);
413 Ipv6Addr.au16[3] = RT_H2N_U16_C(0x0001);
414 Ipv6Addr.au16[4] = RT_H2N_U16_C(0x0000);
415 Ipv6Addr.au16[5] = RT_H2N_U16_C(0x0000);
416 Ipv6Addr.au16[6] = RT_H2N_U16_C(0x0000);
417 Ipv6Addr.au16[7] = RT_H2N_U16_C(0x0000);
418 CHECK42("%RTnaipv6", &Ipv6Addr, "1:0:0:1::");
419
420 /* first of the two runs of equal length is abbreviated */
421 Ipv6Addr.au16[0] = RT_H2N_U16_C(0x2001);
422 Ipv6Addr.au16[1] = RT_H2N_U16_C(0x0db8);
423 Ipv6Addr.au16[2] = RT_H2N_U16_C(0x0000);
424 Ipv6Addr.au16[3] = RT_H2N_U16_C(0x0000);
425 Ipv6Addr.au16[4] = RT_H2N_U16_C(0x0001);
426 Ipv6Addr.au16[5] = RT_H2N_U16_C(0x0000);
427 Ipv6Addr.au16[6] = RT_H2N_U16_C(0x0000);
428 Ipv6Addr.au16[7] = RT_H2N_U16_C(0x0001);
429 CHECK42("%RTnaipv6", &Ipv6Addr, "2001:db8::1:0:0:1");
430
431 Ipv6Addr.au16[0] = RT_H2N_U16_C(0x2001);
432 Ipv6Addr.au16[1] = RT_H2N_U16_C(0x0db8);
433 Ipv6Addr.au16[2] = RT_H2N_U16_C(0x85a3);
434 Ipv6Addr.au16[3] = RT_H2N_U16_C(0x0000);
435 Ipv6Addr.au16[4] = RT_H2N_U16_C(0x0000);
436 Ipv6Addr.au16[5] = RT_H2N_U16_C(0x8a2e);
437 Ipv6Addr.au16[6] = RT_H2N_U16_C(0x0370);
438 Ipv6Addr.au16[7] = RT_H2N_U16_C(0x7334);
439 CHECK42("%RTnaipv6", &Ipv6Addr, "2001:db8:85a3::8a2e:370:7334");
440
441 Ipv6Addr.au64[0] = UINT64_MAX;
442 Ipv6Addr.au64[1] = UINT64_MAX;
443 CHECK42("%RTnaipv6", &Ipv6Addr, "ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff");
444
445 RTNETADDR NetAddr;
446 memset(&NetAddr, 0, sizeof(NetAddr));
447
448 /* plain IPv6 address if port is not specified */
449 NetAddr.enmType = RTNETADDRTYPE_IPV6;
450 NetAddr.uAddr.au16[0] = RT_H2N_U16_C(0x0001);
451 NetAddr.uAddr.au16[7] = RT_H2N_U16_C(0x0001);
452 NetAddr.uPort = RTNETADDR_PORT_NA;
453 CHECK42("%RTnaddr", &NetAddr, "1::1");
454
455 /* square brackets around IPv6 address if port is specified */
456 NetAddr.uPort = 1;
457 CHECK42("%RTnaddr", &NetAddr, "[1::1]:1");
458
459 CHECK42("%RTproc", (RTPROCESS)0xffffff, "00ffffff");
460 CHECK42("%RTproc", (RTPROCESS)0x43455443, "43455443");
461
462 if (sizeof(RTUINTPTR) == 8)
463 {
464 CHECK42("%RTptr", (RTUINTPTR)0, "0000000000000000");
465 CHECK42("%RTptr", ~(RTUINTPTR)0, "ffffffffffffffff");
466 CHECK42("%RTptr", (RTUINTPTR)0x84342134, "0000000084342134");
467 }
468 else
469 {
470 CHECK42("%RTptr", (RTUINTPTR)0, "00000000");
471 CHECK42("%RTptr", ~(RTUINTPTR)0, "ffffffff");
472 CHECK42("%RTptr", (RTUINTPTR)0x84342134, "84342134");
473 }
474
475 if (sizeof(RTCCUINTREG) == 8)
476 {
477 CHECK42("%RTreg", (RTCCUINTREG)0, "0000000000000000");
478 CHECK42("%RTreg", ~(RTCCUINTREG)0, "ffffffffffffffff");
479 CHECK42("%RTreg", (RTCCUINTREG)0x84342134, "0000000084342134");
480 CHECK42("%RTreg", (RTCCUINTREG)0x23484342134ULL, "0000023484342134");
481 }
482 else
483 {
484 CHECK42("%RTreg", (RTCCUINTREG)0, "00000000");
485 CHECK42("%RTreg", ~(RTCCUINTREG)0, "ffffffff");
486 CHECK42("%RTreg", (RTCCUINTREG)0x84342134, "84342134");
487 }
488
489 CHECK42("%RTsel", (RTSEL)0x543, "0543");
490 CHECK42("%RTsel", (RTSEL)0xf8f8, "f8f8");
491
492 if (sizeof(RTSEMEVENT) == 8)
493 {
494 CHECK42("%RTsem", (RTSEMEVENT)0, "0000000000000000");
495 CHECK42("%RTsem", (RTSEMEVENT)0x23484342134ULL, "0000023484342134");
496 }
497 else
498 {
499 CHECK42("%RTsem", (RTSEMEVENT)0, "00000000");
500 CHECK42("%RTsem", (RTSEMEVENT)0x84342134, "84342134");
501 }
502
503 CHECK42("%RTsock", (RTSOCKET)12234, "12234");
504 CHECK42("%RTsock", (RTSOCKET)584854543, "584854543");
505
506 if (sizeof(RTTHREAD) == 8)
507 {
508 CHECK42("%RTthrd", (RTTHREAD)0, "0000000000000000");
509 CHECK42("%RTthrd", (RTTHREAD)~(uintptr_t)0, "ffffffffffffffff");
510 CHECK42("%RTthrd", (RTTHREAD)0x63484342134ULL, "0000063484342134");
511 }
512 else
513 {
514 CHECK42("%RTthrd", (RTTHREAD)0, "00000000");
515 CHECK42("%RTthrd", (RTTHREAD)~(uintptr_t)0, "ffffffff");
516 CHECK42("%RTthrd", (RTTHREAD)0x54342134, "54342134");
517 }
518
519 CHECK42("%RTuid", (RTUID)-2, "-2");
520 CHECK42("%RTuid", (RTUID)90344, "90344");
521
522 CHECK42("%RTuint", (RTUINT)584589, "584589");
523 CHECK42("%RTuint", (RTUINT)3, "3");
524 CHECK42("%RTuint", (RTUINT)2400000000U, "2400000000");
525
526 RTUuidCreate(&Uuid);
527 RTUuidToStr(&Uuid, szCorrect, sizeof(szCorrect));
528 cch = RTStrPrintf(pszBuf, BUF_SIZE, "%RTuuid", &Uuid);
529 if (strcmp(pszBuf, szCorrect))
530 RTTestIFailed("error: '%s'\n"
531 "expected: '%s'\n",
532 pszBuf, szCorrect);
533
534 CHECK42("%RTxint", (RTUINT)0x2345, "2345");
535 CHECK42("%RTxint", (RTUINT)0xffff8fff, "ffff8fff");
536
537 CHECK42("%RU16", (uint16_t)7, "7");
538 CHECK42("%RU16", (uint16_t)46384, "46384");
539
540 CHECK42("%RU32", (uint32_t)1123, "1123");
541 CHECK42("%RU32", (uint32_t)86596, "86596");
542 CHECK42("%4RU32", (uint32_t)42, " 42");
543 CHECK42("%04RU32", (uint32_t)42, "0042");
544 CHECK42("%.4RU32", (uint32_t)42, "0042");
545
546 CHECK42("%RU64", (uint64_t)112345987345ULL, "112345987345");
547 CHECK42("%RU64", (uint64_t)8659643985723459ULL, "8659643985723459");
548 CHECK42("%14RU64", (uint64_t)4, " 4");
549 CHECK42("%014RU64", (uint64_t)4, "00000000000004");
550 CHECK42("%.14RU64", (uint64_t)4, "00000000000004");
551
552 CHECK42("%RU8", (uint8_t)1, "1");
553 CHECK42("%RU8", (uint8_t)254, "254");
554 CHECK42("%RU8", 256, "0");
555
556 CHECK42("%RX16", (uint16_t)0x7, "7");
557 CHECK42("%RX16", 0x46384, "6384");
558
559 CHECK42("%RX32", (uint32_t)0x1123, "1123");
560 CHECK42("%RX32", (uint32_t)0x49939493, "49939493");
561
562 CHECK42("%RX64", UINT64_C(0x348734), "348734");
563 CHECK42("%RX64", UINT64_C(0x12312312312343f), "12312312312343f");
564 CHECK42("%5RX64", UINT64_C(0x42), " 42");
565 CHECK42("%05RX64", UINT64_C(0x42), "00042");
566 CHECK42("%.5RX64", UINT64_C(0x42), "00042");
567 CHECK42("%.05RX64", UINT64_C(0x42), "00042"); /* '0' is ignored */
568
569 CHECK42("%RX8", (uint8_t)1, "1");
570 CHECK42("%RX8", (uint8_t)0xff, "ff");
571 CHECK42("%RX8", 0x100, "0");
572
573 /*
574 * Thousand separators.
575 */
576 RTTestSub(hTest, "Thousand Separators (%'*)");
577
578 RTStrFormatNumber(pszBuf, 1, 10, 0, 0, RTSTR_F_THOUSAND_SEP); CHECKSTR("1"); memset(pszBuf, '!', BUF_SIZE);
579 RTStrFormatNumber(pszBuf, 10, 10, 0, 0, RTSTR_F_THOUSAND_SEP); CHECKSTR("10"); memset(pszBuf, '!', BUF_SIZE);
580 RTStrFormatNumber(pszBuf, 100, 10, 0, 0, RTSTR_F_THOUSAND_SEP); CHECKSTR("100"); memset(pszBuf, '!', BUF_SIZE);
581 RTStrFormatNumber(pszBuf, 1000, 10, 0, 0, RTSTR_F_THOUSAND_SEP); CHECKSTR("1 000"); memset(pszBuf, '!', BUF_SIZE);
582 RTStrFormatNumber(pszBuf, 10000, 10, 0, 0, RTSTR_F_THOUSAND_SEP); CHECKSTR("10 000"); memset(pszBuf, '!', BUF_SIZE);
583 RTStrFormatNumber(pszBuf, 100000, 10, 0, 0, RTSTR_F_THOUSAND_SEP); CHECKSTR("100 000"); memset(pszBuf, '!', BUF_SIZE);
584 RTStrFormatNumber(pszBuf, 1000000, 10, 0, 0, RTSTR_F_THOUSAND_SEP); CHECKSTR("1 000 000"); memset(pszBuf, '!', BUF_SIZE);
585
586 CHECK42("%'u", 1, "1");
587 CHECK42("%'u", 10, "10");
588 CHECK42("%'u", 100, "100");
589 CHECK42("%'u", 1000, "1 000");
590 CHECK42("%'u", 10000, "10 000");
591 CHECK42("%'u", 100000, "100 000");
592 CHECK42("%'u", 1000000, "1 000 000");
593 CHECK42("%'RU64", _1T, "1 099 511 627 776");
594 CHECK42("%'RU64", _1E, "1 152 921 504 606 846 976");
595
596 /*
597 * String formatting.
598 */
599 RTTestSub(hTest, "String formatting (%s)");
600
601// 0 1 2 3 4 5 6 7
602// 0....5....0....5....0....5....0....5....0....5....0....5....0....5....0
603 cch = RTStrPrintf(pszBuf, BUF_SIZE, "%-10s %-30s %s", "cmd", "args", "description");
604 CHECKSTR("cmd args description");
605
606 cch = RTStrPrintf(pszBuf, BUF_SIZE, "%-10s %-30s %s", "cmd", "", "description");
607 CHECKSTR("cmd description");
608
609
610 cch = RTStrPrintf(pszBuf, BUF_SIZE, "%*s", 0, "");
611 CHECKSTR("");
612
613 /* automatic conversions. */
614 static RTUNICP s_usz1[] = { 'h', 'e', 'l', 'l', 'o', ' ', 'w', 'o', 'r', 'l', 'd', 0 }; //assumes ascii.
615 static RTUTF16 s_wsz1[] = { 'h', 'e', 'l', 'l', 'o', ' ', 'w', 'o', 'r', 'l', 'd', 0 }; //assumes ascii.
616
617 cch = RTStrPrintf(pszBuf, BUF_SIZE, "%ls", s_wsz1);
618 CHECKSTR("hello world");
619 cch = RTStrPrintf(pszBuf, BUF_SIZE, "%Ls", s_usz1);
620 CHECKSTR("hello world");
621
622 cch = RTStrPrintf(pszBuf, BUF_SIZE, "%.5ls", s_wsz1);
623 CHECKSTR("hello");
624 cch = RTStrPrintf(pszBuf, BUF_SIZE, "%.5Ls", s_usz1);
625 CHECKSTR("hello");
626
627 /*
628 * Unicode string formatting.
629 */
630 RTTestSub(hTest, "Unicode string formatting (%ls)");
631 static RTUTF16 s_wszEmpty[] = { 0 }; //assumes ascii.
632 static RTUTF16 s_wszCmd[] = { 'c', 'm', 'd', 0 }; //assumes ascii.
633 static RTUTF16 s_wszArgs[] = { 'a', 'r', 'g', 's', 0 }; //assumes ascii.
634 static RTUTF16 s_wszDesc[] = { 'd', 'e', 's', 'c', 'r', 'i', 'p', 't', 'i', 'o', 'n', 0 }; //assumes ascii.
635
636// 0 1 2 3 4 5 6 7
637// 0....5....0....5....0....5....0....5....0....5....0....5....0....5....0
638 cch = RTStrPrintf(pszBuf, BUF_SIZE, "%-10ls %-30ls %ls", s_wszCmd, s_wszArgs, s_wszDesc);
639 CHECKSTR("cmd args description");
640
641 cch = RTStrPrintf(pszBuf, BUF_SIZE, "%-10ls %-30ls %ls", s_wszCmd, s_wszEmpty, s_wszDesc);
642 CHECKSTR("cmd description");
643
644
645#if 0
646 static RTUNICP s_usz2[] = { 0xc5, 0xc6, 0xf8, 0 };
647 static RTUTF16 s_wsz2[] = { 0xc5, 0xc6, 0xf8, 0 };
648 static char s_sz2[] = { 0xc5, 0xc6, 0xf8, 0 };///@todo multibyte tests.
649
650 cch = RTStrPrintf(pszBuf, BUF_SIZE, "%ls", s_wsz2);
651 CHECKSTR(s_sz2);
652 cch = RTStrPrintf(pszBuf, BUF_SIZE, "%Ls", s_usz2);
653 CHECKSTR(s_sz2);
654#endif
655
656 /*
657 * Hex formatting.
658 */
659 RTTestSub(hTest, "Hex dump formatting (%Rhx*)");
660 static uint8_t const s_abHex1[] = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20 };
661 cch = RTStrPrintf(pszBuf, BUF_SIZE, "%.1Rhxs", s_abHex1);
662 CHECKSTR("00");
663 cch = RTStrPrintf(pszBuf, BUF_SIZE, "%.2Rhxs", s_abHex1);
664 CHECKSTR("00 01");
665 cch = RTStrPrintf(pszBuf, BUF_SIZE, "%Rhxs", s_abHex1);
666 CHECKSTR("00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f");
667 cch = RTStrPrintf(pszBuf, BUF_SIZE, "%.*Rhxs", sizeof(s_abHex1), s_abHex1);
668 CHECKSTR("00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f 10 11 12 13 14");
669 cch = RTStrPrintf(pszBuf, BUF_SIZE, "%4.*Rhxs", sizeof(s_abHex1), s_abHex1);
670 CHECKSTR("00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f 10 11 12 13 14");
671 cch = RTStrPrintf(pszBuf, BUF_SIZE, "%1.*Rhxs", sizeof(s_abHex1), s_abHex1);
672 CHECKSTR("00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f 10 11 12 13 14");
673 cch = RTStrPrintf(pszBuf, BUF_SIZE, "%256.*Rhxs", sizeof(s_abHex1), s_abHex1);
674 CHECKSTR("00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f 10 11 12 13 14");
675
676 cch = RTStrPrintf(pszBuf, BUF_SIZE, "%4.8Rhxd", s_abHex1);
677 RTStrPrintf(pszBuf2, BUF_SIZE,
678 "%p 0000: 00 01 02 03 ....\n"
679 "%p 0004: 04 05 06 07 ....",
680 &s_abHex1[0], &s_abHex1[4]);
681 CHECKSTR(pszBuf2);
682
683 cch = RTStrPrintf(pszBuf, BUF_SIZE, "%4.6Rhxd", s_abHex1);
684 RTStrPrintf(pszBuf2, BUF_SIZE,
685 "%p 0000: 00 01 02 03 ....\n"
686 "%p 0004: 04 05 ..",
687 &s_abHex1[0], &s_abHex1[4]);
688 CHECKSTR(pszBuf2);
689
690 cch = RTStrPrintf(pszBuf, BUF_SIZE, "%.*Rhxd", sizeof(s_abHex1), s_abHex1);
691 RTStrPrintf(pszBuf2, BUF_SIZE,
692 "%p 0000: 00 01 02 03 04 05 06 07-08 09 0a 0b 0c 0d 0e 0f ................\n"
693 "%p 0010: 10 11 12 13 14 ....."
694 ,
695 &s_abHex1[0], &s_abHex1[0x10]);
696 CHECKSTR(pszBuf2);
697
698 /*
699 * x86 register formatting.
700 */
701 RTTestSub(hTest, "x86 register format types (%RAx86[*])");
702 CHECK42("%RAx86[cr0]", UINT64_C(0x80000011), "80000011{PE,ET,PG}");
703 CHECK42("%RAx86[cr0]", UINT64_C(0x80000001), "80000001{PE,PG}");
704 CHECK42("%RAx86[cr0]", UINT64_C(0x00000001), "00000001{PE}");
705 CHECK42("%RAx86[cr0]", UINT64_C(0x80000000), "80000000{PG}");
706 CHECK42("%RAx86[cr4]", UINT64_C(0x80000001), "80000001{VME,unkn=80000000}");
707 CHECK42("%#RAx86[cr4]", UINT64_C(0x80000001), "0x80000001{VME,unkn=0x80000000}");
708
709 /*
710 * Custom types.
711 */
712 RTTestSub(hTest, "Custom format types (%R[*])");
713 RTTESTI_CHECK_RC(RTStrFormatTypeRegister("type3", TstType, (void *)((uintptr_t)TstType)), VINF_SUCCESS);
714 RTTESTI_CHECK_RC(RTStrFormatTypeSetUser("type3", (void *)((uintptr_t)TstType + 3)), VINF_SUCCESS);
715 cch = RTStrPrintf(pszBuf, BUF_SIZE, "%R[type3]", (void *)1);
716 CHECKSTR("type3=1");
717
718 RTTESTI_CHECK_RC(RTStrFormatTypeRegister("type1", TstType, (void *)((uintptr_t)TstType)), VINF_SUCCESS);
719 RTTESTI_CHECK_RC(RTStrFormatTypeSetUser("type1", (void *)((uintptr_t)TstType + 1)), VINF_SUCCESS);
720 cch = RTStrPrintf(pszBuf, BUF_SIZE, "%R[type3] %R[type1]", (void *)1, (void *)2);
721 CHECKSTR("type3=1 type1=2");
722
723 RTTESTI_CHECK_RC(RTStrFormatTypeRegister("type4", TstType, (void *)((uintptr_t)TstType)), VINF_SUCCESS);
724 RTTESTI_CHECK_RC(RTStrFormatTypeSetUser("type4", (void *)((uintptr_t)TstType + 4)), VINF_SUCCESS);
725 cch = RTStrPrintf(pszBuf, BUF_SIZE, "%R[type3] %R[type1] %R[type4]", (void *)1, (void *)2, (void *)3);
726 CHECKSTR("type3=1 type1=2 type4=3");
727
728 RTTESTI_CHECK_RC(RTStrFormatTypeRegister("type2", TstType, (void *)((uintptr_t)TstType)), VINF_SUCCESS);
729 RTTESTI_CHECK_RC(RTStrFormatTypeSetUser("type2", (void *)((uintptr_t)TstType + 2)), VINF_SUCCESS);
730 cch = RTStrPrintf(pszBuf, BUF_SIZE, "%R[type3] %R[type1] %R[type4] %R[type2]", (void *)1, (void *)2, (void *)3, (void *)4);
731 CHECKSTR("type3=1 type1=2 type4=3 type2=4");
732
733 RTTESTI_CHECK_RC(RTStrFormatTypeRegister("type5", TstType, (void *)((uintptr_t)TstType)), VINF_SUCCESS);
734 RTTESTI_CHECK_RC(RTStrFormatTypeSetUser("type5", (void *)((uintptr_t)TstType + 5)), VINF_SUCCESS);
735 cch = RTStrPrintf(pszBuf, BUF_SIZE, "%R[type3] %R[type1] %R[type4] %R[type2] %R[type5]", (void *)1, (void *)2, (void *)3, (void *)4, (void *)5);
736 CHECKSTR("type3=1 type1=2 type4=3 type2=4 type5=5");
737
738 RTTESTI_CHECK_RC(RTStrFormatTypeSetUser("type1", (void *)((uintptr_t)TstType + 1)), VINF_SUCCESS);
739 RTTESTI_CHECK_RC(RTStrFormatTypeSetUser("type2", (void *)((uintptr_t)TstType + 2)), VINF_SUCCESS);
740 RTTESTI_CHECK_RC(RTStrFormatTypeSetUser("type3", (void *)((uintptr_t)TstType + 3)), VINF_SUCCESS);
741 RTTESTI_CHECK_RC(RTStrFormatTypeSetUser("type4", (void *)((uintptr_t)TstType + 4)), VINF_SUCCESS);
742 RTTESTI_CHECK_RC(RTStrFormatTypeSetUser("type5", (void *)((uintptr_t)TstType + 5)), VINF_SUCCESS);
743
744 cch = RTStrPrintf(pszBuf, BUF_SIZE, "%R[type3] %R[type1] %R[type4] %R[type2] %R[type5]", (void *)10, (void *)20, (void *)30, (void *)40, (void *)50);
745 CHECKSTR("type3=10 type1=20 type4=30 type2=40 type5=50");
746
747 RTTESTI_CHECK_RC(RTStrFormatTypeDeregister("type2"), VINF_SUCCESS);
748 cch = RTStrPrintf(pszBuf, BUF_SIZE, "%R[type3] %R[type1] %R[type4] %R[type5]", (void *)10, (void *)20, (void *)30, (void *)40);
749 CHECKSTR("type3=10 type1=20 type4=30 type5=40");
750
751 RTTESTI_CHECK_RC(RTStrFormatTypeDeregister("type5"), VINF_SUCCESS);
752 cch = RTStrPrintf(pszBuf, BUF_SIZE, "%R[type3] %R[type1] %R[type4]", (void *)10, (void *)20, (void *)30);
753 CHECKSTR("type3=10 type1=20 type4=30");
754
755 RTTESTI_CHECK_RC(RTStrFormatTypeDeregister("type4"), VINF_SUCCESS);
756 cch = RTStrPrintf(pszBuf, BUF_SIZE, "%R[type3] %R[type1]", (void *)10, (void *)20);
757 CHECKSTR("type3=10 type1=20");
758
759 RTTESTI_CHECK_RC(RTStrFormatTypeDeregister("type1"), VINF_SUCCESS);
760 cch = RTStrPrintf(pszBuf, BUF_SIZE, "%R[type3]", (void *)10);
761 CHECKSTR("type3=10");
762
763 RTTESTI_CHECK_RC(RTStrFormatTypeDeregister("type3"), VINF_SUCCESS);
764
765 /*
766 * Summarize and exit.
767 */
768 return RTTestSummaryAndDestroy(hTest);
769}
770
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette