2009-10-08 17:26:30 -04:00
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
#include <unistd.h>
|
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
#include <fcntl.h>
|
|
|
|
|
|
|
|
|
|
#include "internal.h"
|
|
|
|
|
#include "testutils.h"
|
|
|
|
|
#include "storage_conf.h"
|
|
|
|
|
#include "testutilsqemu.h"
|
2013-04-03 12:36:23 +02:00
|
|
|
#include "virstring.h"
|
2009-10-08 17:26:30 -04:00
|
|
|
|
2013-06-07 17:10:28 +02:00
|
|
|
#define VIR_FROM_THIS VIR_FROM_NONE
|
|
|
|
|
|
2011-04-25 00:25:10 +02:00
|
|
|
static int
|
|
|
|
|
testCompareXMLToXMLFiles(const char *inxml, const char *outxml)
|
|
|
|
|
{
|
2009-10-08 17:26:30 -04:00
|
|
|
char *actual = NULL;
|
|
|
|
|
int ret = -1;
|
|
|
|
|
virStoragePoolDefPtr dev = NULL;
|
|
|
|
|
|
2015-04-23 11:10:15 -04:00
|
|
|
if (!(dev = virStoragePoolDefParseFile(inxml)))
|
2009-10-08 17:26:30 -04:00
|
|
|
goto fail;
|
|
|
|
|
|
2010-02-10 11:42:56 +00:00
|
|
|
if (!(actual = virStoragePoolDefFormat(dev)))
|
2009-10-08 17:26:30 -04:00
|
|
|
goto fail;
|
|
|
|
|
|
2016-05-26 17:01:53 +02:00
|
|
|
if (virTestCompareToFile(actual, outxml) < 0)
|
2009-10-08 17:26:30 -04:00
|
|
|
goto fail;
|
|
|
|
|
|
|
|
|
|
ret = 0;
|
|
|
|
|
|
|
|
|
|
fail:
|
2012-02-02 16:16:43 -07:00
|
|
|
VIR_FREE(actual);
|
2009-10-08 17:26:30 -04:00
|
|
|
virStoragePoolDefFree(dev);
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|
2011-04-25 00:25:10 +02:00
|
|
|
static int
|
|
|
|
|
testCompareXMLToXMLHelper(const void *data)
|
|
|
|
|
{
|
|
|
|
|
int result = -1;
|
|
|
|
|
char *inxml = NULL;
|
|
|
|
|
char *outxml = NULL;
|
|
|
|
|
|
|
|
|
|
if (virAsprintf(&inxml, "%s/storagepoolxml2xmlin/%s.xml",
|
|
|
|
|
abs_srcdir, (const char*)data) < 0 ||
|
|
|
|
|
virAsprintf(&outxml, "%s/storagepoolxml2xmlout/%s.xml",
|
|
|
|
|
abs_srcdir, (const char*)data) < 0) {
|
|
|
|
|
goto cleanup;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
result = testCompareXMLToXMLFiles(inxml, outxml);
|
2009-10-08 17:26:30 -04:00
|
|
|
|
2014-03-25 07:53:44 +01:00
|
|
|
cleanup:
|
2012-02-02 16:16:43 -07:00
|
|
|
VIR_FREE(inxml);
|
|
|
|
|
VIR_FREE(outxml);
|
2011-04-25 00:25:10 +02:00
|
|
|
|
|
|
|
|
return result;
|
|
|
|
|
}
|
2009-10-08 17:26:30 -04:00
|
|
|
|
|
|
|
|
static int
|
2011-04-29 10:21:20 -06:00
|
|
|
mymain(void)
|
2009-10-08 17:26:30 -04:00
|
|
|
{
|
|
|
|
|
int ret = 0;
|
|
|
|
|
|
2013-09-20 19:13:35 +01:00
|
|
|
#define DO_TEST(name) \
|
2016-05-26 17:01:50 +02:00
|
|
|
if (virTestRun("Storage Pool XML-2-XML " name, \
|
|
|
|
|
testCompareXMLToXMLHelper, (name)) < 0) \
|
2009-10-08 17:26:30 -04:00
|
|
|
ret = -1
|
|
|
|
|
|
|
|
|
|
DO_TEST("pool-dir");
|
2013-11-20 17:04:05 -07:00
|
|
|
DO_TEST("pool-dir-naming");
|
2009-10-08 17:26:30 -04:00
|
|
|
DO_TEST("pool-fs");
|
|
|
|
|
DO_TEST("pool-logical");
|
2013-04-30 13:48:46 +02:00
|
|
|
DO_TEST("pool-logical-nopath");
|
2009-10-08 17:26:30 -04:00
|
|
|
DO_TEST("pool-logical-create");
|
2017-03-28 15:11:52 +02:00
|
|
|
DO_TEST("pool-logical-noname");
|
2009-10-08 17:26:30 -04:00
|
|
|
DO_TEST("pool-disk");
|
2016-01-07 06:57:28 -05:00
|
|
|
DO_TEST("pool-disk-device-nopartsep");
|
2009-10-08 17:26:30 -04:00
|
|
|
DO_TEST("pool-iscsi");
|
|
|
|
|
DO_TEST("pool-iscsi-auth");
|
|
|
|
|
DO_TEST("pool-netfs");
|
2013-11-12 16:35:36 -07:00
|
|
|
DO_TEST("pool-netfs-gluster");
|
2015-06-03 11:43:00 -04:00
|
|
|
DO_TEST("pool-netfs-cifs");
|
2009-10-08 17:26:30 -04:00
|
|
|
DO_TEST("pool-scsi");
|
2013-03-26 00:43:36 +08:00
|
|
|
DO_TEST("pool-scsi-type-scsi-host");
|
|
|
|
|
DO_TEST("pool-scsi-type-fc-host");
|
2014-11-10 11:19:51 -05:00
|
|
|
DO_TEST("pool-scsi-type-fc-host-managed");
|
2009-10-08 17:26:30 -04:00
|
|
|
DO_TEST("pool-mpath");
|
2010-06-07 16:47:37 -04:00
|
|
|
DO_TEST("pool-iscsi-multiiqn");
|
2010-08-17 12:44:27 -05:00
|
|
|
DO_TEST("pool-iscsi-vendor-product");
|
2012-07-18 20:06:58 +01:00
|
|
|
DO_TEST("pool-sheepdog");
|
2013-10-15 17:06:18 -06:00
|
|
|
DO_TEST("pool-gluster");
|
|
|
|
|
DO_TEST("pool-gluster-sub");
|
2014-03-03 22:15:13 -05:00
|
|
|
DO_TEST("pool-scsi-type-scsi-host-stable");
|
2014-09-07 18:01:34 +04:00
|
|
|
DO_TEST("pool-zfs");
|
|
|
|
|
DO_TEST("pool-zfs-sourcedev");
|
2016-03-11 17:50:54 +01:00
|
|
|
DO_TEST("pool-rbd");
|
2017-01-17 17:10:59 +03:00
|
|
|
DO_TEST("pool-vstorage");
|
2009-10-08 17:26:30 -04:00
|
|
|
|
2014-03-17 10:38:38 +01:00
|
|
|
return ret == 0 ? EXIT_SUCCESS : EXIT_FAILURE;
|
2009-10-08 17:26:30 -04:00
|
|
|
}
|
|
|
|
|
|
2017-03-29 16:45:42 +02:00
|
|
|
VIR_TEST_MAIN(mymain)
|