2018-03-22 19:07:43 +03:00
/*
* testutilsqemuschema . h : helper functions for QEMU QAPI schema testing
*
* 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/>.
*/
2019-06-18 19:13:14 +03:00
# pragma once
2018-12-13 16:32:06 +03:00
2019-06-18 19:13:14 +03:00
# include "virhash.h"
# include "virjson.h"
# include "virbuffer.h"
2018-03-22 19:07:43 +03:00
int
testQEMUSchemaValidate ( virJSONValuePtr obj ,
virJSONValuePtr root ,
2020-10-22 20:04:18 +03:00
GHashTable * schema ,
2020-04-29 18:52:43 +03:00
bool allowDeprecated ,
2018-03-22 19:07:43 +03:00
virBufferPtr debug ) ;
2020-03-04 12:22:19 +03:00
int
testQEMUSchemaValidateCommand ( const char * command ,
virJSONValuePtr arguments ,
2020-10-22 20:04:18 +03:00
GHashTable * schema ,
2020-04-29 18:52:43 +03:00
bool allowDeprecated ,
bool allowRemoved ,
2020-03-04 12:22:19 +03:00
virBufferPtr debug ) ;
2020-08-06 20:43:51 +03:00
int
testQEMUSchemaEntryMatchTemplate ( virJSONValuePtr schemaentry ,
. . . ) ;
2018-07-09 16:44:52 +03:00
virJSONValuePtr
2020-02-21 01:01:46 +03:00
testQEMUSchemaGetLatest ( const char * arch ) ;
2018-07-09 16:44:52 +03:00
2020-10-22 20:04:18 +03:00
GHashTable *
2020-05-15 17:21:25 +03:00
testQEMUSchemaLoadLatest ( const char * arch ) ;
2020-05-15 17:32:40 +03:00
2020-10-22 20:04:18 +03:00
GHashTable *
2020-05-15 17:32:40 +03:00
testQEMUSchemaLoad ( const char * filename ) ;