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