VirtualBox

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

Last change on this file since 102792 was 98103, checked in by vboxsync, 22 months ago

Copyright year updates by scm.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 5.4 KB
Line 
1/* $Id: tstRTSystemQueryOsInfo.cpp 98103 2023-01-17 14:15:46Z vboxsync $ */
2/** @file
3 * IPRT Testcase - RTSystemQueryOSInfo.
4 */
5
6/*
7 * Copyright (C) 2006-2023 Oracle and/or its affiliates.
8 *
9 * This file is part of VirtualBox base platform packages, as
10 * available from https://www.virtualbox.org.
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation, in version 3 of the
15 * License.
16 *
17 * This program is distributed in the hope that it will be useful, but
18 * WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 * General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, see <https://www.gnu.org/licenses>.
24 *
25 * The contents of this file may alternatively be used under the terms
26 * of the Common Development and Distribution License Version 1.0
27 * (CDDL), a copy of it is provided in the "COPYING.CDDL" file included
28 * in the VirtualBox distribution, in which case the provisions of the
29 * CDDL are applicable instead of those of the GPL.
30 *
31 * You may elect to license modified versions of this file under the
32 * terms and conditions of either the GPL or the CDDL or both.
33 *
34 * SPDX-License-Identifier: GPL-3.0-only OR CDDL-1.0
35 */
36
37
38/*********************************************************************************************************************************
39* Header Files *
40*********************************************************************************************************************************/
41#include <iprt/system.h>
42
43#include <iprt/assert.h>
44#include <iprt/errcore.h>
45#include <iprt/string.h>
46#include <iprt/test.h>
47
48
49int main()
50{
51 RTTEST hTest;
52 int rc = RTTestInitAndCreate("tstRTSystemQueryOsInfo", &hTest);
53 if (rc)
54 return rc;
55 RTTestBanner(hTest);
56
57 /*
58 * Simple stuff.
59 */
60 char szInfo[_4K];
61
62 rc = RTSystemQueryOSInfo(RTSYSOSINFO_PRODUCT, szInfo, sizeof(szInfo));
63 RTTestIPrintf(RTTESTLVL_ALWAYS, "PRODUCT: \"%s\", rc=%Rrc\n", szInfo, rc);
64
65 rc = RTSystemQueryOSInfo(RTSYSOSINFO_RELEASE, szInfo, sizeof(szInfo));
66 RTTestIPrintf(RTTESTLVL_ALWAYS, "RELEASE: \"%s\", rc=%Rrc\n", szInfo, rc);
67
68 rc = RTSystemQueryOSInfo(RTSYSOSINFO_VERSION, szInfo, sizeof(szInfo));
69 RTTestIPrintf(RTTESTLVL_ALWAYS, "VERSION: \"%s\", rc=%Rrc\n", szInfo, rc);
70
71 rc = RTSystemQueryOSInfo(RTSYSOSINFO_SERVICE_PACK, szInfo, sizeof(szInfo));
72 RTTestIPrintf(RTTESTLVL_ALWAYS, "SERVICE_PACK: \"%s\", rc=%Rrc\n", szInfo, rc);
73
74 uint64_t cbTotal;
75 rc = RTSystemQueryTotalRam(&cbTotal);
76 RTTestIPrintf(RTTESTLVL_ALWAYS, "Total RAM: %'RU64 Bytes (%RU64 KB, %RU64 MB)\n",
77 cbTotal, cbTotal / _1K, cbTotal / _1M);
78
79 uint64_t cbAvailable;
80 rc = RTSystemQueryAvailableRam(&cbAvailable);
81 RTTestIPrintf(RTTESTLVL_ALWAYS, "Available RAM: %'RU64 Bytes (%RU64 KB, %RU64 MB)\n",
82 cbAvailable, cbAvailable / _1K, cbAvailable / _1M);
83
84 /*
85 * Check that unsupported stuff is terminated correctly.
86 */
87 for (int i = RTSYSOSINFO_INVALID + 1; i < RTSYSOSINFO_END; i++)
88 {
89 memset(szInfo, ' ', sizeof(szInfo));
90 rc = RTSystemQueryOSInfo((RTSYSOSINFO)i, szInfo, sizeof(szInfo));
91 if ( rc == VERR_NOT_SUPPORTED
92 && szInfo[0] != '\0')
93 RTTestIFailed("level=%d; unterminated buffer on VERR_NOT_SUPPORTED\n", i);
94 else if (RT_SUCCESS(rc) || rc == VERR_BUFFER_OVERFLOW)
95 RTTESTI_CHECK(RTStrEnd(szInfo, sizeof(szInfo)) != NULL);
96 else if (rc != VERR_NOT_SUPPORTED)
97 RTTestIFailed("level=%d unexpected rc=%Rrc\n", i, rc);
98 }
99
100 /*
101 * Check buffer overflow
102 */
103 RTAssertSetQuiet(true);
104 RTAssertSetMayPanic(false);
105 for (int i = RTSYSDMISTR_INVALID + 1; i < RTSYSDMISTR_END; i++)
106 {
107 RTTESTI_CHECK_RC(RTSystemQueryDmiString((RTSYSDMISTR)i, szInfo, 0), VERR_INVALID_PARAMETER);
108
109 /* Get the length of the info and check that we get overflow errors for
110 everything less that it. */
111 rc = RTSystemQueryOSInfo((RTSYSOSINFO)i, szInfo, sizeof(szInfo));
112 if (RT_FAILURE(rc))
113 continue;
114 size_t const cchInfo = strlen(szInfo);
115
116 for (size_t cch = 1; cch < sizeof(szInfo) && cch < cchInfo; cch++)
117 {
118 memset(szInfo, 0x7f, sizeof(szInfo));
119 RTTESTI_CHECK_RC(RTSystemQueryOSInfo((RTSYSOSINFO)i, szInfo, cch), VERR_BUFFER_OVERFLOW);
120
121 /* check the padding. */
122 for (size_t off = cch; off < sizeof(szInfo); off++)
123 if (szInfo[off] != 0x7f)
124 {
125 RTTestIFailed("level=%d, rc=%Rrc, cch=%zu, off=%zu: Wrote too much!\n", i, rc, cch, off);
126 break;
127 }
128
129 /* check for zero terminator. */
130 if (!RTStrEnd(szInfo, cch))
131 RTTestIFailed("level=%d, rc=%Rrc, cch=%zu: Buffer not terminated!\n", i, rc, cch);
132 }
133
134 /* Check that the exact length works. */
135 rc = RTSystemQueryOSInfo((RTSYSOSINFO)i, szInfo, cchInfo + 1);
136 if (rc != VINF_SUCCESS)
137 RTTestIFailed("level=%d: rc=%Rrc when specifying exactly right buffer length (%zu)\n", i, rc, cchInfo + 1);
138 }
139
140 return RTTestSummaryAndDestroy(hTest);
141}
142
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