2012-08-20 16:31:29 +04:00
/*
2013-02-23 02:28:53 +04:00
* Copyright ( C ) 2011 - 2013 Red Hat , Inc .
2012-08-20 16:31:29 +04: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
2012-09-21 02:30:55 +04:00
* License along with this library . If not , see
2012-08-20 16:31:29 +04:00
* < http : //www.gnu.org/licenses/>.
*
*/
# include <config.h>
# include "testutils.h"
# include "testutilsqemu.h"
# include "qemumonitortestutils.h"
2013-03-05 19:17:24 +04:00
# include "qemu/qemu_conf.h"
2013-06-24 21:51:56 +04:00
# include "qemu/qemu_monitor_json.h"
2012-12-13 19:49:48 +04:00
# include "virthread.h"
2012-12-13 22:21:53 +04:00
# include "virerror.h"
2013-04-26 15:13:05 +04:00
# include "virstring.h"
2012-08-20 16:31:29 +04:00
# define VIR_FROM_THIS VIR_FROM_NONE
2013-09-18 19:28:31 +04:00
typedef struct _testQemuMonitorJSONSimpleFuncData testQemuMonitorJSONSimpleFuncData ;
typedef testQemuMonitorJSONSimpleFuncData * testQemuMonitorJSONSimpleFuncDataPtr ;
struct _testQemuMonitorJSONSimpleFuncData {
const char * cmd ;
int ( * func ) ( qemuMonitorPtr mon ) ;
virDomainXMLOptionPtr xmlopt ;
const char * reply ;
} ;
2012-08-20 16:31:29 +04:00
static int
testQemuMonitorJSONGetStatus ( const void * data )
{
2013-03-31 22:03:42 +04:00
virDomainXMLOptionPtr xmlopt = ( virDomainXMLOptionPtr ) data ;
2013-07-25 21:17:44 +04:00
qemuMonitorTestPtr test = qemuMonitorTestNewSimple ( true , xmlopt ) ;
2012-08-20 16:31:29 +04:00
int ret = - 1 ;
bool running = false ;
virDomainPausedReason reason = 0 ;
if ( ! test )
return - 1 ;
if ( qemuMonitorTestAddItem ( test , " query-status " ,
" { "
" \" return \" : { "
" \" status \" : \" running \" , "
" \" singlestep \" : false, "
" \" running \" : true "
" } "
" } " ) < 0 )
goto cleanup ;
if ( qemuMonitorTestAddItem ( test , " query-status " ,
" { "
" \" return \" : { "
" \" singlestep \" : false, "
" \" running \" : false "
" } "
" } " ) < 0 )
goto cleanup ;
if ( qemuMonitorTestAddItem ( test , " query-status " ,
" { "
" \" return \" : { "
" \" status \" : \" inmigrate \" , "
" \" singlestep \" : false, "
" \" running \" : false "
" } "
" } " ) < 0 )
goto cleanup ;
if ( qemuMonitorGetStatus ( qemuMonitorTestGetMonitor ( test ) ,
& running , & reason ) < 0 )
goto cleanup ;
if ( ! running ) {
virReportError ( VIR_ERR_INTERNAL_ERROR , " %s " ,
" Running was not true " ) ;
goto cleanup ;
}
if ( reason ! = VIR_DOMAIN_PAUSED_UNKNOWN ) {
virReportError ( VIR_ERR_INTERNAL_ERROR ,
" Reason was unexpectedly set to %d " , reason ) ;
goto cleanup ;
}
if ( qemuMonitorGetStatus ( qemuMonitorTestGetMonitor ( test ) ,
& running , & reason ) < 0 )
goto cleanup ;
if ( running ) {
virReportError ( VIR_ERR_INTERNAL_ERROR , " %s " ,
" Running was not false " ) ;
goto cleanup ;
}
if ( reason ! = VIR_DOMAIN_PAUSED_UNKNOWN ) {
virReportError ( VIR_ERR_INTERNAL_ERROR ,
" Reason was unexpectedly set to %d " , reason ) ;
goto cleanup ;
}
if ( qemuMonitorGetStatus ( qemuMonitorTestGetMonitor ( test ) ,
& running , & reason ) < 0 )
goto cleanup ;
if ( running ) {
virReportError ( VIR_ERR_INTERNAL_ERROR , " %s " ,
" Running was not false " ) ;
goto cleanup ;
}
if ( reason ! = VIR_DOMAIN_PAUSED_MIGRATION ) {
virReportError ( VIR_ERR_INTERNAL_ERROR ,
" Reason was unexpectedly set to %d " , reason ) ;
goto cleanup ;
}
ret = 0 ;
cleanup :
qemuMonitorTestFree ( test ) ;
return ret ;
}
2012-08-15 18:04:09 +04:00
static int
testQemuMonitorJSONGetVersion ( const void * data )
{
2013-03-31 22:03:42 +04:00
virDomainXMLOptionPtr xmlopt = ( virDomainXMLOptionPtr ) data ;
2013-07-25 21:17:44 +04:00
qemuMonitorTestPtr test = qemuMonitorTestNewSimple ( true , xmlopt ) ;
2012-08-15 18:04:09 +04:00
int ret = - 1 ;
int major ;
int minor ;
int micro ;
2013-02-04 20:17:52 +04:00
char * package = NULL ;
2012-08-15 18:04:09 +04:00
if ( ! test )
return - 1 ;
if ( qemuMonitorTestAddItem ( test , " query-version " ,
" { "
" \" return \" :{ "
" \" qemu \" :{ "
" \" major \" :1, "
" \" minor \" :2, "
" \" micro \" :3 "
" }, "
" \" package \" : \" \" "
" } "
" } " ) < 0 )
goto cleanup ;
if ( qemuMonitorTestAddItem ( test , " query-version " ,
" { "
" \" return \" :{ "
" \" qemu \" :{ "
" \" major \" :0, "
" \" minor \" :11, "
" \" micro \" :6 "
" }, "
" \" package \" : \" 2.283.el6 \" "
" } "
" } " ) < 0 )
goto cleanup ;
if ( qemuMonitorGetVersion ( qemuMonitorTestGetMonitor ( test ) ,
& major , & minor , & micro ,
& package ) < 0 )
goto cleanup ;
if ( major ! = 1 ) {
virReportError ( VIR_ERR_INTERNAL_ERROR ,
" Major %d was not 1 " , major ) ;
goto cleanup ;
}
if ( minor ! = 2 ) {
virReportError ( VIR_ERR_INTERNAL_ERROR ,
" Minor %d was not 2 " , major ) ;
goto cleanup ;
}
if ( micro ! = 3 ) {
virReportError ( VIR_ERR_INTERNAL_ERROR ,
" Micro %d was not 3 " , major ) ;
goto cleanup ;
}
if ( STRNEQ ( package , " " ) ) {
virReportError ( VIR_ERR_INTERNAL_ERROR ,
" Package %s was not '' " , package ) ;
goto cleanup ;
}
2013-02-04 20:17:52 +04:00
VIR_FREE ( package ) ;
2012-08-15 18:04:09 +04:00
if ( qemuMonitorGetVersion ( qemuMonitorTestGetMonitor ( test ) ,
& major , & minor , & micro ,
& package ) < 0 )
goto cleanup ;
if ( major ! = 0 ) {
virReportError ( VIR_ERR_INTERNAL_ERROR ,
" Major %d was not 0 " , major ) ;
goto cleanup ;
}
if ( minor ! = 11 ) {
virReportError ( VIR_ERR_INTERNAL_ERROR ,
" Minor %d was not 11 " , major ) ;
goto cleanup ;
}
if ( micro ! = 6 ) {
virReportError ( VIR_ERR_INTERNAL_ERROR ,
" Micro %d was not 6 " , major ) ;
goto cleanup ;
}
if ( STRNEQ ( package , " 2.283.el6 " ) ) {
virReportError ( VIR_ERR_INTERNAL_ERROR ,
" Package %s was not '2.283.el6' " , package ) ;
goto cleanup ;
}
ret = 0 ;
cleanup :
qemuMonitorTestFree ( test ) ;
2013-02-04 20:17:52 +04:00
VIR_FREE ( package ) ;
2012-08-15 18:04:09 +04:00
return ret ;
}
2012-08-15 19:18:41 +04:00
static int
testQemuMonitorJSONGetMachines ( const void * data )
{
2013-03-31 22:03:42 +04:00
virDomainXMLOptionPtr xmlopt = ( virDomainXMLOptionPtr ) data ;
2013-07-25 21:17:44 +04:00
qemuMonitorTestPtr test = qemuMonitorTestNewSimple ( true , xmlopt ) ;
2012-08-15 19:18:41 +04:00
int ret = - 1 ;
qemuMonitorMachineInfoPtr * info ;
2013-02-04 20:17:52 +04:00
int ninfo = 0 ;
2012-08-15 19:18:41 +04:00
const char * null = NULL ;
Convert 'int i' to 'size_t i' in tests/ files
Convert the type of loop iterators named 'i', 'j', k',
'ii', 'jj', 'kk', to be 'size_t' instead of 'int' or
'unsigned int', also santizing 'ii', 'jj', 'kk' to use
the normal 'i', 'j', 'k' naming
Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
2013-07-08 18:09:33 +04:00
size_t i ;
2012-08-15 19:18:41 +04:00
if ( ! test )
return - 1 ;
if ( qemuMonitorTestAddItem ( test , " query-machines " ,
" { "
" \" return \" : [ "
" { "
" \" name \" : \" pc-1.0 \" "
" }, "
" { "
" \" name \" : \" pc-1.1 \" "
" }, "
" { "
" \" name \" : \" pc-1.2 \" , "
" \" is-default \" : true, "
" \" alias \" : \" pc \" "
" } "
" ] "
" } " ) < 0 )
goto cleanup ;
if ( ( ninfo = qemuMonitorGetMachines ( qemuMonitorTestGetMonitor ( test ) ,
& info ) ) < 0 )
goto cleanup ;
if ( ninfo ! = 3 ) {
virReportError ( VIR_ERR_INTERNAL_ERROR ,
" ninfo %d is not 3 " , ninfo ) ;
goto cleanup ;
}
# define CHECK(i, wantname, wantisDefault, wantalias) \
do { \
if ( STRNEQ ( info [ i ] - > name , ( wantname ) ) ) { \
virReportError ( VIR_ERR_INTERNAL_ERROR , \
" name %s is not %s " , \
info [ i ] - > name , ( wantname ) ) ; \
goto cleanup ; \
} \
if ( info [ i ] - > isDefault ! = ( wantisDefault ) ) { \
virReportError ( VIR_ERR_INTERNAL_ERROR , \
" isDefault %d is not %d " , \
info [ i ] - > isDefault , ( wantisDefault ) ) ; \
goto cleanup ; \
} \
if ( STRNEQ_NULLABLE ( info [ i ] - > alias , ( wantalias ) ) ) { \
virReportError ( VIR_ERR_INTERNAL_ERROR , \
" alias %s is not %s " , \
info [ i ] - > alias , NULLSTR ( wantalias ) ) ; \
goto cleanup ; \
} \
} while ( 0 )
CHECK ( 0 , " pc-1.0 " , false , null ) ;
CHECK ( 1 , " pc-1.1 " , false , null ) ;
CHECK ( 2 , " pc-1.2 " , true , " pc " ) ;
# undef CHECK
ret = 0 ;
cleanup :
qemuMonitorTestFree ( test ) ;
2013-02-04 20:17:52 +04:00
for ( i = 0 ; i < ninfo ; i + + )
qemuMonitorMachineInfoFree ( info [ i ] ) ;
VIR_FREE ( info ) ;
2012-08-15 19:18:41 +04:00
return ret ;
}
2012-08-20 18:58:20 +04:00
static int
testQemuMonitorJSONGetCPUDefinitions ( const void * data )
{
2013-03-31 22:03:42 +04:00
virDomainXMLOptionPtr xmlopt = ( virDomainXMLOptionPtr ) data ;
2013-07-25 21:17:44 +04:00
qemuMonitorTestPtr test = qemuMonitorTestNewSimple ( true , xmlopt ) ;
2012-08-20 18:58:20 +04:00
int ret = - 1 ;
char * * cpus = NULL ;
2013-02-04 20:17:52 +04:00
int ncpus = 0 ;
Convert 'int i' to 'size_t i' in tests/ files
Convert the type of loop iterators named 'i', 'j', k',
'ii', 'jj', 'kk', to be 'size_t' instead of 'int' or
'unsigned int', also santizing 'ii', 'jj', 'kk' to use
the normal 'i', 'j', 'k' naming
Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
2013-07-08 18:09:33 +04:00
size_t i ;
2012-08-20 18:58:20 +04:00
if ( ! test )
return - 1 ;
if ( qemuMonitorTestAddItem ( test , " query-cpu-definitions " ,
" { "
" \" return \" : [ "
" { "
" \" name \" : \" qemu64 \" "
" }, "
" { "
" \" name \" : \" Opteron_G4 \" "
" }, "
" { "
" \" name \" : \" Westmere \" "
" } "
" ] "
" } " ) < 0 )
goto cleanup ;
if ( ( ncpus = qemuMonitorGetCPUDefinitions ( qemuMonitorTestGetMonitor ( test ) ,
& cpus ) ) < 0 )
goto cleanup ;
if ( ncpus ! = 3 ) {
virReportError ( VIR_ERR_INTERNAL_ERROR ,
" ncpus %d is not 3 " , ncpus ) ;
goto cleanup ;
}
# define CHECK(i, wantname) \
do { \
if ( STRNEQ ( cpus [ i ] , ( wantname ) ) ) { \
virReportError ( VIR_ERR_INTERNAL_ERROR , \
" name %s is not %s " , \
cpus [ i ] , ( wantname ) ) ; \
goto cleanup ; \
} \
} while ( 0 )
CHECK ( 0 , " qemu64 " ) ;
CHECK ( 1 , " Opteron_G4 " ) ;
CHECK ( 2 , " Westmere " ) ;
# undef CHECK
ret = 0 ;
cleanup :
qemuMonitorTestFree ( test ) ;
2013-02-04 20:17:52 +04:00
for ( i = 0 ; i < ncpus ; i + + )
VIR_FREE ( cpus [ i ] ) ;
VIR_FREE ( cpus ) ;
2012-08-20 18:58:20 +04:00
return ret ;
}
2012-08-22 13:25:20 +04:00
static int
testQemuMonitorJSONGetCommands ( const void * data )
{
2013-03-31 22:03:42 +04:00
virDomainXMLOptionPtr xmlopt = ( virDomainXMLOptionPtr ) data ;
2013-07-25 21:17:44 +04:00
qemuMonitorTestPtr test = qemuMonitorTestNewSimple ( true , xmlopt ) ;
2012-08-22 13:25:20 +04:00
int ret = - 1 ;
char * * commands = NULL ;
2013-02-04 20:17:52 +04:00
int ncommands = 0 ;
Convert 'int i' to 'size_t i' in tests/ files
Convert the type of loop iterators named 'i', 'j', k',
'ii', 'jj', 'kk', to be 'size_t' instead of 'int' or
'unsigned int', also santizing 'ii', 'jj', 'kk' to use
the normal 'i', 'j', 'k' naming
Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
2013-07-08 18:09:33 +04:00
size_t i ;
2012-08-22 13:25:20 +04:00
if ( ! test )
return - 1 ;
if ( qemuMonitorTestAddItem ( test , " query-commands " ,
" { "
" \" return \" : [ "
" { "
" \" name \" : \" system_wakeup \" "
" }, "
" { "
" \" name \" : \" cont \" "
" }, "
" { "
" \" name \" : \" quit \" "
" } "
" ] "
" } " ) < 0 )
goto cleanup ;
if ( ( ncommands = qemuMonitorGetCommands ( qemuMonitorTestGetMonitor ( test ) ,
& commands ) ) < 0 )
goto cleanup ;
if ( ncommands ! = 3 ) {
virReportError ( VIR_ERR_INTERNAL_ERROR ,
" ncommands %d is not 3 " , ncommands ) ;
goto cleanup ;
}
# define CHECK(i, wantname) \
do { \
if ( STRNEQ ( commands [ i ] , ( wantname ) ) ) { \
virReportError ( VIR_ERR_INTERNAL_ERROR , \
" name %s is not %s " , \
commands [ i ] , ( wantname ) ) ; \
goto cleanup ; \
} \
} while ( 0 )
CHECK ( 0 , " system_wakeup " ) ;
CHECK ( 1 , " cont " ) ;
CHECK ( 2 , " quit " ) ;
# undef CHECK
ret = 0 ;
cleanup :
qemuMonitorTestFree ( test ) ;
2013-02-04 20:17:52 +04:00
for ( i = 0 ; i < ncommands ; i + + )
VIR_FREE ( commands [ i ] ) ;
VIR_FREE ( commands ) ;
2012-08-22 13:25:20 +04:00
return ret ;
}
2013-04-26 15:13:05 +04:00
static int
testQemuMonitorJSONGetTPMModels ( const void * data )
{
const virDomainXMLOptionPtr xmlopt = ( virDomainXMLOptionPtr ) data ;
2013-07-25 21:17:44 +04:00
qemuMonitorTestPtr test = qemuMonitorTestNewSimple ( true , xmlopt ) ;
2013-04-26 15:13:05 +04:00
int ret = - 1 ;
char * * tpmmodels = NULL ;
int ntpmmodels = 0 ;
if ( ! test )
return - 1 ;
if ( qemuMonitorTestAddItem ( test , " query-tpm-models " ,
" { "
" \" return \" : [ "
" \" passthrough \" "
" ] "
" } " ) < 0 )
goto cleanup ;
if ( ( ntpmmodels = qemuMonitorGetTPMModels ( qemuMonitorTestGetMonitor ( test ) ,
& tpmmodels ) ) < 0 )
goto cleanup ;
if ( ntpmmodels ! = 1 ) {
virReportError ( VIR_ERR_INTERNAL_ERROR ,
" ntpmmodels %d is not 1 " , ntpmmodels ) ;
goto cleanup ;
}
# define CHECK(i, wantname) \
do { \
if ( STRNEQ ( tpmmodels [ i ] , ( wantname ) ) ) { \
virReportError ( VIR_ERR_INTERNAL_ERROR , \
" name %s is not %s " , \
tpmmodels [ i ] , ( wantname ) ) ; \
goto cleanup ; \
} \
} while ( 0 )
CHECK ( 0 , " passthrough " ) ;
# undef CHECK
ret = 0 ;
cleanup :
qemuMonitorTestFree ( test ) ;
virStringFreeList ( tpmmodels ) ;
return ret ;
}
2013-04-26 21:13:45 +04:00
static int
testQemuMonitorJSONGetCommandLineOptionParameters ( const void * data )
{
const virDomainXMLOptionPtr xmlopt = ( virDomainXMLOptionPtr ) data ;
2013-07-25 21:17:44 +04:00
qemuMonitorTestPtr test = qemuMonitorTestNewSimple ( true , xmlopt ) ;
2013-04-26 21:13:45 +04:00
int ret = - 1 ;
char * * params = NULL ;
int nparams = 0 ;
if ( ! test )
return - 1 ;
if ( qemuMonitorTestAddItem ( test , " query-command-line-options " ,
" { "
" \" return \" : [ "
" { \" parameters \" : [], \" option \" : \" acpi \" }, "
" { \" parameters \" : [ "
" { \" name \" : \" romfile \" , "
" \" type \" : \" string \" }, "
" { \" name \" : \" bootindex \" , "
" \" type \" : \" number \" }], "
" \" option \" : \" option-rom \" } "
" ] "
" } " ) < 0 )
goto cleanup ;
/* present with params */
if ( ( nparams = qemuMonitorGetCommandLineOptionParameters ( qemuMonitorTestGetMonitor ( test ) ,
" option-rom " ,
& params ) ) < 0 )
goto cleanup ;
if ( nparams ! = 2 ) {
virReportError ( VIR_ERR_INTERNAL_ERROR ,
" nparams was %d, expected 2 " , nparams ) ;
goto cleanup ;
}
# define CHECK(i, wantname) \
do { \
if ( STRNEQ ( params [ i ] , ( wantname ) ) ) { \
virReportError ( VIR_ERR_INTERNAL_ERROR , \
" name was %s, expected %s " , \
params [ i ] , ( wantname ) ) ; \
goto cleanup ; \
} \
} while ( 0 )
CHECK ( 0 , " romfile " ) ;
CHECK ( 1 , " bootindex " ) ;
# undef CHECK
virStringFreeList ( params ) ;
params = NULL ;
/* present but empty */
if ( ( nparams = qemuMonitorGetCommandLineOptionParameters ( qemuMonitorTestGetMonitor ( test ) ,
" acpi " ,
& params ) ) < 0 )
goto cleanup ;
if ( nparams ! = 0 ) {
virReportError ( VIR_ERR_INTERNAL_ERROR ,
" nparams was %d, expected 0 " , nparams ) ;
goto cleanup ;
}
if ( params & & params [ 0 ] ) {
virReportError ( VIR_ERR_INTERNAL_ERROR , " %s " ,
" unexpected array contents " ) ;
goto cleanup ;
}
virStringFreeList ( params ) ;
params = NULL ;
/* no such option */
if ( ( nparams = qemuMonitorGetCommandLineOptionParameters ( qemuMonitorTestGetMonitor ( test ) ,
" foobar " ,
& params ) ) < 0 )
goto cleanup ;
if ( nparams ! = 0 ) {
virReportError ( VIR_ERR_INTERNAL_ERROR ,
" nparams was %d, expected 0 " , nparams ) ;
goto cleanup ;
}
if ( params & & params [ 0 ] ) {
virReportError ( VIR_ERR_INTERNAL_ERROR , " %s " ,
" unexpected array contents " ) ;
goto cleanup ;
}
ret = 0 ;
cleanup :
qemuMonitorTestFree ( test ) ;
virStringFreeList ( params ) ;
return ret ;
}
2013-03-12 22:48:04 +04:00
static int
testQemuMonitorJSONAttachChardev ( const void * data )
{
const virDomainXMLOptionPtr xmlopt = ( virDomainXMLOptionPtr ) data ;
2013-07-25 21:17:44 +04:00
qemuMonitorTestPtr test = qemuMonitorTestNewSimple ( true , xmlopt ) ;
2013-03-12 22:48:04 +04:00
virDomainChrSourceDef chr ;
int ret = 0 ;
if ( ! test )
return - 1 ;
# define DO_CHECK(chrID, reply, fail) \
if ( qemuMonitorTestAddItem ( test , " chardev-add " , reply ) < 0 ) \
goto cleanup ; \
if ( qemuMonitorAttachCharDev ( qemuMonitorTestGetMonitor ( test ) , \
chrID , & chr ) < 0 ) \
ret = fail ? ret : - 1 ; \
else \
ret = fail ? - 1 : ret ; \
# define CHECK(chrID, reply) \
DO_CHECK ( chrID , reply , false )
# define CHECK_FAIL(chrID, reply) \
DO_CHECK ( chrID , reply , true )
chr = ( virDomainChrSourceDef ) { . type = VIR_DOMAIN_CHR_TYPE_NULL } ;
CHECK ( " chr_null " , " { \" return \" : {}} " ) ;
chr = ( virDomainChrSourceDef ) { . type = VIR_DOMAIN_CHR_TYPE_VC } ;
CHECK ( " chr_vc " , " { \" return \" : {}} " ) ;
# define PTY_PATH " / dev / ttyS0"
chr = ( virDomainChrSourceDef ) { . type = VIR_DOMAIN_CHR_TYPE_PTY } ;
CHECK ( " chr_pty " , " { \" return \" : { \" pty \" : \" " PTY_PATH " \" }} " ) ;
if ( STRNEQ_NULLABLE ( PTY_PATH , chr . data . file . path ) ) {
VIR_FREE ( chr . data . file . path ) ;
virReportError ( VIR_ERR_INTERNAL_ERROR ,
" expected PTY path: %s got: %s " ,
PTY_PATH , NULLSTR ( chr . data . file . path ) ) ;
ret = - 1 ;
}
VIR_FREE ( chr . data . file . path ) ;
chr = ( virDomainChrSourceDef ) { . type = VIR_DOMAIN_CHR_TYPE_PTY } ;
CHECK_FAIL ( " chr_pty_fail " , " { \" return \" : {}} " ) ;
# undef PTY_PATH
chr = ( virDomainChrSourceDef ) { . type = VIR_DOMAIN_CHR_TYPE_FILE } ;
CHECK ( " chr_file " , " { \" return \" : {}} " ) ;
chr = ( virDomainChrSourceDef ) { . type = VIR_DOMAIN_CHR_TYPE_DEV } ;
CHECK ( " chr_dev " , " { \" return \" : {}} " ) ;
chr = ( virDomainChrSourceDef ) { . type = VIR_DOMAIN_CHR_TYPE_TCP } ;
CHECK ( " chr_tcp " , " { \" return \" : {}} " ) ;
chr = ( virDomainChrSourceDef ) { . type = VIR_DOMAIN_CHR_TYPE_UDP } ;
CHECK ( " chr_udp " , " { \" return \" : {}} " ) ;
chr = ( virDomainChrSourceDef ) { . type = VIR_DOMAIN_CHR_TYPE_UNIX } ;
CHECK ( " chr_unix " , " { \" return \" : {}} " ) ;
chr = ( virDomainChrSourceDef ) { . type = VIR_DOMAIN_CHR_TYPE_SPICEVMC } ;
CHECK_FAIL ( " chr_spicevmc " , " { \" return \" : {}} " ) ;
chr = ( virDomainChrSourceDef ) { . type = VIR_DOMAIN_CHR_TYPE_PIPE } ;
CHECK_FAIL ( " chr_pipe " , " { \" return \" : {}} " ) ;
chr = ( virDomainChrSourceDef ) { . type = VIR_DOMAIN_CHR_TYPE_STDIO } ;
CHECK_FAIL ( " chr_stdio " , " { \" return \" : {}} " ) ;
# undef CHECK
# undef CHECK_FAIL
# undef DO_CHECK
cleanup :
qemuMonitorTestFree ( test ) ;
return ret ;
}
2013-04-26 21:13:45 +04:00
2013-03-12 22:57:48 +04:00
static int
testQemuMonitorJSONDetachChardev ( const void * data )
{
const virDomainXMLOptionPtr xmlopt = ( virDomainXMLOptionPtr ) data ;
2013-07-25 21:17:44 +04:00
qemuMonitorTestPtr test = qemuMonitorTestNewSimple ( true , xmlopt ) ;
2013-03-12 22:57:48 +04:00
int ret = - 1 ;
if ( ! test )
return ret ;
if ( qemuMonitorTestAddItem ( test , " chardev-remove " , " { \" return \" : {}} " ) < 0 )
goto cleanup ;
if ( qemuMonitorDetachCharDev ( qemuMonitorTestGetMonitor ( test ) ,
" dummy_chrID " ) < 0 )
goto cleanup ;
ret = 0 ;
cleanup :
qemuMonitorTestFree ( test ) ;
return ret ;
}
2013-06-24 21:51:56 +04:00
/*
* This test will request to return a list of paths for " / " . It should be
* a simple list of 1 real element that being the " machine " . The following
* is the execution and expected return :
*
* { " execute " : " qom-list " , " arguments " : { " path " : " / " } } "
* { " return " : [ { " name " : " machine " , " type " : " child<container> " } , \
* { " name " : " type " , " type " : " string " } ] }
*/
static int
testQemuMonitorJSONGetListPaths ( const void * data )
{
const virDomainXMLOptionPtr xmlopt = ( virDomainXMLOptionPtr ) data ;
2013-07-25 21:17:44 +04:00
qemuMonitorTestPtr test = qemuMonitorTestNewSimple ( true , xmlopt ) ;
2013-06-24 21:51:56 +04:00
int ret = - 1 ;
qemuMonitorJSONListPathPtr * paths ;
int npaths = 0 ;
size_t i ;
if ( ! test )
return - 1 ;
if ( qemuMonitorTestAddItem ( test , " qom-list " ,
" { "
" \" return \" : [ "
" { \" name \" : \" machine \" , "
" \" type \" : \" child<container> \" }, "
" { \" name \" : \" type \" , "
" \" type \" : \" string \" } "
" ] "
" } " ) < 0 )
goto cleanup ;
/* present with path */
if ( ( npaths = qemuMonitorJSONGetObjectListPaths (
qemuMonitorTestGetMonitor ( test ) ,
" / " ,
& paths ) ) < 0 )
goto cleanup ;
if ( npaths ! = 2 ) {
virReportError ( VIR_ERR_INTERNAL_ERROR ,
" npaths was %d, expected 1 " , npaths ) ;
goto cleanup ;
}
# define CHECK(i, wantname, wanttype) \
do { \
if ( STRNEQ ( paths [ i ] - > name , ( wantname ) ) ) { \
virReportError ( VIR_ERR_INTERNAL_ERROR , \
" name was %s, expected %s " , \
paths [ i ] - > name , ( wantname ) ) ; \
goto cleanup ; \
} \
if ( STRNEQ_NULLABLE ( paths [ i ] - > type , ( wanttype ) ) ) { \
virReportError ( VIR_ERR_INTERNAL_ERROR , \
" type was %s, expected %s " , \
NULLSTR ( paths [ i ] - > type ) , ( wanttype ) ) ; \
goto cleanup ; \
} \
} while ( 0 )
CHECK ( 0 , " machine " , " child<container> " ) ;
# undef CHECK
ret = 0 ;
cleanup :
qemuMonitorTestFree ( test ) ;
for ( i = 0 ; i < npaths ; i + + )
qemuMonitorJSONListPathFree ( paths [ i ] ) ;
VIR_FREE ( paths ) ;
return ret ;
}
2013-07-03 22:15:07 +04:00
/*
* This test will use a path to / machine / i440fx which should exist in order
* to ensure that the qom - get property fetch works properly . The following
* is the execution and expected return :
*
*
* { " execute " : " qom-get " , " arguments " : \
* { " path " : " /machine/i440fx " , " property " : " realized " } }
* { " return " : true }
*/
static int
testQemuMonitorJSONGetObjectProperty ( const void * data )
{
const virDomainXMLOptionPtr xmlopt = ( virDomainXMLOptionPtr ) data ;
2013-07-25 21:17:44 +04:00
qemuMonitorTestPtr test = qemuMonitorTestNewSimple ( true , xmlopt ) ;
2013-07-03 22:15:07 +04:00
int ret = - 1 ;
qemuMonitorJSONObjectProperty prop ;
if ( ! test )
return - 1 ;
if ( qemuMonitorTestAddItem ( test , " qom-get " ,
" { \" return \" : true } " ) < 0 )
goto cleanup ;
/* Present with path and property */
memset ( & prop , 0 , sizeof ( qemuMonitorJSONObjectProperty ) ) ;
prop . type = QEMU_MONITOR_OBJECT_PROPERTY_BOOLEAN ;
if ( qemuMonitorJSONGetObjectProperty ( qemuMonitorTestGetMonitor ( test ) ,
" /machine/i440fx " ,
" realized " ,
& prop ) < 0 )
goto cleanup ;
if ( ! prop . val . b ) {
virReportError ( VIR_ERR_INTERNAL_ERROR , " %s " ,
" expected true, but false returned " ) ;
goto cleanup ;
}
ret = 0 ;
cleanup :
qemuMonitorTestFree ( test ) ;
return ret ;
}
2013-07-03 22:42:40 +04:00
/*
* This test will use a path to / machine / i440fx which should exist in order
* to ensure that the qom - set property set works properly . The test will
* set a true property to true just as a proof of concept . Setting it to
* false is not a good idea . . .
*/
static int
testQemuMonitorJSONSetObjectProperty ( const void * data )
{
const virDomainXMLOptionPtr xmlopt = ( virDomainXMLOptionPtr ) data ;
2013-07-25 21:17:44 +04:00
qemuMonitorTestPtr test = qemuMonitorTestNewSimple ( true , xmlopt ) ;
2013-07-03 22:42:40 +04:00
int ret = - 1 ;
qemuMonitorJSONObjectProperty prop ;
if ( ! test )
return - 1 ;
if ( qemuMonitorTestAddItem ( test , " qom-set " ,
" { \" return \" : {} } " ) < 0 )
goto cleanup ;
if ( qemuMonitorTestAddItem ( test , " qom-get " ,
" { \" return \" : true } " ) < 0 )
goto cleanup ;
/* Let's attempt the setting */
memset ( & prop , 0 , sizeof ( qemuMonitorJSONObjectProperty ) ) ;
prop . type = QEMU_MONITOR_OBJECT_PROPERTY_BOOLEAN ;
prop . val . b = true ;
if ( qemuMonitorJSONSetObjectProperty ( qemuMonitorTestGetMonitor ( test ) ,
" /machine/i440fx " ,
" realized " ,
& prop ) < 0 )
goto cleanup ;
/* To make sure it worked, fetch the property - if this succeeds then
* we didn ' t hose things
*/
memset ( & prop , 0 , sizeof ( qemuMonitorJSONObjectProperty ) ) ;
prop . type = QEMU_MONITOR_OBJECT_PROPERTY_BOOLEAN ;
if ( qemuMonitorJSONGetObjectProperty ( qemuMonitorTestGetMonitor ( test ) ,
" /machine/i440fx " ,
" realized " ,
& prop ) < 0 )
goto cleanup ;
if ( ! prop . val . b ) {
virReportError ( VIR_ERR_INTERNAL_ERROR , " %s " ,
" expected true, but false returned " ) ;
goto cleanup ;
}
ret = 0 ;
cleanup :
qemuMonitorTestFree ( test ) ;
return ret ;
}
2013-07-19 17:01:38 +04:00
static int
testQemuMonitorJSONGetDeviceAliases ( const void * data )
{
const virDomainXMLOptionPtr xmlopt = ( virDomainXMLOptionPtr ) data ;
2013-07-25 21:17:44 +04:00
qemuMonitorTestPtr test = qemuMonitorTestNewSimple ( true , xmlopt ) ;
2013-07-19 17:01:38 +04:00
int ret = - 1 ;
char * * aliases = NULL ;
char * * alias ;
const char * expected [ ] = {
" virtio-disk25 " , " video0 " , " serial0 " , " ide0-0-0 " , " usb " , NULL } ;
if ( ! test )
return - 1 ;
if ( qemuMonitorTestAddItem ( test ,
" qom-list " ,
" { \" return \" : [ "
" { \" name \" : \" virtio-disk25 \" , "
" \" type \" : \" child<virtio-blk-pci> \" }, "
" { \" name \" : \" video0 \" , "
" \" type \" : \" child<VGA> \" }, "
" { \" name \" : \" serial0 \" , "
" \" type \" : \" child<isa-serial> \" }, "
" { \" name \" : \" ide0-0-0 \" , "
" \" type \" : \" child<ide-cd> \" }, "
" { \" name \" : \" usb \" , "
" \" type \" : \" child<piix3-usb-uhci> \" }, "
" { \" name \" : \" type \" , \" type \" : \" string \" } "
" ]} " ) < 0 )
goto cleanup ;
if ( qemuMonitorJSONGetDeviceAliases ( qemuMonitorTestGetMonitor ( test ) ,
& aliases ) < 0 )
goto cleanup ;
if ( ! aliases ) {
virReportError ( VIR_ERR_INTERNAL_ERROR , " %s " , " no aliases returned " ) ;
goto cleanup ;
}
ret = 0 ;
for ( alias = aliases ; * alias ; alias + + ) {
if ( ! virStringArrayHasString ( ( char * * ) expected , * alias ) ) {
fprintf ( stderr , " got unexpected device alias '%s' \n " , * alias ) ;
ret = - 1 ;
}
}
for ( alias = ( char * * ) expected ; * alias ; alias + + ) {
if ( ! virStringArrayHasString ( aliases , * alias ) ) {
fprintf ( stderr , " missing expected alias '%s' \n " , * alias ) ;
ret = - 1 ;
}
}
cleanup :
virStringFreeList ( aliases ) ;
2013-07-22 16:56:21 +04:00
qemuMonitorTestFree ( test ) ;
2013-07-19 17:01:38 +04:00
return ret ;
}
2013-09-18 17:11:06 +04:00
static int
testQemuMonitorJSONCPU ( const void * data )
{
const virDomainXMLOptionPtr xmlopt = ( virDomainXMLOptionPtr ) data ;
qemuMonitorTestPtr test = qemuMonitorTestNewSimple ( true , xmlopt ) ;
int ret = - 1 ;
bool running = false ;
virDomainPausedReason reason = 0 ;
2013-09-20 15:02:43 +04:00
if ( ! test )
return - 1 ;
2013-09-18 17:11:06 +04:00
if ( qemuMonitorTestAddItem ( test , " stop " , " { \" return \" : {}} " ) < 0 | |
qemuMonitorTestAddItem ( test , " query-status " ,
" { \" return \" : { "
" \" status \" : \" paused \" , "
" \" singlestep \" : false, "
" \" running \" : false}} " ) < 0 | |
qemuMonitorTestAddItem ( test , " cont " , " { \" return \" : {}} " ) < 0 | |
qemuMonitorTestAddItem ( test , " query-status " ,
" { \" return \" : { "
" \" status \" : \" running \" , "
" \" singlestep \" : false, "
" \" running \" : true}} " ) < 0 )
goto cleanup ;
if ( qemuMonitorJSONStopCPUs ( qemuMonitorTestGetMonitor ( test ) ) < 0 )
goto cleanup ;
if ( qemuMonitorGetStatus ( qemuMonitorTestGetMonitor ( test ) ,
& running , & reason ) < 0 )
goto cleanup ;
if ( running ) {
virReportError ( VIR_ERR_INTERNAL_ERROR , " %s " ,
" Running was not false " ) ;
goto cleanup ;
}
if ( qemuMonitorJSONStartCPUs ( qemuMonitorTestGetMonitor ( test ) , NULL ) < 0 )
goto cleanup ;
if ( qemuMonitorGetStatus ( qemuMonitorTestGetMonitor ( test ) ,
& running , & reason ) < 0 )
goto cleanup ;
if ( ! running ) {
virReportError ( VIR_ERR_INTERNAL_ERROR , " %s " ,
" Running was not true " ) ;
goto cleanup ;
}
ret = 0 ;
cleanup :
qemuMonitorTestFree ( test ) ;
return ret ;
}
2013-07-19 17:01:38 +04:00
2013-09-18 19:28:31 +04:00
static int
testQemuMonitorJSONSimpleFunc ( const void * opaque )
{
const testQemuMonitorJSONSimpleFuncDataPtr data = ( const testQemuMonitorJSONSimpleFuncDataPtr ) opaque ;
virDomainXMLOptionPtr xmlopt = data - > xmlopt ;
qemuMonitorTestPtr test = qemuMonitorTestNewSimple ( true , xmlopt ) ;
const char * reply = data - > reply ;
int ret = - 1 ;
2013-09-20 15:02:43 +04:00
if ( ! test )
return - 1 ;
2013-09-18 19:28:31 +04:00
if ( ! reply )
reply = " { \" return \" :{}} " ;
if ( qemuMonitorTestAddItem ( test , data - > cmd , reply ) < 0 )
goto cleanup ;
if ( data - > func ( qemuMonitorTestGetMonitor ( test ) ) < 0 )
goto cleanup ;
ret = 0 ;
cleanup :
qemuMonitorTestFree ( test ) ;
return ret ;
}
2013-10-02 14:02:53 +04:00
static int
testQemuMonitorJSONqemuMonitorJSONGetBalloonInfo ( const void * data )
{
virDomainXMLOptionPtr xmlopt = ( virDomainXMLOptionPtr ) data ;
qemuMonitorTestPtr test = qemuMonitorTestNewSimple ( true , xmlopt ) ;
int ret = - 1 ;
unsigned long long currmem ;
if ( ! test )
return - 1 ;
if ( qemuMonitorTestAddItem ( test , " query-balloon " ,
" { "
" \" return \" : { "
" \" actual \" : 4294967296 "
" }, "
" \" id \" : \" libvirt-9 \" "
" } " ) < 0 )
goto cleanup ;
if ( qemuMonitorJSONGetBalloonInfo ( qemuMonitorTestGetMonitor ( test ) , & currmem ) < 0 )
goto cleanup ;
if ( currmem ! = ( 4294967296 / 1024 ) ) {
virReportError ( VIR_ERR_INTERNAL_ERROR ,
" Unexpected currmem value: %llu " , currmem ) ;
goto cleanup ;
}
ret = 0 ;
cleanup :
qemuMonitorTestFree ( test ) ;
return ret ;
}
2013-10-02 16:39:10 +04:00
static int
testHashEqualQemuDomainDiskInfo ( const void * value1 , const void * value2 )
{
const struct qemuDomainDiskInfo * info1 = value1 , * info2 = value2 ;
return memcmp ( info1 , info2 , sizeof ( * info1 ) ) ;
}
static int
testQemuMonitorJSONqemuMonitorJSONGetBlockInfo ( const void * data )
{
virDomainXMLOptionPtr xmlopt = ( virDomainXMLOptionPtr ) data ;
qemuMonitorTestPtr test = qemuMonitorTestNewSimple ( true , xmlopt ) ;
int ret = - 1 ;
virHashTablePtr blockDevices = NULL , expectedBlockDevices = NULL ;
struct qemuDomainDiskInfo * info ;
if ( ! test )
return - 1 ;
if ( ! ( blockDevices = virHashCreate ( 32 , ( virHashDataFree ) free ) ) | |
! ( expectedBlockDevices = virHashCreate ( 32 , ( virHashDataFree ) ( free ) ) ) )
goto cleanup ;
if ( VIR_ALLOC ( info ) < 0 )
goto cleanup ;
if ( virHashAddEntry ( expectedBlockDevices , " virtio-disk0 " , info ) < 0 ) {
virReportError ( VIR_ERR_INTERNAL_ERROR , " %s " ,
" Unable to create expectedBlockDevices hash table " ) ;
goto cleanup ;
}
if ( VIR_ALLOC ( info ) < 0 )
goto cleanup ;
if ( virHashAddEntry ( expectedBlockDevices , " virtio-disk1 " , info ) < 0 ) {
virReportError ( VIR_ERR_INTERNAL_ERROR , " %s " ,
" Unable to create expectedBlockDevices hash table " ) ;
goto cleanup ;
}
if ( VIR_ALLOC ( info ) < 0 )
goto cleanup ;
info - > locked = true ;
info - > removable = true ;
if ( virHashAddEntry ( expectedBlockDevices , " ide0-1-0 " , info ) < 0 ) {
virReportError ( VIR_ERR_INTERNAL_ERROR , " %s " ,
" Unable to create expectedBlockDevices hash table " ) ;
goto cleanup ;
}
if ( qemuMonitorTestAddItem ( test , " query-block " ,
" { "
" \" return \" : [ "
" { "
" \" io-status \" : \" ok \" , "
" \" device \" : \" drive-virtio-disk0 \" , "
" \" locked \" : false, "
" \" removable \" : false, "
" \" inserted \" : { "
" \" iops_rd \" : 0, "
" \" iops_wr \" : 0, "
" \" ro \" : false, "
" \" backing_file_depth \" : 0, "
" \" drv \" : \" qcow2 \" , "
" \" iops \" : 0, "
" \" bps_wr \" : 0, "
" \" encrypted \" : false, "
" \" bps \" : 0, "
" \" bps_rd \" : 0, "
" \" file \" : \" /home/zippy/work/tmp/gentoo.qcow2 \" , "
" \" encryption_key_missing \" : false "
" }, "
" \" type \" : \" unknown \" "
" }, "
" { "
" \" io-status \" : \" ok \" , "
" \" device \" : \" drive-virtio-disk1 \" , "
" \" locked \" : false, "
" \" removable \" : false, "
" \" inserted \" : { "
" \" iops_rd \" : 0, "
" \" iops_wr \" : 0, "
" \" ro \" : false, "
" \" backing_file_depth \" : 0, "
" \" drv \" : \" raw \" , "
" \" iops \" : 0, "
" \" bps_wr \" : 0, "
" \" encrypted \" : false, "
" \" bps \" : 0, "
" \" bps_rd \" : 0, "
" \" file \" : \" /home/zippy/test.bin \" , "
" \" encryption_key_missing \" : false "
" }, "
" \" type \" : \" unknown \" "
" }, "
" { "
" \" io-status \" : \" ok \" , "
" \" device \" : \" drive-ide0-1-0 \" , "
" \" locked \" : true, "
" \" removable \" : true, "
" \" inserted \" : { "
" \" iops_rd \" : 0, "
" \" iops_wr \" : 0, "
" \" ro \" : true, "
" \" backing_file_depth \" : 0, "
" \" drv \" : \" raw \" , "
" \" iops \" : 0, "
" \" bps_wr \" : 0, "
" \" encrypted \" : false, "
" \" bps \" : 0, "
" \" bps_rd \" : 0, "
" \" file \" : \" /home/zippy/tmp/install-amd64-minimal-20121210.iso \" , "
" \" encryption_key_missing \" : false "
" }, "
" \" tray_open \" : false, "
" \" type \" : \" unknown \" "
" } "
" ], "
" \" id \" : \" libvirt-10 \" "
" } " ) < 0 )
goto cleanup ;
if ( qemuMonitorJSONGetBlockInfo ( qemuMonitorTestGetMonitor ( test ) , blockDevices ) < 0 )
goto cleanup ;
if ( ! virHashEqual ( blockDevices , expectedBlockDevices , testHashEqualQemuDomainDiskInfo ) ) {
virReportError ( VIR_ERR_INTERNAL_ERROR , " %s " ,
" Hashtable is different to the expected one " ) ;
goto cleanup ;
}
ret = 0 ;
cleanup :
virHashFree ( blockDevices ) ;
virHashFree ( expectedBlockDevices ) ;
qemuMonitorTestFree ( test ) ;
return ret ;
}
2013-10-02 17:08:02 +04:00
static int
testQemuMonitorJSONqemuMonitorJSONGetBlockStatsInfo ( const void * data )
{
virDomainXMLOptionPtr xmlopt = ( virDomainXMLOptionPtr ) data ;
qemuMonitorTestPtr test = qemuMonitorTestNewSimple ( true , xmlopt ) ;
int ret = - 1 ;
long long rd_req , rd_bytes , rd_total_times ;
long long wr_req , wr_bytes , wr_total_times ;
long long flush_req , flush_total_times , errs ;
int nparams ;
unsigned long long extent ;
const char * reply =
" { "
" \" return \" : [ "
" { "
" \" device \" : \" drive-virtio-disk0 \" , "
" \" parent \" : { "
" \" stats \" : { "
" \" flush_total_time_ns \" : 0, "
" \" wr_highest_offset \" : 5256018944, "
" \" wr_total_time_ns \" : 0, "
" \" wr_bytes \" : 0, "
" \" rd_total_time_ns \" : 0, "
" \" flush_operations \" : 0, "
" \" wr_operations \" : 0, "
" \" rd_bytes \" : 0, "
" \" rd_operations \" : 0 "
" } "
" }, "
" \" stats \" : { "
" \" flush_total_time_ns \" : 0, "
" \" wr_highest_offset \" : 10406001664, "
" \" wr_total_time_ns \" : 530699221, "
" \" wr_bytes \" : 2845696, "
" \" rd_total_time_ns \" : 640616474, "
" \" flush_operations \" : 0, "
" \" wr_operations \" : 174, "
" \" rd_bytes \" : 28505088, "
" \" rd_operations \" : 1279 "
" } "
" }, "
" { "
" \" device \" : \" drive-virtio-disk1 \" , "
" \" parent \" : { "
" \" stats \" : { "
" \" flush_total_time_ns \" : 0, "
" \" wr_highest_offset \" : 0, "
" \" wr_total_time_ns \" : 0, "
" \" wr_bytes \" : 0, "
" \" rd_total_time_ns \" : 0, "
" \" flush_operations \" : 0, "
" \" wr_operations \" : 0, "
" \" rd_bytes \" : 0, "
" \" rd_operations \" : 0 "
" } "
" }, "
" \" stats \" : { "
" \" flush_total_time_ns \" : 0, "
" \" wr_highest_offset \" : 0, "
" \" wr_total_time_ns \" : 0, "
" \" wr_bytes \" : 0, "
" \" rd_total_time_ns \" : 8232156, "
" \" flush_operations \" : 0, "
" \" wr_operations \" : 0, "
" \" rd_bytes \" : 348160, "
" \" rd_operations \" : 85 "
" } "
" }, "
" { "
" \" device \" : \" drive-ide0-1-0 \" , "
" \" parent \" : { "
" \" stats \" : { "
" \" flush_total_time_ns \" : 0, "
" \" wr_highest_offset \" : 0, "
" \" wr_total_time_ns \" : 0, "
" \" wr_bytes \" : 0, "
" \" rd_total_time_ns \" : 0, "
" \" flush_operations \" : 0, "
" \" wr_operations \" : 0, "
" \" rd_bytes \" : 0, "
" \" rd_operations \" : 0 "
" } "
" }, "
" \" stats \" : { "
" \" flush_total_time_ns \" : 0, "
" \" wr_highest_offset \" : 0, "
" \" wr_total_time_ns \" : 0, "
" \" wr_bytes \" : 0, "
" \" rd_total_time_ns \" : 1004952, "
" \" flush_operations \" : 0, "
" \" wr_operations \" : 0, "
" \" rd_bytes \" : 49250, "
" \" rd_operations \" : 16 "
" } "
" } "
" ], "
" \" id \" : \" libvirt-11 \" "
" } " ;
if ( ! test )
return - 1 ;
/* fill in seven times - we are gonna ask seven times later on */
if ( qemuMonitorTestAddItem ( test , " query-blockstats " , reply ) < 0 | |
qemuMonitorTestAddItem ( test , " query-blockstats " , reply ) < 0 | |
qemuMonitorTestAddItem ( test , " query-blockstats " , reply ) < 0 | |
qemuMonitorTestAddItem ( test , " query-blockstats " , reply ) < 0 | |
qemuMonitorTestAddItem ( test , " query-blockstats " , reply ) < 0 | |
qemuMonitorTestAddItem ( test , " query-blockstats " , reply ) < 0 | |
qemuMonitorTestAddItem ( test , " query-blockstats " , reply ) < 0 )
goto cleanup ;
# define CHECK0(var, value) \
if ( var ! = value ) { \
virReportError ( VIR_ERR_INTERNAL_ERROR , \
" Invalid " # var " value: %lld, expected %d " , \
var , value ) ; \
goto cleanup ; \
}
# define CHECK(RD_REQ, RD_BYTES, RD_TOTAL_TIMES, WR_REQ, WR_BYTES, WR_TOTAL_TIMES, \
FLUSH_REQ , FLUSH_TOTAL_TIMES , ERRS ) \
CHECK0 ( rd_req , RD_REQ ) \
CHECK0 ( rd_bytes , RD_BYTES ) \
CHECK0 ( rd_total_times , RD_TOTAL_TIMES ) \
CHECK0 ( wr_req , WR_REQ ) \
CHECK0 ( wr_bytes , WR_BYTES ) \
CHECK0 ( wr_total_times , WR_TOTAL_TIMES ) \
CHECK0 ( flush_req , FLUSH_REQ ) \
CHECK0 ( flush_total_times , FLUSH_TOTAL_TIMES ) \
CHECK0 ( errs , ERRS )
if ( qemuMonitorJSONGetBlockStatsInfo ( qemuMonitorTestGetMonitor ( test ) , " virtio-disk0 " ,
& rd_req , & rd_bytes , & rd_total_times ,
& wr_req , & wr_bytes , & wr_total_times ,
& flush_req , & flush_total_times , & errs ) < 0 )
goto cleanup ;
CHECK ( 1279 , 28505088 , 640616474 , 174 , 2845696 , 530699221 , 0 , 0 , - 1 )
if ( qemuMonitorJSONGetBlockStatsInfo ( qemuMonitorTestGetMonitor ( test ) , " virtio-disk1 " ,
& rd_req , & rd_bytes , & rd_total_times ,
& wr_req , & wr_bytes , & wr_total_times ,
& flush_req , & flush_total_times , & errs ) < 0 )
goto cleanup ;
CHECK ( 85 , 348160 , 8232156 , 0 , 0 , 0 , 0 , 0 , - 1 )
if ( qemuMonitorJSONGetBlockStatsInfo ( qemuMonitorTestGetMonitor ( test ) , " ide0-1-0 " ,
& rd_req , & rd_bytes , & rd_total_times ,
& wr_req , & wr_bytes , & wr_total_times ,
& flush_req , & flush_total_times , & errs ) < 0 )
goto cleanup ;
CHECK ( 16 , 49250 , 1004952 , 0 , 0 , 0 , 0 , 0 , - 1 )
if ( qemuMonitorJSONGetBlockStatsParamsNumber ( qemuMonitorTestGetMonitor ( test ) ,
& nparams ) < 0 )
goto cleanup ;
if ( nparams ! = 8 ) {
virReportError ( VIR_ERR_INTERNAL_ERROR ,
" Invalid number of stats: %d, expected 8 " ,
nparams ) ;
goto cleanup ;
}
if ( qemuMonitorJSONGetBlockExtent ( qemuMonitorTestGetMonitor ( test ) , " virtio-disk0 " ,
& extent ) < 0 )
goto cleanup ;
if ( extent ! = 5256018944 ) {
virReportError ( VIR_ERR_INTERNAL_ERROR ,
" Invalid extent: %llu, expected 5256018944 " ,
extent ) ;
goto cleanup ;
}
if ( qemuMonitorJSONGetBlockExtent ( qemuMonitorTestGetMonitor ( test ) , " virtio-disk1 " ,
& extent ) < 0 )
goto cleanup ;
if ( extent ! = 0 ) {
virReportError ( VIR_ERR_INTERNAL_ERROR ,
" Invalid extent: %llu, expected 0 " ,
extent ) ;
goto cleanup ;
}
if ( qemuMonitorJSONGetBlockExtent ( qemuMonitorTestGetMonitor ( test ) , " ide0-1-0 " ,
& extent ) < 0 )
goto cleanup ;
if ( extent ! = 0 ) {
virReportError ( VIR_ERR_INTERNAL_ERROR ,
" Invalid extent: %llu, expected 0 " ,
extent ) ;
goto cleanup ;
}
ret = 0 ;
# undef CHECK
# undef CHECK0
cleanup :
qemuMonitorTestFree ( test ) ;
return ret ;
}
2013-10-02 18:01:46 +04:00
static int
testQemuMonitorJSONqemuMonitorJSONGetMigrationCacheSize ( const void * data )
{
virDomainXMLOptionPtr xmlopt = ( virDomainXMLOptionPtr ) data ;
qemuMonitorTestPtr test = qemuMonitorTestNewSimple ( true , xmlopt ) ;
int ret = - 1 ;
unsigned long long cacheSize ;
if ( ! test )
return - 1 ;
if ( qemuMonitorTestAddItem ( test , " query-migrate-cache-size " ,
" { "
" \" return \" : 67108864, "
" \" id \" : \" libvirt-12 \" "
" } " ) < 0 )
goto cleanup ;
if ( qemuMonitorJSONGetMigrationCacheSize ( qemuMonitorTestGetMonitor ( test ) ,
& cacheSize ) < 0 )
goto cleanup ;
if ( cacheSize ! = 67108864 ) {
virReportError ( VIR_ERR_INTERNAL_ERROR ,
" Invalid cacheSize: %llu, expected 67108864 " ,
cacheSize ) ;
goto cleanup ;
}
ret = 0 ;
cleanup :
qemuMonitorTestFree ( test ) ;
return ret ;
}
2013-10-02 18:43:35 +04:00
static int
testQemuMonitorJSONqemuMonitorJSONGetMigrationStatus ( const void * data )
{
virDomainXMLOptionPtr xmlopt = ( virDomainXMLOptionPtr ) data ;
qemuMonitorTestPtr test = qemuMonitorTestNewSimple ( true , xmlopt ) ;
int ret = - 1 ;
qemuMonitorMigrationStatus status , expectedStatus ;
if ( ! test )
return - 1 ;
memset ( & expectedStatus , 0 , sizeof ( expectedStatus ) ) ;
expectedStatus . status = QEMU_MONITOR_MIGRATION_STATUS_ACTIVE ;
expectedStatus . total_time = 47 ;
expectedStatus . ram_total = 1611038720 ;
expectedStatus . ram_remaining = 1605013504 ;
expectedStatus . ram_transferred = 3625548 ;
if ( qemuMonitorTestAddItem ( test , " query-migrate " ,
" { "
" \" return \" : { "
" \" status \" : \" active \" , "
" \" total-time \" : 47, "
" \" ram \" : { "
" \" total \" : 1611038720, "
" \" remaining \" : 1605013504, "
" \" transferred \" : 3625548 "
" } "
" }, "
" \" id \" : \" libvirt-13 \" "
" } " ) < 0 )
goto cleanup ;
if ( qemuMonitorJSONGetMigrationStatus ( qemuMonitorTestGetMonitor ( test ) , & status ) < 0 )
goto cleanup ;
if ( memcmp ( & status , & expectedStatus , sizeof ( status ) ) ! = 0 ) {
virReportError ( VIR_ERR_INTERNAL_ERROR , " %s " ,
" Invalid migration status " ) ;
goto cleanup ;
}
ret = 0 ;
cleanup :
qemuMonitorTestFree ( test ) ;
return ret ;
}
2012-08-20 16:31:29 +04:00
static int
mymain ( void )
{
int ret = 0 ;
2013-03-31 22:03:42 +04:00
virDomainXMLOptionPtr xmlopt ;
2013-09-18 19:28:31 +04:00
testQemuMonitorJSONSimpleFuncData simpleFunc ;
2012-08-20 16:31:29 +04:00
2013-02-23 02:28:53 +04:00
# if !WITH_YAJL
2013-02-26 20:36:27 +04:00
fputs ( " libvirt not compiled with yajl, skipping this test \n " , stderr ) ;
2013-02-23 02:28:53 +04:00
return EXIT_AM_SKIP ;
# endif
2013-02-23 02:42:39 +04:00
if ( virThreadInitialize ( ) < 0 | |
2013-03-11 13:24:29 +04:00
! ( xmlopt = virQEMUDriverCreateXMLConf ( NULL ) ) )
2013-02-23 02:42:39 +04:00
return EXIT_FAILURE ;
2012-08-20 16:31:29 +04:00
virEventRegisterDefaultImpl ( ) ;
# define DO_TEST(name) \
2013-03-31 22:03:42 +04:00
if ( virtTestRun ( # name , 1 , testQemuMonitorJSON # # name , xmlopt ) < 0 ) \
2012-08-20 16:31:29 +04:00
ret = - 1
2013-09-18 19:28:31 +04:00
# define DO_TEST_SIMPLE(CMD, FNC, ...) \
simpleFunc = ( testQemuMonitorJSONSimpleFuncData ) { . cmd = CMD , . func = FNC , \
. xmlopt = xmlopt , __VA_ARGS__ } ; \
if ( virtTestRun ( # FNC , 1 , testQemuMonitorJSONSimpleFunc , & simpleFunc ) < 0 ) \
ret = - 1
2012-08-20 16:31:29 +04:00
DO_TEST ( GetStatus ) ;
2012-08-15 18:04:09 +04:00
DO_TEST ( GetVersion ) ;
2012-08-15 19:18:41 +04:00
DO_TEST ( GetMachines ) ;
2012-08-20 18:58:20 +04:00
DO_TEST ( GetCPUDefinitions ) ;
2012-08-22 13:25:20 +04:00
DO_TEST ( GetCommands ) ;
2013-04-26 15:13:05 +04:00
DO_TEST ( GetTPMModels ) ;
2013-04-26 21:13:45 +04:00
DO_TEST ( GetCommandLineOptionParameters ) ;
2013-03-12 22:48:04 +04:00
DO_TEST ( AttachChardev ) ;
2013-03-12 22:57:48 +04:00
DO_TEST ( DetachChardev ) ;
2013-06-24 21:51:56 +04:00
DO_TEST ( GetListPaths ) ;
2013-07-03 22:15:07 +04:00
DO_TEST ( GetObjectProperty ) ;
2013-07-03 22:42:40 +04:00
DO_TEST ( SetObjectProperty ) ;
2013-07-19 17:01:38 +04:00
DO_TEST ( GetDeviceAliases ) ;
2013-09-18 17:11:06 +04:00
DO_TEST ( CPU ) ;
2013-09-18 19:28:31 +04:00
DO_TEST_SIMPLE ( " qmp_capabilities " , qemuMonitorJSONSetCapabilities ) ;
DO_TEST_SIMPLE ( " system_powerdown " , qemuMonitorSystemPowerdown ) ;
DO_TEST_SIMPLE ( " system_reset " , qemuMonitorJSONSystemReset ) ;
DO_TEST_SIMPLE ( " migrate_cancel " , qemuMonitorJSONMigrateCancel ) ;
DO_TEST_SIMPLE ( " inject-nmi " , qemuMonitorJSONInjectNMI ) ;
DO_TEST_SIMPLE ( " system_wakeup " , qemuMonitorJSONSystemWakeup ) ;
DO_TEST_SIMPLE ( " nbd-server-stop " , qemuMonitorJSONNBDServerStop ) ;
2013-10-02 14:02:53 +04:00
DO_TEST ( qemuMonitorJSONGetBalloonInfo ) ;
2013-10-02 16:39:10 +04:00
DO_TEST ( qemuMonitorJSONGetBlockInfo ) ;
2013-10-02 17:08:02 +04:00
DO_TEST ( qemuMonitorJSONGetBlockStatsInfo ) ;
2013-10-02 18:01:46 +04:00
DO_TEST ( qemuMonitorJSONGetMigrationCacheSize ) ;
2013-10-02 18:43:35 +04:00
DO_TEST ( qemuMonitorJSONGetMigrationStatus ) ;
2012-08-20 16:31:29 +04:00
2013-03-31 22:03:42 +04:00
virObjectUnref ( xmlopt ) ;
2012-08-20 16:31:29 +04:00
return ( ret = = 0 ) ? EXIT_SUCCESS : EXIT_FAILURE ;
}
VIRT_TEST_MAIN ( mymain )