VirtualBox

source: vbox/trunk/src/VBox/VMM/testcase/tstCFGM.cpp@ 3723

Last change on this file since 3723 was 2981, checked in by vboxsync, 17 years ago

InnoTek -> innotek: all the headers and comments.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 4.4 KB
Line 
1/* $Id: tstCFGM.cpp 2981 2007-06-01 16:01:28Z vboxsync $ */
2/** @file
3 * Testcase for CFGM.
4 */
5
6/*
7 * Copyright (C) 2006-2007 innotek GmbH
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 as published by the Free Software Foundation,
13 * in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
14 * distribution. VirtualBox OSE is distributed in the hope that it will
15 * be useful, but WITHOUT ANY WARRANTY of any kind.
16 *
17 * If you received this file as part of a commercial VirtualBox
18 * distribution, then only the terms of your commercial VirtualBox
19 * license agreement apply instead of the previous paragraph.
20 */
21
22
23
24/*******************************************************************************
25* Header Files *
26*******************************************************************************/
27#include <VBox/sup.h>
28#include <VBox/cfgm.h>
29#include <VBox/mm.h>
30#include <VBox/vm.h>
31
32#include <VBox/err.h>
33#include <VBox/param.h>
34#include <iprt/runtime.h>
35#include <iprt/stream.h>
36#include <iprt/string.h>
37
38
39int main()
40{
41 /*
42 * Init runtime.
43 */
44 RTR3Init();
45
46 /*
47 * Create empty VM structure and init SSM.
48 */
49 PVM pVM;
50 int rc = SUPInit(NULL);
51 if (VBOX_SUCCESS(rc))
52 rc = SUPPageAlloc((sizeof(*pVM) + PAGE_SIZE - 1) >> PAGE_SHIFT, (void **)&pVM);
53 if (VBOX_FAILURE(rc))
54 {
55 RTPrintf("Fatal error: SUP Failure! rc=%Vrc\n", rc);
56 return 1;
57 }
58
59 rc = STAMR3Init(pVM);
60 if (VBOX_FAILURE(rc))
61 {
62 RTPrintf("FAILURE: STAMR3Init failed. rc=%Vrc\n", rc);
63 return 1;
64 }
65
66 rc = CFGMR3Init(pVM, NULL, NULL);
67 if (VBOX_FAILURE(rc))
68 {
69 RTPrintf("FAILURE: CFGMR3Init failed. rc=%Vrc\n", rc);
70 return 1;
71 }
72
73 if (!CFGMR3GetRoot(pVM))
74 {
75 RTPrintf("FAILURE: CFGMR3GetRoot failed\n");
76 return 1;
77 }
78
79 /* integer */
80 uint64_t u64;
81 rc = CFGMR3QueryU64(CFGMR3GetRoot(pVM), "RamSize", &u64);
82 if (VBOX_FAILURE(rc))
83 {
84 RTPrintf("FAILURE: CFGMR3QueryU64(,\"RamSize\",) failed. rc=%Vrc\n", rc);
85 return 1;
86 }
87
88 size_t cb;
89 rc = CFGMR3QuerySize(CFGMR3GetRoot(pVM), "RamSize", &cb);
90 if (VBOX_FAILURE(rc))
91 {
92 RTPrintf("FAILURE: CFGMR3QuerySize(,\"RamSize\",) failed. rc=%Vrc\n", rc);
93 return 1;
94 }
95 if (cb != sizeof(uint64_t))
96 {
97 RTPrintf("FAILURE: Incorrect valuesize %d for \"RamSize\" value.\n", cb);
98 return 1;
99 }
100
101 /* string */
102 char *pszName = NULL;
103 rc = CFGMR3QueryStringAlloc(CFGMR3GetRoot(pVM), "Name", &pszName);
104 if (VBOX_FAILURE(rc))
105 {
106 RTPrintf("FAILURE: CFGMR3QueryStringAlloc(,\"Name\" failed. rc=%Vrc\n", rc);
107 return 1;
108 }
109
110 rc = CFGMR3QuerySize(CFGMR3GetRoot(pVM), "Name", &cb);
111 if (VBOX_FAILURE(rc))
112 {
113 RTPrintf("FAILURE: CFGMR3QuerySize(,\"RamSize\",) failed. rc=%Vrc\n", rc);
114 return 1;
115 }
116 if (cb != strlen(pszName) + 1)
117 {
118 RTPrintf("FAILURE: Incorrect valuesize %d for \"Name\" value '%s'.\n", cb, pszName);
119 return 1;
120 }
121 MMR3HeapFree(pszName);
122
123
124 /* test multilevel node creation */
125 PCFGMNODE pChild = NULL;
126 rc = CFGMR3InsertNode(CFGMR3GetRoot(pVM), "First/Second/Third//Final", &pChild);
127 if (VBOX_FAILURE(rc))
128 {
129 RTPrintf("FAILURE: CFGMR3InsertNode(,\"First/Second/Third//Final\" failed. rc=%Vrc\n", rc);
130 return 1;
131 }
132 rc = CFGMR3InsertInteger(pChild, "BoolValue", 1);
133 if (VBOX_FAILURE(rc))
134 {
135 RTPrintf("FAILURE: CFGMR3InsertInteger(,\"BoolValue\", 1) failed. rc=%Vrc\n", rc);
136 return 1;
137 }
138 PCFGMNODE pNode = CFGMR3GetChild(CFGMR3GetRoot(pVM), "First/Second/Third/Final");
139 if (pNode != pChild)
140 {
141 RTPrintf("FAILURE: CFGMR3GetChild(,\"First/Second/Third/Final/BoolValue\") failed. pNode=%p expected %p\n", pNode, pChild);
142 return 1;
143 }
144 bool f = false;
145 rc = CFGMR3QueryBool(pNode, "BoolValue", &f);
146 if (VBOX_FAILURE(rc) || !f)
147 {
148 RTPrintf("FAILURE: CFGMR3QueryBool(,\"BoolValue\",) failed. rc=%Vrc f=%d\n", rc, f);
149 return 1;
150 }
151
152
153 /* done */
154 rc = CFGMR3Term(pVM);
155 if (VBOX_FAILURE(rc))
156 {
157 RTPrintf("FAILURE: CFGMR3QueryU64(,\"RamSize\" failed. rc=%Vrc\n", rc);
158 return 1;
159 }
160
161 RTPrintf("tstCFGM: SUCCESS\n");
162 return rc;
163}
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