]> xenbits.xensource.com Git - libvirt.git/commitdiff
virjsontest: switch AddAndRemove tests to work with files
authorJán Tomko <jtomko@redhat.com>
Fri, 1 Jun 2018 07:05:23 +0000 (09:05 +0200)
committerJán Tomko <jtomko@redhat.com>
Wed, 3 Apr 2019 12:41:07 +0000 (14:41 +0200)
Instead of using JSON in C strings, put it in separate files
for easier manipulation.

Signed-off-by: Ján Tomko <jtomko@redhat.com>
Reviewed-by: Andrea Bolognani <abologna@redhat.com>
tests/virjsondata/add-remove-failure-in.json [new file with mode: 0644]
tests/virjsondata/add-remove-success-in.json [new file with mode: 0644]
tests/virjsondata/add-remove-success-out.json [new file with mode: 0644]
tests/virjsontest.c

diff --git a/tests/virjsondata/add-remove-failure-in.json b/tests/virjsondata/add-remove-failure-in.json
new file mode 100644 (file)
index 0000000..dd26442
--- /dev/null
@@ -0,0 +1 @@
+[ 1 ]
diff --git a/tests/virjsondata/add-remove-success-in.json b/tests/virjsondata/add-remove-success-in.json
new file mode 100644 (file)
index 0000000..b8edd30
--- /dev/null
@@ -0,0 +1 @@
+{"name": "sample", "value": true}
diff --git a/tests/virjsondata/add-remove-success-out.json b/tests/virjsondata/add-remove-success-out.json
new file mode 100644 (file)
index 0000000..9f1e446
--- /dev/null
@@ -0,0 +1 @@
+{"value":true,"newname":"foo"}
index a4bd4fb07b6871cfb47f13c6ee1dd460833b38b1..f369c069ea3b3bebc1eda467d171a2b1324fa9f2 100644 (file)
@@ -68,12 +68,24 @@ static int
 testJSONAddRemove(const void *data)
 {
     const struct testInfo *info = data;
-    virJSONValuePtr json;
+    virJSONValuePtr json = NULL;
     virJSONValuePtr name = NULL;
-    char *result = NULL;
+    VIR_AUTOFREE(char *) infile = NULL;
+    VIR_AUTOFREE(char *) indata = NULL;
+    VIR_AUTOFREE(char *) outfile = NULL;
+    VIR_AUTOFREE(char *) actual = NULL;
     int ret = -1;
 
-    json = virJSONValueFromString(info->doc);
+    if (virAsprintf(&infile, "%s/virjsondata/add-remove-%s-in.json",
+                    abs_srcdir, info->name) < 0 ||
+        virAsprintf(&outfile, "%s/virjsondata/add-remove-%s-out.json",
+                    abs_srcdir, info->name) < 0)
+        goto cleanup;
+
+    if (virTestLoadFile(infile, &indata) < 0)
+        goto cleanup;
+
+    json = virJSONValueFromString(indata);
     if (!json) {
         VIR_TEST_VERBOSE("Fail to parse %s\n", info->name);
         ret = -1;
@@ -113,20 +125,18 @@ testJSONAddRemove(const void *data)
         VIR_TEST_VERBOSE("%s", "unexpected failure adding new key\n");
         goto cleanup;
     }
-    if (!(result = virJSONValueToString(json, false))) {
+    if (!(actual = virJSONValueToString(json, false))) {
         VIR_TEST_VERBOSE("%s", "failed to stringize result\n");
         goto cleanup;
     }
-    if (STRNEQ(info->expect, result)) {
-        virTestDifference(stderr, info->expect, result);
+    if (virTestCompareToFile(actual, outfile) < 0)
         goto cleanup;
-    }
+
     ret = 0;
 
  cleanup:
     virJSONValueFree(json);
     virJSONValueFree(name);
-    VIR_FREE(result);
     return ret;
 }
 
@@ -543,12 +553,8 @@ mymain(void)
                   "\"query-uuid\"},{\"name\":\"query-migrate\"},{\"name\":"
                   "\"query-balloon\"}],\"id\":\"libvirt-2\"}", NULL);
 
-    DO_TEST_FULL("add and remove", AddRemove,
-                 "{\"name\": \"sample\", \"value\": true}",
-                 "{\"value\":true,\"newname\":\"foo\"}",
-                 true);
-    DO_TEST_FULL("add and remove", AddRemove,
-                 "[ 1 ]", NULL, false);
+    DO_TEST_FULL("success", AddRemove, NULL, NULL, true);
+    DO_TEST_FULL("failure", AddRemove, NULL, NULL, false);
 
     DO_TEST_FULL("copy and free", Copy,
                  "{\"return\": [{\"name\": \"quit\"}, {\"name\": \"eject\"},"