1 | /* $Id: tstRTErrUnique.cpp 41557 2012-06-03 22:45:44Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * IPRT Testcase - Error Messages.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2006-2012 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/err.h>
|
---|
32 | #include <iprt/string.h>
|
---|
33 | #include <iprt/test.h>
|
---|
34 | #ifdef VBOX
|
---|
35 | # include <VBox/err.h>
|
---|
36 | #endif
|
---|
37 |
|
---|
38 |
|
---|
39 | /*******************************************************************************
|
---|
40 | * Global Variables *
|
---|
41 | *******************************************************************************/
|
---|
42 | /** Array of messages.
|
---|
43 | * The data is generated by a sed script.
|
---|
44 | */
|
---|
45 | static const RTSTATUSMSG g_aErrorMessages[] =
|
---|
46 | {
|
---|
47 | #include "errmsgdata.h"
|
---|
48 | };
|
---|
49 |
|
---|
50 |
|
---|
51 | static bool strIsPermissibleDuplicate(const RTSTATUSMSG *pMsg)
|
---|
52 | {
|
---|
53 | const char *pszDefine = pMsg->pszDefine;
|
---|
54 | size_t cchDefine = strlen(pszDefine);
|
---|
55 |
|
---|
56 | #define STR_ENDS_WITH(a_psz, a_cch, a_sz) \
|
---|
57 | ( (a_cch) >= sizeof(a_sz) && !strncmp((a_psz) + (a_cch) - sizeof(a_sz) + 1, RT_STR_TUPLE(a_sz)) )
|
---|
58 |
|
---|
59 | return STR_ENDS_WITH(pszDefine, cchDefine, "_FIRST")
|
---|
60 | || STR_ENDS_WITH(pszDefine, cchDefine, "_LAST")
|
---|
61 | || STR_ENDS_WITH(pszDefine, cchDefine, "_LOWEST")
|
---|
62 | || STR_ENDS_WITH(pszDefine, cchDefine, "_HIGHEST")
|
---|
63 | || strstr(pMsg->pszMsgShort, "(mapped to") != 0;
|
---|
64 | }
|
---|
65 |
|
---|
66 |
|
---|
67 | int main()
|
---|
68 | {
|
---|
69 | RTTEST hTest;
|
---|
70 | RTEXITCODE rcExit = RTTestInitAndCreate("tstRTErrUnique", &hTest);
|
---|
71 | if (rcExit != RTEXITCODE_SUCCESS)
|
---|
72 | return rcExit;
|
---|
73 | RTTestBanner(hTest);
|
---|
74 |
|
---|
75 | RTTestSub(hTest, "IPRT status code");
|
---|
76 | for (uint32_t i = 0; i < RT_ELEMENTS(g_aErrorMessages) - 1; i++)
|
---|
77 | if (!strIsPermissibleDuplicate(&g_aErrorMessages[i]))
|
---|
78 | for (uint32_t j = i + 1; j < RT_ELEMENTS(g_aErrorMessages); j++)
|
---|
79 | if ( !strIsPermissibleDuplicate(&g_aErrorMessages[j])
|
---|
80 | && g_aErrorMessages[i].iCode == g_aErrorMessages[j].iCode)
|
---|
81 | RTTestFailed(hTest, "Status code %d can mean both '%s' and '%s'",
|
---|
82 | g_aErrorMessages[i].iCode,
|
---|
83 | g_aErrorMessages[i].pszDefine,
|
---|
84 | g_aErrorMessages[j].pszDefine);
|
---|
85 |
|
---|
86 | return RTTestSummaryAndDestroy(hTest);
|
---|
87 | }
|
---|
88 |
|
---|