2018-11-12 12:33:01 +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 , see
* < http : //www.gnu.org/licenses/>.
*/
# include <config.h>
# include "testutils.h"
# define LIBVIRT_VIRERRORPRIV_H_ALLOW
# include "virerrorpriv.h"
# undef LIBVIRT_VIRERRORPRIV_H_ALLOW
static int
virErrorTestMsgFormatInfoOne ( const char * msg )
{
bool found = false ;
char * next ;
int ret = 0 ;
for ( next = ( char * ) msg ; ( next = strchr ( next , ' % ' ) ) ; next + + ) {
if ( next [ 1 ] ! = ' s ' ) {
2019-05-03 11:45:58 +03:00
VIR_TEST_VERBOSE ( " \n error message '%s' contains disallowed printf modifiers " , msg ) ;
2018-11-12 12:33:01 +03:00
ret = - 1 ;
} else {
if ( found ) {
2019-05-03 11:45:58 +03:00
VIR_TEST_VERBOSE ( " \n error message '%s' contains multiple %%s modifiers " , msg ) ;
2018-11-12 12:33:01 +03:00
ret = - 1 ;
} else {
found = true ;
}
}
}
if ( ! found ) {
2019-05-03 11:45:58 +03:00
VIR_TEST_VERBOSE ( " \n error message '%s' does not contain any %%s modifiers " , msg ) ;
2018-11-12 12:33:01 +03:00
ret = - 1 ;
}
return ret ;
}
static int
2019-10-14 15:45:03 +03:00
virErrorTestMsgs ( const void * opaque G_GNUC_UNUSED )
2018-11-12 12:33:01 +03:00
{
const char * err_noinfo ;
const char * err_info ;
size_t i ;
int ret = 0 ;
for ( i = 1 ; i < VIR_ERR_NUMBER_LAST ; i + + ) {
err_noinfo = virErrorMsg ( i , NULL ) ;
err_info = virErrorMsg ( i , " " ) ;
if ( ! err_noinfo ) {
2019-05-03 11:45:58 +03:00
VIR_TEST_VERBOSE ( " \n missing string without info for error id %zu " , i ) ;
2018-11-12 12:33:01 +03:00
ret = - 1 ;
}
if ( ! err_info ) {
2019-05-03 11:45:58 +03:00
VIR_TEST_VERBOSE ( " \n missing string with info for error id %zu " , i ) ;
2018-11-12 12:33:01 +03:00
ret = - 1 ;
}
2018-12-17 15:02:26 +03:00
if ( err_noinfo & & strchr ( err_noinfo , ' % ' ) ) {
2019-05-03 11:45:58 +03:00
VIR_TEST_VERBOSE ( " \n error message id %zu contains formatting characters: '%s' " ,
2018-11-12 12:33:01 +03:00
i , err_noinfo ) ;
ret = - 1 ;
}
2018-12-17 15:02:26 +03:00
if ( err_info & & virErrorTestMsgFormatInfoOne ( err_info ) < 0 )
2018-11-12 12:33:01 +03:00
ret = - 1 ;
}
return ret ;
}
static int
mymain ( void )
{
int ret = 0 ;
if ( virTestRun ( " error message strings " , virErrorTestMsgs , NULL ) < 0 )
ret = - 1 ;
return ret = = 0 ? EXIT_SUCCESS : EXIT_FAILURE ;
}
VIR_TEST_MAIN ( mymain )