2016-01-08 17:15:33 -06:00
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
|
|
|
|
#include "testutils.h"
|
|
|
|
#include "internal.h"
|
|
|
|
#include "virstring.h"
|
2019-12-03 06:49:04 -06:00
|
|
|
#include "conf/backup_conf.h"
|
2016-01-08 17:15:33 -06:00
|
|
|
|
|
|
|
#define VIR_FROM_THIS VIR_FROM_NONE
|
|
|
|
|
|
|
|
static virCapsPtr caps;
|
|
|
|
static virDomainXMLOptionPtr xmlopt;
|
|
|
|
|
|
|
|
struct testInfo {
|
|
|
|
const char *name;
|
|
|
|
int different;
|
|
|
|
bool inactive_only;
|
2016-04-08 12:16:12 -05:00
|
|
|
testCompareDomXML2XMLResult expectResult;
|
2016-01-08 17:15:33 -06:00
|
|
|
};
|
|
|
|
|
|
|
|
static int
|
|
|
|
testCompareXMLToXMLHelper(const void *data)
|
|
|
|
{
|
|
|
|
const struct testInfo *info = data;
|
|
|
|
char *xml_in = NULL;
|
|
|
|
char *xml_out = NULL;
|
|
|
|
int ret = -1;
|
|
|
|
|
2019-10-22 08:26:14 -05:00
|
|
|
xml_in = g_strdup_printf("%s/genericxml2xmlindata/%s.xml",
|
|
|
|
abs_srcdir, info->name);
|
|
|
|
xml_out = g_strdup_printf("%s/genericxml2xmloutdata/%s.xml",
|
|
|
|
abs_srcdir, info->name);
|
2016-01-08 17:15:33 -06:00
|
|
|
|
|
|
|
ret = testCompareDomXML2XMLFiles(caps, xmlopt, xml_in,
|
|
|
|
info->different ? xml_out : xml_in,
|
2018-03-02 09:58:50 -06:00
|
|
|
!info->inactive_only, 0,
|
2016-04-08 12:16:12 -05:00
|
|
|
info->expectResult);
|
2016-01-08 17:15:33 -06:00
|
|
|
VIR_FREE(xml_in);
|
|
|
|
VIR_FREE(xml_out);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-07-01 02:56:46 -05:00
|
|
|
struct testCompareBackupXMLData {
|
|
|
|
const char *testname;
|
|
|
|
bool internal;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2019-12-03 06:49:04 -06:00
|
|
|
static int
|
2020-07-01 02:56:46 -05:00
|
|
|
testCompareBackupXML(const void *opaque)
|
2019-12-03 06:49:04 -06:00
|
|
|
{
|
2020-07-01 02:56:46 -05:00
|
|
|
const struct testCompareBackupXMLData *data = opaque;
|
|
|
|
const char *testname = data->testname;
|
2019-12-03 06:49:04 -06:00
|
|
|
g_autofree char *xml_in = NULL;
|
|
|
|
g_autofree char *file_in = NULL;
|
|
|
|
g_autofree char *file_out = NULL;
|
|
|
|
g_autoptr(virDomainBackupDef) backup = NULL;
|
|
|
|
g_auto(virBuffer) buf = VIR_BUFFER_INITIALIZER;
|
|
|
|
g_autofree char *actual = NULL;
|
2020-07-01 02:56:46 -05:00
|
|
|
unsigned int parseFlags = 0;
|
|
|
|
|
|
|
|
if (data->internal)
|
|
|
|
parseFlags |= VIR_DOMAIN_BACKUP_PARSE_INTERNAL;
|
2019-12-03 06:49:04 -06:00
|
|
|
|
|
|
|
file_in = g_strdup_printf("%s/domainbackupxml2xmlin/%s.xml",
|
|
|
|
abs_srcdir, testname);
|
|
|
|
file_out = g_strdup_printf("%s/domainbackupxml2xmlout/%s.xml",
|
|
|
|
abs_srcdir, testname);
|
|
|
|
|
|
|
|
if (virFileReadAll(file_in, 1024 * 64, &xml_in) < 0)
|
|
|
|
return -1;
|
|
|
|
|
2020-07-01 02:56:46 -05:00
|
|
|
if (!(backup = virDomainBackupDefParseString(xml_in, xmlopt, parseFlags))) {
|
2019-12-03 06:49:04 -06:00
|
|
|
VIR_TEST_VERBOSE("failed to parse backup def '%s'", file_in);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2020-07-01 02:56:46 -05:00
|
|
|
if (virDomainBackupDefFormat(&buf, backup, data->internal) < 0) {
|
2019-12-03 06:49:04 -06:00
|
|
|
VIR_TEST_VERBOSE("failed to format backup def '%s'", file_in);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
actual = virBufferContentAndReset(&buf);
|
|
|
|
|
|
|
|
return virTestCompareToFile(actual, file_out);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-01-08 17:15:33 -06:00
|
|
|
static int
|
|
|
|
mymain(void)
|
|
|
|
{
|
|
|
|
int ret = 0;
|
|
|
|
|
|
|
|
if (!(caps = virTestGenericCapsInit()))
|
|
|
|
return EXIT_FAILURE;
|
|
|
|
|
|
|
|
if (!(xmlopt = virTestGenericDomainXMLConfInit()))
|
|
|
|
return EXIT_FAILURE;
|
|
|
|
|
2017-11-03 07:09:47 -05:00
|
|
|
#define DO_TEST_FULL(name, is_different, inactive, expectResult) \
|
|
|
|
do { \
|
|
|
|
const struct testInfo info = {name, is_different, inactive, \
|
|
|
|
expectResult}; \
|
|
|
|
if (virTestRun("GENERIC XML-2-XML " name, \
|
|
|
|
testCompareXMLToXMLHelper, &info) < 0) \
|
|
|
|
ret = -1; \
|
2016-01-08 17:15:33 -06:00
|
|
|
} while (0)
|
|
|
|
|
|
|
|
#define DO_TEST(name) \
|
2016-04-08 12:16:12 -05:00
|
|
|
DO_TEST_FULL(name, 0, false, TEST_COMPARE_DOM_XML2XML_RESULT_SUCCESS)
|
2016-01-08 17:15:33 -06:00
|
|
|
|
|
|
|
#define DO_TEST_DIFFERENT(name) \
|
2016-04-08 12:16:12 -05:00
|
|
|
DO_TEST_FULL(name, 1, false, TEST_COMPARE_DOM_XML2XML_RESULT_SUCCESS)
|
2016-01-08 17:15:33 -06:00
|
|
|
|
|
|
|
DO_TEST_DIFFERENT("disk-virtio");
|
|
|
|
|
2016-04-25 10:10:30 -05:00
|
|
|
DO_TEST_DIFFERENT("graphics-vnc-minimal");
|
|
|
|
DO_TEST_DIFFERENT("graphics-vnc-manual-port");
|
|
|
|
DO_TEST_DIFFERENT("graphics-vnc-socket");
|
|
|
|
DO_TEST_DIFFERENT("graphics-vnc-socket-listen");
|
2016-04-08 12:16:12 -05:00
|
|
|
DO_TEST_DIFFERENT("graphics-listen-back-compat");
|
|
|
|
DO_TEST_FULL("graphics-listen-back-compat-mismatch", 0, false,
|
|
|
|
TEST_COMPARE_DOM_XML2XML_RESULT_FAIL_PARSE);
|
2016-04-25 10:10:30 -05:00
|
|
|
DO_TEST_DIFFERENT("graphics-vnc-listen-attr-only");
|
|
|
|
DO_TEST_DIFFERENT("graphics-vnc-listen-element-minimal");
|
|
|
|
DO_TEST_DIFFERENT("graphics-vnc-listen-element-with-address");
|
2016-06-08 08:18:25 -05:00
|
|
|
DO_TEST_DIFFERENT("graphics-vnc-socket-attr-listen-address");
|
|
|
|
DO_TEST_DIFFERENT("graphics-vnc-socket-attr-listen-socket");
|
|
|
|
DO_TEST_FULL("graphics-vnc-socket-attr-listen-socket-mismatch", 0, false,
|
|
|
|
TEST_COMPARE_DOM_XML2XML_RESULT_FAIL_PARSE);
|
2017-01-25 10:42:07 -06:00
|
|
|
DO_TEST("graphics-vnc-autoport-no");
|
2016-04-08 12:16:12 -05:00
|
|
|
|
2016-06-23 08:13:49 -05:00
|
|
|
DO_TEST_FULL("name-slash-fail", 0, false,
|
2016-04-26 10:23:12 -05:00
|
|
|
TEST_COMPARE_DOM_XML2XML_RESULT_FAIL_PARSE);
|
|
|
|
|
2016-06-15 09:33:20 -05:00
|
|
|
DO_TEST("perf");
|
|
|
|
|
2016-08-02 10:58:43 -05:00
|
|
|
DO_TEST("vcpus-individual");
|
2017-04-24 08:56:31 -05:00
|
|
|
DO_TEST("disk-network-http");
|
2016-08-02 10:58:43 -05:00
|
|
|
|
2017-04-24 08:40:07 -05:00
|
|
|
DO_TEST("cpu-cache-emulate");
|
|
|
|
DO_TEST("cpu-cache-passthrough");
|
|
|
|
DO_TEST("cpu-cache-disable");
|
|
|
|
|
2017-08-17 05:45:48 -05:00
|
|
|
DO_TEST_DIFFERENT("chardev-tcp");
|
|
|
|
DO_TEST_FULL("chardev-tcp-missing-host", 0, false,
|
|
|
|
TEST_COMPARE_DOM_XML2XML_RESULT_FAIL_PARSE);
|
|
|
|
DO_TEST_FULL("chardev-tcp-missing-service", 0, false,
|
|
|
|
TEST_COMPARE_DOM_XML2XML_RESULT_FAIL_PARSE);
|
2017-08-18 10:14:34 -05:00
|
|
|
DO_TEST_FULL("chardev-tcp-multiple-source", 0, false,
|
|
|
|
TEST_COMPARE_DOM_XML2XML_RESULT_FAIL_PARSE);
|
2017-08-17 07:26:36 -05:00
|
|
|
DO_TEST_DIFFERENT("chardev-udp");
|
|
|
|
DO_TEST_FULL("chardev-udp-missing-connect-service", 0, false,
|
|
|
|
TEST_COMPARE_DOM_XML2XML_RESULT_FAIL_PARSE);
|
2017-08-18 10:14:34 -05:00
|
|
|
DO_TEST_FULL("chardev-udp-multiple-source", 0, false,
|
|
|
|
TEST_COMPARE_DOM_XML2XML_RESULT_FAIL_PARSE);
|
2017-08-17 07:55:11 -05:00
|
|
|
DO_TEST_DIFFERENT("chardev-unix");
|
|
|
|
DO_TEST_FULL("chardev-unix-smartcard-missing-path", 0, false,
|
|
|
|
TEST_COMPARE_DOM_XML2XML_RESULT_FAIL_PARSE);
|
|
|
|
DO_TEST_FULL("chardev-unix-redirdev-missing-path", 0, false,
|
|
|
|
TEST_COMPARE_DOM_XML2XML_RESULT_FAIL_PARSE);
|
|
|
|
DO_TEST_FULL("chardev-unix-rng-missing-path", 0, false,
|
|
|
|
TEST_COMPARE_DOM_XML2XML_RESULT_FAIL_PARSE);
|
2017-08-23 10:48:14 -05:00
|
|
|
DO_TEST_DIFFERENT("chardev-reconnect");
|
|
|
|
DO_TEST_FULL("chardev-reconnect-missing-timeout", 0, false,
|
|
|
|
TEST_COMPARE_DOM_XML2XML_RESULT_FAIL_PARSE);
|
|
|
|
DO_TEST_FULL("chardev-reconnect-invalid-mode", 0, false,
|
|
|
|
TEST_COMPARE_DOM_XML2XML_RESULT_FAIL_PARSE);
|
2017-08-17 05:45:48 -05:00
|
|
|
|
2017-11-10 07:47:05 -06:00
|
|
|
DO_TEST("cachetune-small");
|
|
|
|
DO_TEST("cachetune-cdp");
|
2019-11-13 11:08:21 -06:00
|
|
|
DO_TEST_DIFFERENT("cachetune");
|
2018-02-01 07:36:09 -06:00
|
|
|
DO_TEST_DIFFERENT("cachetune-extra-tunes");
|
2017-11-10 07:47:05 -06:00
|
|
|
DO_TEST_FULL("cachetune-colliding-allocs", false, true,
|
|
|
|
TEST_COMPARE_DOM_XML2XML_RESULT_FAIL_PARSE);
|
|
|
|
DO_TEST_FULL("cachetune-colliding-tunes", false, true,
|
|
|
|
TEST_COMPARE_DOM_XML2XML_RESULT_FAIL_PARSE);
|
|
|
|
DO_TEST_FULL("cachetune-colliding-types", false, true,
|
|
|
|
TEST_COMPARE_DOM_XML2XML_RESULT_FAIL_PARSE);
|
2018-11-12 07:31:44 -06:00
|
|
|
DO_TEST_FULL("cachetune-colliding-monitor", false, true,
|
|
|
|
TEST_COMPARE_DOM_XML2XML_RESULT_FAIL_PARSE);
|
2019-12-13 09:34:10 -06:00
|
|
|
DO_TEST_DIFFERENT("memorytune");
|
2018-07-29 22:12:39 -05:00
|
|
|
DO_TEST_FULL("memorytune-colliding-allocs", false, true,
|
|
|
|
TEST_COMPARE_DOM_XML2XML_RESULT_FAIL_PARSE);
|
|
|
|
DO_TEST_FULL("memorytune-colliding-cachetune", false, true,
|
|
|
|
TEST_COMPARE_DOM_XML2XML_RESULT_FAIL_PARSE);
|
2017-11-10 07:47:05 -06:00
|
|
|
|
2018-05-10 14:32:26 -05:00
|
|
|
DO_TEST("tseg");
|
|
|
|
|
2018-06-08 09:40:56 -05:00
|
|
|
DO_TEST("launch-security-sev");
|
|
|
|
|
2019-04-15 03:45:38 -05:00
|
|
|
DO_TEST_DIFFERENT("cputune");
|
|
|
|
|
2020-07-01 02:56:46 -05:00
|
|
|
#define DO_TEST_BACKUP_FULL(name, intrnl) \
|
|
|
|
do { \
|
|
|
|
const struct testCompareBackupXMLData data = { .testname = name, \
|
|
|
|
.internal = intrnl }; \
|
|
|
|
if (virTestRun("QEMU BACKUP XML-2-XML " name, testCompareBackupXML, &data) < 0) \
|
|
|
|
ret = -1; \
|
|
|
|
} while (false)
|
|
|
|
|
2019-12-03 06:49:04 -06:00
|
|
|
#define DO_TEST_BACKUP(name) \
|
2020-07-01 02:56:46 -05:00
|
|
|
DO_TEST_BACKUP_FULL(name, false)
|
2019-12-03 06:49:04 -06:00
|
|
|
|
|
|
|
DO_TEST_BACKUP("empty");
|
|
|
|
DO_TEST_BACKUP("backup-pull");
|
|
|
|
DO_TEST_BACKUP("backup-pull-seclabel");
|
2020-04-09 08:50:40 -05:00
|
|
|
DO_TEST_BACKUP("backup-pull-encrypted");
|
2019-12-03 06:49:04 -06:00
|
|
|
DO_TEST_BACKUP("backup-push");
|
|
|
|
DO_TEST_BACKUP("backup-push-seclabel");
|
2020-04-09 08:50:40 -05:00
|
|
|
DO_TEST_BACKUP("backup-push-encrypted");
|
|
|
|
|
2019-12-03 06:49:04 -06:00
|
|
|
|
2016-01-08 17:15:33 -06:00
|
|
|
virObjectUnref(caps);
|
|
|
|
virObjectUnref(xmlopt);
|
|
|
|
|
|
|
|
return ret == 0 ? EXIT_SUCCESS : EXIT_FAILURE;
|
|
|
|
}
|
|
|
|
|
2017-03-29 09:45:42 -05:00
|
|
|
VIR_TEST_MAIN(mymain)
|