VirtualBox

source: vbox/trunk/src/VBox/Runtime/testcase/tstRTSystemQueryOsInfo.cpp@ 26605

Last change on this file since 26605 was 26605, checked in by vboxsync, 15 years ago

tstSystemQueryOsInfo -> tstRTSystemQueryOsInfo.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 4.4 KB
Line 
1/* $Id: tstRTSystemQueryOsInfo.cpp 26605 2010-02-17 12:33:37Z 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/string.h>
36#include <iprt/test.h>
37
38
39/*******************************************************************************
40* Global Variables *
41*******************************************************************************/
42static int g_cErrors = 0;
43
44
45int main()
46{
47 RTTEST hTest;
48 int rc = RTTestInitAndCreate("tstRTSystemQueryOsInfo", &hTest);
49 if (rc)
50 return rc;
51 RTTestBanner(hTest);
52
53 /*
54 * Simple stuff.
55 */
56 char szInfo[256];
57
58 rc = RTSystemQueryOSInfo(RTSYSOSINFO_PRODUCT, szInfo, sizeof(szInfo));
59 RTTestIPrintf(RTTESTLVL_ALWAYS, "PRODUCT: \"%s\", rc=%Rrc\n", szInfo, rc);
60
61 rc = RTSystemQueryOSInfo(RTSYSOSINFO_RELEASE, szInfo, sizeof(szInfo));
62 RTTestIPrintf(RTTESTLVL_ALWAYS, "RELEASE: \"%s\", rc=%Rrc\n", szInfo, rc);
63
64 rc = RTSystemQueryOSInfo(RTSYSOSINFO_VERSION, szInfo, sizeof(szInfo));
65 RTTestIPrintf(RTTESTLVL_ALWAYS, "VERSION: \"%s\", rc=%Rrc\n", szInfo, rc);
66
67 rc = RTSystemQueryOSInfo(RTSYSOSINFO_SERVICE_PACK, szInfo, sizeof(szInfo));
68 RTTestIPrintf(RTTESTLVL_ALWAYS, "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 RTTestIFailed("level=%d; unterminated buffer on VERR_NOT_SUPPORTED\n", i);
80 else if (RT_SUCCESS(rc) || rc == VERR_BUFFER_OVERFLOW)
81 RTTESTI_CHECK(memchr(szInfo, '\0', sizeof(szInfo)) != NULL);
82 else if (rc != VERR_NOT_SUPPORTED)
83 RTTestIFailed("level=%d unexpected rc=%Rrc\n", i, rc);
84 }
85
86 /*
87 * Check buffer overflow
88 */
89 for (int i = RTSYSOSINFO_INVALID + 1; i < RTSYSOSINFO_END; i++)
90 {
91 rc = VERR_BUFFER_OVERFLOW;
92 for (size_t cch = 0; cch < sizeof(szInfo) && rc == VERR_BUFFER_OVERFLOW; cch++)
93 {
94 memset(szInfo, 0x7f, sizeof(szInfo));
95 rc = RTSystemQueryOSInfo((RTSYSOSINFO)i, szInfo, cch);
96
97 /* check the padding. */
98 for (size_t off = cch; off < sizeof(szInfo); off++)
99 if (szInfo[off] != 0x7f)
100 {
101 RTTestIFailed("level=%d, rc=%Rrc, cch=%zu, off=%zu: Wrote too much!\n", i, rc, cch, off);
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 RTTestIFailed("level=%d, rc=%Rrc, cch=%zu: Buffer not terminated!\n", i, rc, cch);
114 g_cErrors++;
115 }
116 }
117 }
118
119 return RTTestSummaryAndDestroy(hTest);
120}
121
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