2009-09-23 16:25:52 +04:00
# include <config.h>
2010-12-22 00:39:55 +03:00
# ifdef WITH_VMX
2009-09-23 16:25:52 +04:00
2010-03-09 21:22:22 +03:00
# include <stdio.h>
# include <string.h>
# include <unistd.h>
2009-09-23 16:25:52 +04:00
2010-03-09 21:22:22 +03:00
# include "internal.h"
2012-12-12 22:06:53 +04:00
# include "viralloc.h"
2010-03-09 21:22:22 +03:00
# include "testutils.h"
2010-12-22 00:39:55 +03:00
# include "vmx / vmx.h"
2009-09-23 16:25:52 +04:00
2011-04-25 02:25:10 +04:00
static virCapsPtr caps ;
2010-12-22 00:39:55 +03:00
static virVMXContext ctx ;
2009-09-23 16:25:52 +04:00
2012-11-09 19:00:36 +04:00
static int testDefaultConsoleType ( const char * ostype ATTRIBUTE_UNUSED ,
2012-12-18 23:32:23 +04:00
virArch arch ATTRIBUTE_UNUSED )
Fix default console type setting
The default console type may vary based on the OS type. ie a Xen
paravirt guests wants a 'xen' console, while a fullvirt guests
wants a 'serial' console.
A plain integer default console type in the capabilities does
not suffice. Instead introduce a callback that is passed the
OS type.
* src/conf/capabilities.h: Use a callback for default console
type
* src/conf/domain_conf.c, src/conf/domain_conf.h: Use callback
for default console type. Add missing LXC/OpenVZ console types.
* src/esx/esx_driver.c, src/libxl/libxl_conf.c,
src/lxc/lxc_conf.c, src/openvz/openvz_conf.c,
src/phyp/phyp_driver.c, src/qemu/qemu_capabilities.c,
src/uml/uml_conf.c, src/vbox/vbox_tmpl.c,
src/vmware/vmware_conf.c, src/xen/xen_hypervisor.c,
src/xenapi/xenapi_driver.c: Set default console type callback
2011-10-20 17:56:20 +04:00
{
return VIR_DOMAIN_CHR_CONSOLE_TARGET_TYPE_SERIAL ;
}
2010-06-17 21:57:12 +04:00
static void
testCapsInit ( void )
{
virCapsGuestPtr guest = NULL ;
2012-12-18 23:32:23 +04:00
caps = virCapabilitiesNew ( VIR_ARCH_I686 , 1 , 1 ) ;
2010-06-17 21:57:12 +04:00
if ( caps = = NULL ) {
return ;
}
Fix default console type setting
The default console type may vary based on the OS type. ie a Xen
paravirt guests wants a 'xen' console, while a fullvirt guests
wants a 'serial' console.
A plain integer default console type in the capabilities does
not suffice. Instead introduce a callback that is passed the
OS type.
* src/conf/capabilities.h: Use a callback for default console
type
* src/conf/domain_conf.c, src/conf/domain_conf.h: Use callback
for default console type. Add missing LXC/OpenVZ console types.
* src/esx/esx_driver.c, src/libxl/libxl_conf.c,
src/lxc/lxc_conf.c, src/openvz/openvz_conf.c,
src/phyp/phyp_driver.c, src/qemu/qemu_capabilities.c,
src/uml/uml_conf.c, src/vbox/vbox_tmpl.c,
src/vmware/vmware_conf.c, src/xen/xen_hypervisor.c,
src/xenapi/xenapi_driver.c: Set default console type callback
2011-10-20 17:56:20 +04:00
caps - > defaultConsoleTargetType = testDefaultConsoleType ;
2010-06-17 21:57:12 +04:00
virCapabilitiesSetMacPrefix ( caps , ( unsigned char [ ] ) { 0x00 , 0x0c , 0x29 } ) ;
virCapabilitiesAddHostMigrateTransport ( caps , " esx " ) ;
caps - > hasWideScsiBus = true ;
/* i686 guest */
guest =
2012-12-18 23:32:23 +04:00
virCapabilitiesAddGuest ( caps , " hvm " ,
VIR_ARCH_I686 ,
NULL , NULL , 0 , NULL ) ;
2010-06-17 21:57:12 +04:00
if ( guest = = NULL ) {
goto failure ;
}
if ( virCapabilitiesAddGuestDomain ( guest , " vmware " , NULL , NULL , 0 ,
NULL ) = = NULL ) {
goto failure ;
}
/* x86_64 guest */
guest =
2012-12-18 23:32:23 +04:00
virCapabilitiesAddGuest ( caps , " hvm " ,
VIR_ARCH_X86_64 ,
NULL , NULL , 0 , NULL ) ;
2010-06-17 21:57:12 +04:00
if ( guest = = NULL ) {
goto failure ;
}
if ( virCapabilitiesAddGuestDomain ( guest , " vmware " , NULL , NULL , 0 ,
NULL ) = = NULL ) {
goto failure ;
}
return ;
failure :
virCapabilitiesFree ( caps ) ;
caps = NULL ;
}
2009-09-23 16:25:52 +04:00
static int
2010-12-22 00:39:55 +03:00
testCompareFiles ( const char * vmx , const char * xml )
2009-09-23 16:25:52 +04:00
{
int result = - 1 ;
2011-04-25 02:25:10 +04:00
char * vmxData = NULL ;
char * xmlData = NULL ;
2009-09-23 16:25:52 +04:00
char * formatted = NULL ;
virDomainDefPtr def = NULL ;
2010-03-24 03:52:33 +03:00
virErrorPtr err = NULL ;
2009-09-23 16:25:52 +04:00
2011-04-25 02:25:10 +04:00
if ( virtTestLoadFile ( vmx , & vmxData ) < 0 ) {
2009-09-23 16:25:52 +04:00
goto failure ;
}
2011-04-25 02:25:10 +04:00
if ( virtTestLoadFile ( xml , & xmlData ) < 0 ) {
2009-09-23 16:25:52 +04:00
goto failure ;
}
2010-12-22 00:39:55 +03:00
def = virVMXParseConfig ( & ctx , caps , vmxData ) ;
2009-09-23 16:25:52 +04:00
if ( def = = NULL ) {
2010-03-24 03:52:33 +03:00
err = virGetLastError ( ) ;
fprintf ( stderr , " ERROR: %s \n " , err ! = NULL ? err - > message : " <unknown> " ) ;
2009-09-23 16:25:52 +04:00
goto failure ;
}
2010-02-09 21:58:01 +03:00
formatted = virDomainDefFormat ( def , VIR_DOMAIN_XML_SECURE ) ;
2009-09-23 16:25:52 +04:00
if ( formatted = = NULL ) {
2010-03-24 03:52:33 +03:00
err = virGetLastError ( ) ;
fprintf ( stderr , " ERROR: %s \n " , err ! = NULL ? err - > message : " <unknown> " ) ;
2009-09-23 16:25:52 +04:00
goto failure ;
}
if ( STRNEQ ( xmlData , formatted ) ) {
virtTestDifference ( stderr , xmlData , formatted ) ;
goto failure ;
}
result = 0 ;
failure :
2011-04-25 02:25:10 +04:00
VIR_FREE ( vmxData ) ;
VIR_FREE ( xmlData ) ;
2009-09-23 16:25:52 +04:00
VIR_FREE ( formatted ) ;
virDomainDefFree ( def ) ;
return result ;
}
struct testInfo {
const char * input ;
const char * output ;
} ;
static int
testCompareHelper ( const void * data )
{
2011-04-25 02:25:10 +04:00
int result = - 1 ;
2009-09-23 16:25:52 +04:00
const struct testInfo * info = data ;
2011-04-25 02:25:10 +04:00
char * vmx = NULL ;
char * xml = NULL ;
if ( virAsprintf ( & vmx , " %s/vmx2xmldata/vmx2xml-%s.vmx " , abs_srcdir ,
info - > input ) < 0 | |
virAsprintf ( & xml , " %s/vmx2xmldata/vmx2xml-%s.xml " , abs_srcdir ,
info - > output ) < 0 ) {
goto cleanup ;
}
2009-09-23 16:25:52 +04:00
2011-04-25 02:25:10 +04:00
result = testCompareFiles ( vmx , xml ) ;
2009-09-23 16:25:52 +04:00
2011-04-25 02:25:10 +04:00
cleanup :
VIR_FREE ( vmx ) ;
VIR_FREE ( xml ) ;
return result ;
2009-09-23 16:25:52 +04:00
}
2010-08-05 19:43:19 +04:00
static char *
testParseVMXFileName ( const char * fileName , void * opaque ATTRIBUTE_UNUSED )
{
char * copyOfFileName = NULL ;
char * tmp = NULL ;
char * saveptr = NULL ;
char * datastoreName = NULL ;
char * directoryAndFileName = NULL ;
char * src = NULL ;
if ( STRPREFIX ( fileName , " /vmfs/volumes/ " ) ) {
/* Found absolute path referencing a file inside a datastore */
copyOfFileName = strdup ( fileName ) ;
if ( copyOfFileName = = NULL ) {
goto cleanup ;
}
/* Expected format: '/vmfs/volumes/<datastore>/<path>' */
if ( ( tmp = STRSKIP ( copyOfFileName , " /vmfs/volumes/ " ) ) = = NULL | |
( datastoreName = strtok_r ( tmp , " / " , & saveptr ) ) = = NULL | |
( directoryAndFileName = strtok_r ( NULL , " " , & saveptr ) ) = = NULL ) {
goto cleanup ;
}
2013-01-03 23:16:19 +04:00
if ( virAsprintf ( & src , " [%s] %s " , datastoreName ,
directoryAndFileName ) < 0 )
goto cleanup ;
2010-08-05 19:43:19 +04:00
} else if ( STRPREFIX ( fileName , " / " ) ) {
/* Found absolute path referencing a file outside a datastore */
src = strdup ( fileName ) ;
} else if ( strchr ( fileName , ' / ' ) ! = NULL ) {
/* Found relative path, this is not supported */
src = NULL ;
} else {
/* Found single file name referencing a file inside a datastore */
2013-01-03 23:16:19 +04:00
if ( virAsprintf ( & src , " [datastore] directory/%s " , fileName ) < 0 )
goto cleanup ;
2010-08-05 19:43:19 +04:00
}
cleanup :
VIR_FREE ( copyOfFileName ) ;
return src ;
}
2009-09-23 16:25:52 +04:00
static int
2011-04-29 20:21:20 +04:00
mymain ( void )
2009-09-23 16:25:52 +04:00
{
int result = 0 ;
2010-12-22 00:39:55 +03:00
# define DO_TEST(_in, _out) \
2009-09-23 16:25:52 +04:00
do { \
2010-12-22 00:39:55 +03:00
struct testInfo info = { _in , _out } ; \
2009-09-23 16:25:52 +04:00
virResetLastError ( ) ; \
if ( virtTestRun ( " VMware VMX-2-XML " _in " -> " _out , 1 , \
testCompareHelper , & info ) < 0 ) { \
result = - 1 ; \
} \
} while ( 0 )
2010-06-17 21:57:12 +04:00
testCapsInit ( ) ;
if ( caps = = NULL ) {
return EXIT_FAILURE ;
}
2010-08-05 19:43:19 +04:00
ctx . opaque = NULL ;
ctx . parseFileName = testParseVMXFileName ;
ctx . formatFileName = NULL ;
ctx . autodetectSCSIControllerModel = NULL ;
2010-12-22 00:39:55 +03:00
DO_TEST ( " case-insensitive-1 " , " case-insensitive-1 " ) ;
DO_TEST ( " case-insensitive-2 " , " case-insensitive-2 " ) ;
2010-03-24 03:52:33 +03:00
2010-12-22 00:39:55 +03:00
DO_TEST ( " minimal " , " minimal " ) ;
DO_TEST ( " minimal-64bit " , " minimal-64bit " ) ;
2009-09-23 16:25:52 +04:00
2010-12-22 00:39:55 +03:00
DO_TEST ( " graphics-vnc " , " graphics-vnc " ) ;
2010-01-16 15:52:34 +03:00
2010-12-22 00:39:55 +03:00
DO_TEST ( " scsi-driver " , " scsi-driver " ) ;
DO_TEST ( " scsi-writethrough " , " scsi-writethrough " ) ;
2009-09-23 16:25:52 +04:00
2010-12-22 00:39:55 +03:00
DO_TEST ( " harddisk-scsi-file " , " harddisk-scsi-file " ) ;
DO_TEST ( " harddisk-ide-file " , " harddisk-ide-file " ) ;
2009-09-23 16:25:52 +04:00
2010-12-22 00:39:55 +03:00
DO_TEST ( " cdrom-scsi-file " , " cdrom-scsi-file " ) ;
DO_TEST ( " cdrom-scsi-device " , " cdrom-scsi-device " ) ;
DO_TEST ( " cdrom-ide-file " , " cdrom-ide-file " ) ;
DO_TEST ( " cdrom-ide-device " , " cdrom-ide-device " ) ;
2009-09-23 16:25:52 +04:00
2010-12-22 00:39:55 +03:00
DO_TEST ( " floppy-file " , " floppy-file " ) ;
DO_TEST ( " floppy-device " , " floppy-device " ) ;
2009-09-23 16:25:52 +04:00
2012-07-11 14:16:35 +04:00
DO_TEST ( " sharedfolder " , " sharedfolder " ) ;
2010-12-22 00:39:55 +03:00
DO_TEST ( " ethernet-e1000 " , " ethernet-e1000 " ) ;
DO_TEST ( " ethernet-vmxnet2 " , " ethernet-vmxnet2 " ) ;
2009-09-23 16:25:52 +04:00
2010-12-22 00:39:55 +03:00
DO_TEST ( " ethernet-custom " , " ethernet-custom " ) ;
DO_TEST ( " ethernet-bridged " , " ethernet-bridged " ) ;
2012-02-23 13:34:45 +04:00
DO_TEST ( " ethernet-nat " , " ethernet-nat " ) ;
2009-09-23 16:25:52 +04:00
2010-12-22 00:39:55 +03:00
DO_TEST ( " ethernet-generated " , " ethernet-generated " ) ;
DO_TEST ( " ethernet-static " , " ethernet-static " ) ;
DO_TEST ( " ethernet-vpx " , " ethernet-vpx " ) ;
DO_TEST ( " ethernet-other " , " ethernet-other " ) ;
2010-01-03 01:58:24 +03:00
2010-12-22 00:39:55 +03:00
DO_TEST ( " serial-file " , " serial-file " ) ;
DO_TEST ( " serial-device " , " serial-device " ) ;
DO_TEST ( " serial-pipe-client-app " , " serial-pipe " ) ;
DO_TEST ( " serial-pipe-server-vm " , " serial-pipe " ) ;
DO_TEST ( " serial-pipe-client-app " , " serial-pipe " ) ;
DO_TEST ( " serial-pipe-server-vm " , " serial-pipe " ) ;
DO_TEST ( " serial-network-server " , " serial-network-server " ) ;
DO_TEST ( " serial-network-client " , " serial-network-client " ) ;
2009-09-23 16:25:52 +04:00
2010-12-22 00:39:55 +03:00
DO_TEST ( " parallel-file " , " parallel-file " ) ;
DO_TEST ( " parallel-device " , " parallel-device " ) ;
2009-09-23 16:25:52 +04:00
2010-12-22 00:39:55 +03:00
DO_TEST ( " esx-in-the-wild-1 " , " esx-in-the-wild-1 " ) ;
DO_TEST ( " esx-in-the-wild-2 " , " esx-in-the-wild-2 " ) ;
DO_TEST ( " esx-in-the-wild-3 " , " esx-in-the-wild-3 " ) ;
DO_TEST ( " esx-in-the-wild-4 " , " esx-in-the-wild-4 " ) ;
DO_TEST ( " esx-in-the-wild-5 " , " esx-in-the-wild-5 " ) ;
2011-05-26 19:40:51 +04:00
DO_TEST ( " esx-in-the-wild-6 " , " esx-in-the-wild-6 " ) ;
2009-09-23 16:25:52 +04:00
2010-12-22 00:39:55 +03:00
DO_TEST ( " gsx-in-the-wild-1 " , " gsx-in-the-wild-1 " ) ;
DO_TEST ( " gsx-in-the-wild-2 " , " gsx-in-the-wild-2 " ) ;
DO_TEST ( " gsx-in-the-wild-3 " , " gsx-in-the-wild-3 " ) ;
DO_TEST ( " gsx-in-the-wild-4 " , " gsx-in-the-wild-4 " ) ;
2009-09-23 16:25:52 +04:00
2012-02-23 13:34:45 +04:00
DO_TEST ( " ws-in-the-wild-1 " , " ws-in-the-wild-1 " ) ;
DO_TEST ( " ws-in-the-wild-2 " , " ws-in-the-wild-2 " ) ;
2010-12-22 00:39:55 +03:00
DO_TEST ( " annotation " , " annotation " ) ;
2010-08-27 19:23:49 +04:00
2010-12-22 00:39:55 +03:00
DO_TEST ( " smbios " , " smbios " ) ;
2010-11-10 22:05:51 +03:00
2010-12-30 20:08:54 +03:00
DO_TEST ( " svga " , " svga " ) ;
2010-06-17 21:57:12 +04:00
virCapabilitiesFree ( caps ) ;
2009-09-23 16:25:52 +04:00
return result = = 0 ? EXIT_SUCCESS : EXIT_FAILURE ;
}
VIRT_TEST_MAIN ( mymain )
# else
2011-12-02 00:47:34 +04:00
# include "testutils.h"
2009-09-23 16:25:52 +04:00
2011-07-09 03:24:44 +04:00
int main ( void )
2009-09-23 16:25:52 +04:00
{
2011-07-09 03:24:44 +04:00
return EXIT_AM_SKIP ;
2009-09-23 16:25:52 +04:00
}
2010-12-22 00:39:55 +03:00
# endif /* WITH_VMX */