2007-01-19 23:30:05 +03:00
/*
* xmconfigtest . c : Test backend for xm_internal config file handling
*
2011-04-29 20:21:20 +04:00
* Copyright ( C ) 2007 , 2010 - 2011 Red Hat , Inc .
2007-01-19 23:30:05 +03:00
*
* This library is free software ; you can redistribute it and / or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation ; either
* version 2.1 of the License , or ( at your option ) any later version .
*
* This library is distributed in the hope that it will be useful ,
* but WITHOUT ANY WARRANTY ; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the GNU
* Lesser General Public License for more details .
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library ; if not , write to the Free Software
* Foundation , Inc . , 59 Temple Place , Suite 330 , Boston , MA 02111 - 1307 USA
*
* Author : Daniel P . Berrange < berrange @ redhat . com >
*
*/
2008-01-29 21:15:54 +03:00
# include <config.h>
2007-11-26 15:03:34 +03:00
2007-01-19 23:30:05 +03:00
# include <stdio.h>
# include <string.h>
2008-04-18 19:28:33 +04:00
# include <unistd.h>
2007-01-19 23:30:05 +03:00
Wed Dec 5 13:48:00 UTC 2007 Richard W.M. Jones <rjones@redhat.com>
* python/libvir.c, python/libvirt_wrap.h, qemud/qemud.c,
qemud/remote.c, src/internal.h, src/openvz_conf.c,
src/openvz_driver.c, src/proxy_internal.h, src/qemu_conf.c,
src/qemu_driver.c, src/remote_internal.h, src/test.h, src/util.c,
src/xen_unified.c, src/xen_unified.h, tests/nodeinfotest.c,
tests/qemuxml2argvtest.c, tests/qemuxml2xmltest.c, tests/reconnect.c,
tests/sexpr2xmltest.c, tests/virshtest.c, tests/xencapstest.c,
tests/xmconfigtest.c, tests/xml2sexprtest.c:
Change #include <> to #include "" for local includes.
Removed many includes from src/internal.h and put them in
the C files which actually use them.
Removed <ansidecl.h> - unused.
Added a comment around __func__.
Removed a clashing redefinition of VERSION symbol.
All limits (PATH_MAX etc) now done in src/internal.h, so we
don't need to include those headers in other files.
2007-12-05 16:56:22 +03:00
# include "internal.h"
2008-11-05 02:22:06 +03:00
# include "datatypes.h"
Move xen driver code into src/xen/ directory
* src/Makefile.am, src/proxy_internal.c, src/proxy_internal.h
src/sexpr.c, src/sexpr.h, src/xen_unified.c, src/xen_unified.h,
src/xen_internal.c, src/xen_internal.h, src/xen_inotify.c,
src/xen_inotify.h, src/xend_internal.c, src/xend_internal.h,
src/xm_internal.c, src/xm_internal.h, src/xs_internal.c,
src/xs_internal.h: Move to src/xen/ directory
* proxy/Makefile.am, proxy/libvirt_proxy.c, src/Makefile.am,
src/libvirt.c, tests/sexpr2xmltest.c, tests/statstest.c,
tests/xencapstest.c, tests/xmconfigtest.c, tests/xml2sexprtest.c:
Adapt to changed xen location
* src/stats_linux.h, src/stats_linux.c: Remove xen specific block
stats APIs
* src/qemu_driver.c, src/uml_driver.c: Add missing sys/un.h include
uncovered after change to stats_linux.h
* src/xen/block_stats.h, src/xen/block_stats.c: Add xen specific
block stats APIs
2009-09-15 19:38:33 +04:00
# include "xen/xen_driver.h"
# include "xen/xm_internal.h"
2011-02-21 16:40:10 +03:00
# include "xenxs/xen_xm.h"
2007-01-19 23:30:05 +03:00
# include "testutils.h"
2008-07-25 17:39:02 +04:00
# include "testutilsxen.h"
# include "memory.h"
2007-01-19 23:30:05 +03:00
2008-07-25 17:39:02 +04:00
static virCapsPtr caps ;
2007-01-19 23:30:05 +03:00
# define MAX_FILE 4096
2008-04-18 19:28:33 +04:00
static int testCompareParseXML ( const char * xmcfg , const char * xml ,
2007-11-14 13:35:58 +03:00
int xendConfigVersion ) {
2007-01-19 23:30:05 +03:00
char xmlData [ MAX_FILE ] ;
char xmcfgData [ MAX_FILE ] ;
char gotxmcfgData [ MAX_FILE ] ;
char * xmlPtr = & ( xmlData [ 0 ] ) ;
char * xmcfgPtr = & ( xmcfgData [ 0 ] ) ;
char * gotxmcfgPtr = & ( gotxmcfgData [ 0 ] ) ;
virConfPtr conf = NULL ;
int ret = - 1 ;
virConnectPtr conn ;
int wrote = MAX_FILE ;
2007-04-04 18:19:49 +04:00
struct _xenUnifiedPrivate priv ;
2008-07-25 17:39:02 +04:00
virDomainDefPtr def = NULL ;
2007-01-19 23:30:05 +03:00
2008-11-21 15:16:08 +03:00
conn = virGetConnect ( ) ;
2007-04-04 18:19:49 +04:00
if ( ! conn ) goto fail ;
2007-01-19 23:30:05 +03:00
if ( virtTestLoadFile ( xml , & xmlPtr , MAX_FILE ) < 0 )
goto fail ;
if ( virtTestLoadFile ( xmcfg , & xmcfgPtr , MAX_FILE ) < 0 )
goto fail ;
2007-04-04 18:19:49 +04:00
/* Many puppies died to bring you this code. */
priv . xendConfigVersion = xendConfigVersion ;
2008-07-25 17:39:02 +04:00
priv . caps = caps ;
2007-04-04 18:19:49 +04:00
conn - > privateData = & priv ;
2007-01-19 23:30:05 +03:00
2010-02-09 21:58:01 +03:00
if ( ! ( def = virDomainDefParseString ( caps , xmlPtr ,
2009-01-08 22:52:15 +03:00
VIR_DOMAIN_XML_INACTIVE ) ) )
2008-07-25 17:39:02 +04:00
goto fail ;
2011-02-21 16:40:12 +03:00
if ( ! ( conf = xenFormatXM ( conn , def , xendConfigVersion ) ) )
2007-01-19 23:30:05 +03:00
goto fail ;
if ( virConfWriteMem ( gotxmcfgPtr , & wrote , conf ) < 0 )
goto fail ;
gotxmcfgPtr [ wrote ] = ' \0 ' ;
2008-04-18 19:28:33 +04:00
if ( STRNEQ ( xmcfgData , gotxmcfgData ) ) {
virtTestDifference ( stderr , xmcfgData , gotxmcfgData ) ;
2007-01-19 23:30:05 +03:00
goto fail ;
2007-07-17 01:30:30 +04:00
}
2007-01-19 23:30:05 +03:00
ret = 0 ;
fail :
if ( conf )
virConfFree ( conf ) ;
2008-07-25 17:39:02 +04:00
virDomainDefFree ( def ) ;
2008-11-21 15:16:08 +03:00
virUnrefConnect ( conn ) ;
2007-04-04 18:19:49 +04:00
2007-01-19 23:30:05 +03:00
return ret ;
}
2008-04-18 19:28:33 +04:00
static int testCompareFormatXML ( const char * xmcfg , const char * xml ,
2007-11-14 13:35:58 +03:00
int xendConfigVersion ) {
2007-01-19 23:30:05 +03:00
char xmlData [ MAX_FILE ] ;
char xmcfgData [ MAX_FILE ] ;
char * xmlPtr = & ( xmlData [ 0 ] ) ;
char * xmcfgPtr = & ( xmcfgData [ 0 ] ) ;
char * gotxml = NULL ;
virConfPtr conf = NULL ;
int ret = - 1 ;
virConnectPtr conn ;
2007-04-04 18:19:49 +04:00
struct _xenUnifiedPrivate priv ;
2008-07-25 17:39:02 +04:00
virDomainDefPtr def = NULL ;
2007-01-19 23:30:05 +03:00
2008-11-21 15:16:08 +03:00
conn = virGetConnect ( ) ;
2007-04-04 18:19:49 +04:00
if ( ! conn ) goto fail ;
2007-01-19 23:30:05 +03:00
if ( virtTestLoadFile ( xml , & xmlPtr , MAX_FILE ) < 0 )
goto fail ;
if ( virtTestLoadFile ( xmcfg , & xmcfgPtr , MAX_FILE ) < 0 )
goto fail ;
2007-04-04 18:19:49 +04:00
/* Many puppies died to bring you this code. */
priv . xendConfigVersion = xendConfigVersion ;
2008-07-25 17:39:02 +04:00
priv . caps = caps ;
2007-04-04 18:19:49 +04:00
conn - > privateData = & priv ;
2007-01-19 23:30:05 +03:00
2009-06-19 16:34:30 +04:00
if ( ! ( conf = virConfReadMem ( xmcfgPtr , strlen ( xmcfgPtr ) , 0 ) ) )
2007-01-19 23:30:05 +03:00
goto fail ;
2011-02-21 16:40:12 +03:00
if ( ! ( def = xenParseXM ( conf , priv . xendConfigVersion , priv . caps ) ) )
2008-07-25 17:39:02 +04:00
goto fail ;
2010-02-09 21:58:01 +03:00
if ( ! ( gotxml = virDomainDefFormat ( def , VIR_DOMAIN_XML_SECURE ) ) )
2007-01-19 23:30:05 +03:00
goto fail ;
2008-04-26 18:22:02 +04:00
if ( STRNEQ ( xmlData , gotxml ) ) {
virtTestDifference ( stderr , xmlData , gotxml ) ;
2007-01-19 23:30:05 +03:00
goto fail ;
2007-07-17 01:30:30 +04:00
}
2007-01-19 23:30:05 +03:00
ret = 0 ;
fail :
if ( conf )
virConfFree ( conf ) ;
2008-07-25 17:39:02 +04:00
VIR_FREE ( gotxml ) ;
virDomainDefFree ( def ) ;
2008-11-21 15:16:08 +03:00
virUnrefConnect ( conn ) ;
2007-04-04 18:19:49 +04:00
2007-01-19 23:30:05 +03:00
return ret ;
}
2007-07-17 01:30:30 +04:00
2008-04-18 19:28:33 +04:00
struct testInfo {
const char * name ;
int version ;
int mode ;
} ;
2007-07-19 01:08:22 +04:00
2008-04-18 19:28:33 +04:00
static int testCompareHelper ( const void * data ) {
const struct testInfo * info = data ;
char xml [ PATH_MAX ] ;
char cfg [ PATH_MAX ] ;
snprintf ( xml , PATH_MAX , " %s/xmconfigdata/test-%s.xml " ,
abs_srcdir , info - > name ) ;
snprintf ( cfg , PATH_MAX , " %s/xmconfigdata/test-%s.cfg " ,
abs_srcdir , info - > name ) ;
if ( info - > mode = = 0 )
return testCompareParseXML ( cfg , xml , info - > version ) ;
else
return testCompareFormatXML ( cfg , xml , info - > version ) ;
2007-07-19 01:08:22 +04:00
}
2007-01-19 23:30:05 +03:00
2008-05-29 19:31:49 +04:00
static int
2011-04-29 20:21:20 +04:00
mymain ( void )
2007-01-19 23:30:05 +03:00
{
int ret = 0 ;
2008-04-18 19:28:33 +04:00
2008-07-25 17:39:02 +04:00
if ( ! ( caps = testXenCapsInit ( ) ) )
return ( EXIT_FAILURE ) ;
2008-04-18 19:28:33 +04:00
# define DO_TEST(name, version) \
do { \
struct testInfo info0 = { name , version , 0 } ; \
struct testInfo info1 = { name , version , 1 } ; \
if ( virtTestRun ( " Xen XM-2-XML Parse " name , \
1 , testCompareHelper , & info0 ) < 0 ) \
ret = - 1 ; \
if ( virtTestRun ( " Xen XM-2-XML Format " name , \
1 , testCompareHelper , & info1 ) < 0 ) \
ret = - 1 ; \
} while ( 0 )
2010-08-23 17:43:51 +04:00
DO_TEST ( " paravirt-old-pvfb " , 1 ) ;
DO_TEST ( " paravirt-old-pvfb-vncdisplay " , 1 ) ;
2008-04-18 19:28:33 +04:00
DO_TEST ( " paravirt-new-pvfb " , 3 ) ;
2008-09-09 17:53:58 +04:00
DO_TEST ( " paravirt-new-pvfb-vncdisplay " , 3 ) ;
2008-04-30 16:30:55 +04:00
DO_TEST ( " paravirt-net-e1000 " , 3 ) ;
2009-04-01 14:16:05 +04:00
DO_TEST ( " paravirt-net-vifname " , 3 ) ;
2010-10-05 18:18:52 +04:00
DO_TEST ( " paravirt-vcpu " , 2 ) ;
2008-04-18 19:28:33 +04:00
DO_TEST ( " fullvirt-old-cdrom " , 1 ) ;
DO_TEST ( " fullvirt-new-cdrom " , 2 ) ;
DO_TEST ( " fullvirt-utc " , 2 ) ;
DO_TEST ( " fullvirt-localtime " , 2 ) ;
DO_TEST ( " fullvirt-usbtablet " , 2 ) ;
DO_TEST ( " fullvirt-usbmouse " , 2 ) ;
2008-04-26 18:22:02 +04:00
DO_TEST ( " fullvirt-serial-file " , 2 ) ;
2011-02-25 17:41:12 +03:00
DO_TEST ( " fullvirt-serial-dev-2-ports " , 2 ) ;
DO_TEST ( " fullvirt-serial-dev-2nd-port " , 2 ) ;
2008-04-26 18:22:02 +04:00
DO_TEST ( " fullvirt-serial-null " , 2 ) ;
DO_TEST ( " fullvirt-serial-pipe " , 2 ) ;
DO_TEST ( " fullvirt-serial-pty " , 2 ) ;
DO_TEST ( " fullvirt-serial-stdio " , 2 ) ;
DO_TEST ( " fullvirt-serial-tcp " , 2 ) ;
DO_TEST ( " fullvirt-serial-tcp-telnet " , 2 ) ;
DO_TEST ( " fullvirt-serial-udp " , 2 ) ;
DO_TEST ( " fullvirt-serial-unix " , 2 ) ;
DO_TEST ( " fullvirt-parallel-tcp " , 2 ) ;
2007-01-19 23:30:05 +03:00
2008-05-07 18:04:40 +04:00
DO_TEST ( " fullvirt-sound " , 2 ) ;
2009-12-04 19:01:34 +03:00
DO_TEST ( " fullvirt-net-ioemu " , 2 ) ;
DO_TEST ( " fullvirt-net-netfront " , 2 ) ;
2008-06-25 12:59:37 +04:00
DO_TEST ( " escape-paths " , 2 ) ;
2008-11-28 14:23:34 +03:00
DO_TEST ( " no-source-cdrom " , 2 ) ;
2009-04-03 16:38:52 +04:00
DO_TEST ( " pci-devs " , 2 ) ;
2008-07-25 17:39:02 +04:00
virCapabilitiesFree ( caps ) ;
2008-05-29 19:31:49 +04:00
return ( ret = = 0 ? EXIT_SUCCESS : EXIT_FAILURE ) ;
2007-01-19 23:30:05 +03:00
}
2008-05-29 19:31:49 +04:00
VIRT_TEST_MAIN ( mymain )