VirtualBox

source: vbox/trunk/src/VBox/Storage/testcase/tstVDShareable.cpp@ 49539

Last change on this file since 49539 was 44529, checked in by vboxsync, 12 years ago

header (C) fixes

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 4.6 KB
Line 
1/* $Id: tstVDShareable.cpp 44529 2013-02-04 15:54:15Z vboxsync $ */
2/** @file
3 * Simple VBox HDD container test utility for shareable images.
4 */
5
6/*
7 * Copyright (C) 2010-2011 Oracle Corporation
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
18/*******************************************************************************
19* Header Files *
20*******************************************************************************/
21#include <VBox/vd.h>
22#include <VBox/err.h>
23#include <VBox/log.h>
24#include <iprt/asm-amd64-x86.h>
25#include <iprt/dir.h>
26#include <iprt/string.h>
27#include <iprt/stream.h>
28#include <iprt/file.h>
29#include <iprt/mem.h>
30#include <iprt/initterm.h>
31#include <iprt/rand.h>
32#include "stdio.h"
33#include "stdlib.h"
34
35#define VHD_TEST
36#define VDI_TEST
37#define VMDK_TEST
38
39/*******************************************************************************
40* Global Variables *
41*******************************************************************************/
42/** The error count. */
43unsigned g_cErrors = 0;
44
45
46static void tstVDError(void *pvUser, int rc, RT_SRC_POS_DECL,
47 const char *pszFormat, va_list va)
48{
49 g_cErrors++;
50 RTPrintf("tstVD: Error %Rrc at %s:%u (%s): ", rc, RT_SRC_POS_ARGS);
51 RTPrintfV(pszFormat, va);
52 RTPrintf("\n");
53}
54
55static int tstVDMessage(void *pvUser, const char *pszFormat, va_list va)
56{
57 RTPrintf("tstVD: ");
58 RTPrintfV(pszFormat, va);
59 return VINF_SUCCESS;
60}
61
62static int tstVDCreateShareDelete(const char *pszBackend, const char *pszFilename,
63 uint64_t cbSize, unsigned uFlags)
64{
65 int rc;
66 PVBOXHDD pVD = NULL, pVD2 = NULL;
67 VDGEOMETRY PCHS = { 0, 0, 0 };
68 VDGEOMETRY LCHS = { 0, 0, 0 };
69 PVDINTERFACE pVDIfs = NULL;
70 VDINTERFACEERROR VDIfError;
71
72#define CHECK(str) \
73 do \
74 { \
75 RTPrintf("%s rc=%Rrc\n", str, rc); \
76 if (RT_FAILURE(rc)) \
77 { \
78 VDDestroy(pVD); \
79 return rc; \
80 } \
81 } while (0)
82
83 /* Create error interface. */
84 VDIfError.pfnError = tstVDError;
85 VDIfError.pfnMessage = tstVDMessage;
86
87 rc = VDInterfaceAdd(&VDIfError.Core, "tstVD_Error", VDINTERFACETYPE_ERROR,
88 NULL, sizeof(VDINTERFACEERROR), &pVDIfs);
89 AssertRC(rc);
90
91 rc = VDCreate(pVDIfs, VDTYPE_HDD, &pVD);
92 CHECK("VDCreate()");
93 rc = VDCreate(pVDIfs, VDTYPE_HDD, &pVD2);
94 CHECK("VDCreate() #2");
95
96 rc = VDCreateBase(pVD, pszBackend, pszFilename, cbSize,
97 uFlags, "Test image", &PCHS, &LCHS, NULL,
98 VD_OPEN_FLAGS_NORMAL, NULL, NULL);
99 CHECK("VDCreateBase()");
100
101 VDClose(pVD, false);
102
103 rc = VDOpen(pVD, pszBackend, pszFilename, VD_OPEN_FLAGS_SHAREABLE, NULL);
104 CHECK("VDOpen()");
105 rc = VDOpen(pVD2, pszBackend, pszFilename, VD_OPEN_FLAGS_SHAREABLE, NULL);
106 CHECK("VDOpen() #2");
107 if (VDIsReadOnly(pVD2))
108 rc = VERR_VD_IMAGE_READ_ONLY;
109
110 VDClose(pVD2, false);
111 VDClose(pVD, true);
112
113 VDDestroy(pVD);
114 VDDestroy(pVD2);
115#undef CHECK
116 return 0;
117}
118
119int main(int argc, char *argv[])
120{
121 RTR3InitExe(argc, &argv, 0);
122 int rc;
123
124 RTPrintf("tstVD: TESTING...\n");
125
126 /*
127 * Clean up potential leftovers from previous unsuccessful runs.
128 */
129 RTFileDelete("tmpVDCreate.vdi");
130
131 if (!RTDirExists("tmp"))
132 {
133 rc = RTDirCreate("tmp", RTFS_UNIX_IRWXU, 0);
134 if (RT_FAILURE(rc))
135 {
136 RTPrintf("tstVD: Failed to create 'tmp' directory! rc=%Rrc\n", rc);
137 g_cErrors++;
138 }
139 }
140
141#ifdef VDI_TEST
142 rc = tstVDCreateShareDelete("VDI", "tmpVDCreate.vdi", 10 * _1M,
143 VD_IMAGE_FLAGS_FIXED);
144 if (RT_FAILURE(rc))
145 {
146 RTPrintf("tstVD: VDI shareable test failed! rc=%Rrc\n", rc);
147 g_cErrors++;
148 }
149#endif /* VDI_TEST */
150
151 /*
152 * Clean up any leftovers.
153 */
154 RTFileDelete("tmpVDCreate.vdi");
155
156 rc = VDShutdown();
157 if (RT_FAILURE(rc))
158 {
159 RTPrintf("tstVD: unloading backends failed! rc=%Rrc\n", rc);
160 g_cErrors++;
161 }
162 /*
163 * Summary
164 */
165 if (!g_cErrors)
166 RTPrintf("tstVD: SUCCESS\n");
167 else
168 RTPrintf("tstVD: FAILURE - %d errors\n", g_cErrors);
169
170 return !!g_cErrors;
171}
172
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