VirtualBox

source: vbox/trunk/src/VBox/Runtime/testcase/tstSystemQueryOsInfo.cpp@ 14515

Last change on this file since 14515 was 11822, checked in by vboxsync, 16 years ago

IPRT: RTR3Init cleanup.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 4.5 KB
Line 
1/* $Id: tstSystemQueryOsInfo.cpp 11822 2008-08-29 14:21:03Z vboxsync $ */
2/** @file
3 * IPRT Testcase - RTSystemQueryOSInfo.
4 */
5
6/*
7 * Copyright (C) 2006-2007 Sun Microsystems, Inc.
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 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
27 * Clara, CA 95054 USA or visit http://www.sun.com if you need
28 * additional information or have any questions.
29 */
30
31/*******************************************************************************
32* Header Files *
33*******************************************************************************/
34#include <iprt/system.h>
35#include <iprt/initterm.h>
36#include <iprt/string.h>
37#include <iprt/stream.h>
38
39
40/*******************************************************************************
41* Global Variables *
42*******************************************************************************/
43static int g_cErrors = 0;
44
45
46int main()
47{
48 RTR3Init();
49
50 RTPrintf("tstSystemQueryOsInfo: TESTINGS...\n");
51
52 /*
53 * Simple stuff.
54 */
55 char szInfo[256];
56 int rc;
57
58 rc = RTSystemQueryOSInfo(RTSYSOSINFO_PRODUCT, szInfo, sizeof(szInfo));
59 RTPrintf("tstSystemQueryOsInfo: PRODUCT: \"%s\", rc=%Rrc\n", szInfo, rc);
60
61 rc = RTSystemQueryOSInfo(RTSYSOSINFO_RELEASE, szInfo, sizeof(szInfo));
62 RTPrintf("tstSystemQueryOsInfo: RELEASE: \"%s\", rc=%Rrc\n", szInfo, rc);
63
64 rc = RTSystemQueryOSInfo(RTSYSOSINFO_VERSION, szInfo, sizeof(szInfo));
65 RTPrintf("tstSystemQueryOsInfo: VERSION: \"%s\", rc=%Rrc\n", szInfo, rc);
66
67 rc = RTSystemQueryOSInfo(RTSYSOSINFO_SERVICE_PACK, szInfo, sizeof(szInfo));
68 RTPrintf("tstSystemQueryOsInfo: SERVICE_PACK: \"%s\", rc=%Rrc\n", szInfo, rc);
69
70 /*
71 * Check that unsupported stuff is terminated correctly.
72 */
73 for (int i = RTSYSOSINFO_INVALID + 1; i < RTSYSOSINFO_END; i++)
74 {
75 memset(szInfo, ' ', sizeof(szInfo));
76 rc = RTSystemQueryOSInfo((RTSYSOSINFO)i, szInfo, sizeof(szInfo));
77 if ( rc == VERR_NOT_SUPPORTED
78 && szInfo[0] != '\0')
79 {
80 RTPrintf("tstSystemQueryOsInfo: FAILED - level=%d, rc=VERR_NOT_SUPPORTED, buffer not terminated\n", i);
81 g_cErrors++;
82 }
83 }
84
85 /*
86 * Check buffer overflow
87 */
88 for (int i = RTSYSOSINFO_INVALID + 1; i < RTSYSOSINFO_END; i++)
89 {
90 rc = VERR_BUFFER_OVERFLOW;
91 for (size_t cch = 0; cch < sizeof(szInfo) && rc == VERR_BUFFER_OVERFLOW; cch++)
92 {
93 memset(szInfo, 0x7f, sizeof(szInfo));
94 rc = RTSystemQueryOSInfo((RTSYSOSINFO)i, szInfo, cch);
95
96 /* check the padding. */
97 for (size_t off = cch; off < sizeof(szInfo); off++)
98 if (szInfo[off] != 0x7f)
99 {
100 RTPrintf("tstSystemQueryOsInfo: FAILED - level=%d, rc=%Rrc, cch=%zu, off=%zu: Wrote too much!\n", i, rc, cch, off);
101 g_cErrors++;
102 break;
103 }
104
105 /* check for zero terminator. */
106 if ( ( rc == VERR_BUFFER_OVERFLOW
107 || rc == VERR_NOT_SUPPORTED
108 || RT_SUCCESS(rc))
109 && cch > 0
110 && !memchr(szInfo, '\0', cch))
111 {
112
113 RTPrintf("tstSystemQueryOsInfo: FAILED - level=%d, rc=%Rrc, cch=%zu: Buffer not terminated!\n", i, rc, cch);
114 g_cErrors++;
115 }
116 }
117 }
118
119 /*
120 * Summarize and exit.
121 */
122 if (!g_cErrors)
123 RTPrintf("tstSystemQueryOsInfo: SUCCESS\n");
124 else
125 RTPrintf("tstSystemQueryOsInfo: FAILED - %d errors\n", g_cErrors);
126 return !!g_cErrors;
127}
128
129
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