VirtualBox

source: vbox/trunk/src/VBox/Main/testcase/tstOVF.cpp@ 46860

Last change on this file since 46860 was 45068, checked in by vboxsync, 12 years ago

Main/Machine: rename two methods for better compatibility with programming languages - delete and export might be keywords.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 13.4 KB
Line 
1/* $Id: tstOVF.cpp 45068 2013-03-18 17:27:22Z vboxsync $ */
2/** @file
3 *
4 * tstOVF - testcases for OVF import and export
5 */
6
7/*
8 * Copyright (C) 2010-2013 Oracle Corporation
9 *
10 * This file is part of VirtualBox Open Source Edition (OSE), as
11 * available from http://www.virtualbox.org. This file is free software;
12 * you can redistribute it and/or modify it under the terms of the GNU
13 * General Public License (GPL) as published by the Free Software
14 * Foundation, in version 2 as it comes in the "COPYING" file of the
15 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
16 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
17 */
18
19#include <VBox/com/VirtualBox.h>
20
21#include <VBox/com/com.h>
22#include <VBox/com/array.h>
23#include <VBox/com/string.h>
24#include <VBox/com/ErrorInfo.h>
25#include <VBox/com/errorprint.h>
26#include <VBox/com/EventQueue.h>
27
28#include <iprt/initterm.h>
29#include <iprt/stream.h>
30#include <iprt/file.h>
31#include <iprt/path.h>
32#include <iprt/param.h>
33
34#include <list>
35
36using namespace com;
37
38// main
39///////////////////////////////////////////////////////////////////////////////
40
41/**
42 * Quick hack exception structure.
43 *
44 */
45struct MyError
46{
47 MyError(HRESULT rc,
48 const char *pcsz,
49 IProgress *pProgress = NULL)
50 : m_rc(rc)
51 {
52 m_str = "ERROR: ";
53 m_str += pcsz;
54
55 if (pProgress)
56 {
57 com::ProgressErrorInfo info(pProgress);
58 com::GluePrintErrorInfo(info);
59 }
60 else if (rc)
61 {
62 com::ErrorInfo info;
63 if (!info.isFullAvailable() && !info.isBasicAvailable())
64 com::GluePrintRCMessage(rc);
65 else
66 com::GluePrintErrorInfo(info);
67 }
68 }
69
70 Utf8Str m_str;
71 HRESULT m_rc;
72};
73
74/**
75 * Imports the given OVF file, with all bells and whistles.
76 * Throws MyError on errors.
77 * @param pcszPrefix Descriptive short prefix string for console output.
78 * @param pVirtualBox VirtualBox instance.
79 * @param pcszOVF0 File to import.
80 * @param llMachinesCreated out: UUIDs of machines that were created so that caller can clean up.
81 */
82void importOVF(const char *pcszPrefix,
83 ComPtr<IVirtualBox> &pVirtualBox,
84 const char *pcszOVF0,
85 std::list<Guid> &llMachinesCreated)
86{
87 char szAbsOVF[RTPATH_MAX];
88 RTPathAbs(pcszOVF0, szAbsOVF, sizeof(szAbsOVF));
89
90 RTPrintf("%s: reading appliance \"%s\"...\n", pcszPrefix, szAbsOVF);
91 ComPtr<IAppliance> pAppl;
92 HRESULT rc = pVirtualBox->CreateAppliance(pAppl.asOutParam());
93 if (FAILED(rc)) throw MyError(rc, "failed to create appliance\n");
94
95 ComPtr<IProgress> pProgress;
96 rc = pAppl->Read(Bstr(szAbsOVF).raw(), pProgress.asOutParam());
97 if (FAILED(rc)) throw MyError(rc, "Appliance::Read() failed\n");
98 rc = pProgress->WaitForCompletion(-1);
99 if (FAILED(rc)) throw MyError(rc, "Progress::WaitForCompletion() failed\n");
100 LONG rc2;
101 pProgress->COMGETTER(ResultCode)(&rc2);
102 if (FAILED(rc2)) throw MyError(rc2, "Appliance::Read() failed\n", pProgress);
103
104 RTPrintf("%s: interpreting appliance \"%s\"...\n", pcszPrefix, szAbsOVF);
105 rc = pAppl->Interpret();
106 if (FAILED(rc)) throw MyError(rc, "Appliance::Interpret() failed\n");
107
108 com::SafeIfaceArray<IVirtualSystemDescription> aDescriptions;
109 rc = pAppl->COMGETTER(VirtualSystemDescriptions)(ComSafeArrayAsOutParam(aDescriptions));
110 for (uint32_t u = 0;
111 u < aDescriptions.size();
112 ++u)
113 {
114 ComPtr<IVirtualSystemDescription> pVSys = aDescriptions[u];
115
116 com::SafeArray<VirtualSystemDescriptionType_T> aTypes;
117 com::SafeArray<BSTR> aRefs;
118 com::SafeArray<BSTR> aOvfValues;
119 com::SafeArray<BSTR> aVboxValues;
120 com::SafeArray<BSTR> aExtraConfigValues;
121 rc = pVSys->GetDescription(ComSafeArrayAsOutParam(aTypes),
122 ComSafeArrayAsOutParam(aRefs),
123 ComSafeArrayAsOutParam(aOvfValues),
124 ComSafeArrayAsOutParam(aVboxValues),
125 ComSafeArrayAsOutParam(aExtraConfigValues));
126 if (FAILED(rc)) throw MyError(rc, "VirtualSystemDescription::GetDescription() failed\n");
127
128 for (uint32_t u2 = 0;
129 u2 < aTypes.size();
130 ++u2)
131 {
132 const char *pcszType;
133
134 VirtualSystemDescriptionType_T t = aTypes[u2];
135 switch (t)
136 {
137 case VirtualSystemDescriptionType_OS:
138 pcszType = "ostype";
139 break;
140
141 case VirtualSystemDescriptionType_Name:
142 pcszType = "name";
143 break;
144
145 case VirtualSystemDescriptionType_Product:
146 pcszType = "product";
147 break;
148
149 case VirtualSystemDescriptionType_ProductUrl:
150 pcszType = "producturl";
151 break;
152
153 case VirtualSystemDescriptionType_Vendor:
154 pcszType = "vendor";
155 break;
156
157 case VirtualSystemDescriptionType_VendorUrl:
158 pcszType = "vendorurl";
159 break;
160
161 case VirtualSystemDescriptionType_Version:
162 pcszType = "version";
163 break;
164
165 case VirtualSystemDescriptionType_Description:
166 pcszType = "description";
167 break;
168
169 case VirtualSystemDescriptionType_License:
170 pcszType = "license";
171 break;
172
173 case VirtualSystemDescriptionType_CPU:
174 pcszType = "cpu";
175 break;
176
177 case VirtualSystemDescriptionType_Memory:
178 pcszType = "memory";
179 break;
180
181 case VirtualSystemDescriptionType_HardDiskControllerIDE:
182 pcszType = "ide";
183 break;
184
185 case VirtualSystemDescriptionType_HardDiskControllerSATA:
186 pcszType = "sata";
187 break;
188
189 case VirtualSystemDescriptionType_HardDiskControllerSAS:
190 pcszType = "sas";
191 break;
192
193 case VirtualSystemDescriptionType_HardDiskControllerSCSI:
194 pcszType = "scsi";
195 break;
196
197 case VirtualSystemDescriptionType_HardDiskImage:
198 pcszType = "hd";
199 break;
200
201 case VirtualSystemDescriptionType_CDROM:
202 pcszType = "cdrom";
203 break;
204
205 case VirtualSystemDescriptionType_Floppy:
206 pcszType = "floppy";
207 break;
208
209 case VirtualSystemDescriptionType_NetworkAdapter:
210 pcszType = "net";
211 break;
212
213 case VirtualSystemDescriptionType_USBController:
214 pcszType = "usb";
215 break;
216
217 case VirtualSystemDescriptionType_SoundCard:
218 pcszType = "sound";
219 break;
220
221 default:
222 throw MyError(E_UNEXPECTED, "Invalid VirtualSystemDescriptionType\n");
223 break;
224 }
225
226 RTPrintf(" vsys %2u item %2u: type %2d (%s), ovf: \"%ls\", vbox: \"%ls\", extra: \"%ls\"\n",
227 u, u2, t, pcszType,
228 aOvfValues[u2],
229 aVboxValues[u2],
230 aExtraConfigValues[u2]);
231 }
232 }
233
234 RTPrintf("%s: importing %d machine(s)...\n", pcszPrefix, aDescriptions.size());
235 SafeArray<ImportOptions_T> sfaOptions;
236 rc = pAppl->ImportMachines(ComSafeArrayAsInParam(sfaOptions), pProgress.asOutParam());
237 if (FAILED(rc)) throw MyError(rc, "Appliance::ImportMachines() failed\n");
238 rc = pProgress->WaitForCompletion(-1);
239 if (FAILED(rc)) throw MyError(rc, "Progress::WaitForCompletion() failed\n");
240 pProgress->COMGETTER(ResultCode)(&rc2);
241 if (FAILED(rc2)) throw MyError(rc2, "Appliance::ImportMachines() failed\n", pProgress);
242
243 com::SafeArray<BSTR> aMachineUUIDs;
244 rc = pAppl->COMGETTER(Machines)(ComSafeArrayAsOutParam(aMachineUUIDs));
245 if (FAILED(rc)) throw MyError(rc, "Appliance::GetMachines() failed\n");
246
247 for (size_t u = 0;
248 u < aMachineUUIDs.size();
249 ++u)
250 {
251 RTPrintf("%s: created machine %u: %ls\n", pcszPrefix, u, aMachineUUIDs[u]);
252 llMachinesCreated.push_back(Guid(Bstr(aMachineUUIDs[u])));
253 }
254
255 RTPrintf("%s: success!\n", pcszPrefix);
256}
257
258/**
259 * Copies ovf-testcases/ovf-dummy.vmdk to the given target and appends that
260 * target as a string to the given list so that the caller can delete it
261 * again later.
262 * @param llFiles2Delete List of strings to append the target file path to.
263 * @param pcszDest Target for dummy VMDK.
264 */
265void copyDummyDiskImage(const char *pcszPrefix,
266 std::list<Utf8Str> &llFiles2Delete,
267 const char *pcszDest)
268{
269 RTPrintf("%s: copying ovf-dummy.vmdk to \"%s\"...\n", pcszPrefix, pcszDest);
270
271 int vrc = RTFileCopy("ovf-testcases/ovf-dummy.vmdk", pcszDest);
272 if (RT_FAILURE(vrc)) throw MyError(0, Utf8StrFmt("Cannot copy ovf-dummy.vmdk to %s: %Rra\n", pcszDest, vrc).c_str());
273 llFiles2Delete.push_back(pcszDest);
274}
275
276/**
277 *
278 * @param argc
279 * @param argv[]
280 * @return
281 */
282int main(int argc, char *argv[])
283{
284 RTR3InitExe(argc, &argv, 0);
285
286 HRESULT rc = S_OK;
287
288 std::list<Utf8Str> llFiles2Delete;
289 std::list<Guid> llMachinesCreated;
290
291 ComPtr<IVirtualBox> pVirtualBox;
292
293 try
294 {
295 RTPrintf("Initializing COM...\n");
296 rc = com::Initialize();
297 if (FAILED(rc)) throw MyError(rc, "failed to initialize COM!\n");
298
299 ComPtr<ISession> pSession;
300
301 RTPrintf("Creating VirtualBox object...\n");
302 rc = pVirtualBox.createLocalObject(CLSID_VirtualBox);
303 if (FAILED(rc)) throw MyError(rc, "failed to create the VirtualBox object!\n");
304
305 rc = pSession.createInprocObject(CLSID_Session);
306 if (FAILED(rc)) throw MyError(rc, "failed to create a session object!\n");
307
308 // create the event queue
309 // (here it is necessary only to process remaining XPCOM/IPC events after the session is closed)
310 EventQueue eventQ;
311
312 // for each testcase, we will copy the dummy VMDK image to the subdirectory with the OVF testcase
313 // so that the import will find the disks it expects; this is just for testing the import since
314 // the imported machines will obviously not be usable.
315 // llFiles2Delete receives the paths of all the files that we need to clean up later.
316
317 // testcase 1: import ovf-joomla-0.9/joomla-1.1.4-ovf.ovf
318 copyDummyDiskImage("joomla-0.9", llFiles2Delete, "ovf-testcases/ovf-joomla-0.9/joomla-1.1.4-ovf-0.vmdk");
319 copyDummyDiskImage("joomla-0.9", llFiles2Delete, "ovf-testcases/ovf-joomla-0.9/joomla-1.1.4-ovf-1.vmdk");
320 importOVF("joomla-0.9", pVirtualBox, "ovf-testcases/ovf-joomla-0.9/joomla-1.1.4-ovf.ovf", llMachinesCreated);
321
322 // testcase 2: import ovf-winxp-vbox-sharedfolders/winxp.ovf
323 copyDummyDiskImage("winxp-vbox-sharedfolders", llFiles2Delete, "ovf-testcases/ovf-winxp-vbox-sharedfolders/Windows 5.1 XP 1 merged.vmdk");
324 copyDummyDiskImage("winxp-vbox-sharedfolders", llFiles2Delete, "ovf-testcases/ovf-winxp-vbox-sharedfolders/smallvdi.vmdk");
325 importOVF("winxp-vbox-sharedfolders", pVirtualBox, "ovf-testcases/ovf-winxp-vbox-sharedfolders/winxp.ovf", llMachinesCreated);
326
327 // testcase 3: import ovf-winxp-vbox-sharedfolders/winxp.ovf
328 importOVF("winhost-audio-nodisks", pVirtualBox, "ovf-testcases/ovf-winhost-audio-nodisks/WinXP.ovf", llMachinesCreated);
329
330 RTPrintf("Machine imports done, no errors. Cleaning up...\n");
331 }
332 catch (MyError &e)
333 {
334 rc = e.m_rc;
335 RTPrintf("%s", e.m_str.c_str());
336 }
337
338 try
339 {
340 // clean up the machines created
341 for (std::list<Guid>::const_iterator it = llMachinesCreated.begin();
342 it != llMachinesCreated.end();
343 ++it)
344 {
345 const Guid &uuid = *it;
346 Bstr bstrUUID(uuid.toUtf16());
347 ComPtr<IMachine> pMachine;
348 rc = pVirtualBox->FindMachine(bstrUUID.raw(), pMachine.asOutParam());
349 if (FAILED(rc)) throw MyError(rc, "VirtualBox::FindMachine() failed\n");
350
351 RTPrintf(" Deleting machine %ls...\n", bstrUUID.raw());
352 SafeIfaceArray<IMedium> sfaMedia;
353 rc = pMachine->Unregister(CleanupMode_DetachAllReturnHardDisksOnly,
354 ComSafeArrayAsOutParam(sfaMedia));
355 if (FAILED(rc)) throw MyError(rc, "Machine::Unregister() failed\n");
356
357 ComPtr<IProgress> pProgress;
358 rc = pMachine->DeleteConfig(ComSafeArrayAsInParam(sfaMedia), pProgress.asOutParam());
359 if (FAILED(rc)) throw MyError(rc, "Machine::DeleteSettings() failed\n");
360 rc = pProgress->WaitForCompletion(-1);
361 if (FAILED(rc)) throw MyError(rc, "Progress::WaitForCompletion() failed\n");
362 }
363 }
364 catch (MyError &e)
365 {
366 rc = e.m_rc;
367 RTPrintf("%s", e.m_str.c_str());
368 }
369
370 // clean up the VMDK copies that we made in copyDummyDiskImage()
371 for (std::list<Utf8Str>::const_iterator it = llFiles2Delete.begin();
372 it != llFiles2Delete.end();
373 ++it)
374 {
375 const Utf8Str &strFile = *it;
376 RTPrintf("Deleting file %s...\n", strFile.c_str());
377 RTFileDelete(strFile.c_str());
378 }
379
380 pVirtualBox.setNull();
381
382 RTPrintf("Shutting down COM...\n");
383 com::Shutdown();
384 RTPrintf ("tstOVF all done!\n");
385
386 return rc;
387}
388
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