109 lines
3.5 KiB
Diff
109 lines
3.5 KiB
Diff
From 239d3cf97ced74198ce100212e9ca2c39835b07a Mon Sep 17 00:00:00 2001
|
|
From: Markus Armbruster <armbru@redhat.com>
|
|
Date: Mon, 18 Jun 2018 08:43:26 +0200
|
|
Subject: [PATCH 028/268] check-block-qdict: Rename qdict_flatten()'s variables
|
|
for clarity
|
|
|
|
RH-Author: Markus Armbruster <armbru@redhat.com>
|
|
Message-id: <20180618084330.30009-20-armbru@redhat.com>
|
|
Patchwork-id: 80721
|
|
O-Subject: [RHEL-7.6 qemu-kvm-rhev PATCH 19/23] check-block-qdict: Rename qdict_flatten()'s variables for clarity
|
|
Bugzilla: 1557995
|
|
RH-Acked-by: Max Reitz <mreitz@redhat.com>
|
|
RH-Acked-by: Jeffrey Cody <jcody@redhat.com>
|
|
RH-Acked-by: Kevin Wolf <kwolf@redhat.com>
|
|
|
|
Signed-off-by: Markus Armbruster <armbru@redhat.com>
|
|
Reviewed-by: Kevin Wolf <kwolf@redhat.com>
|
|
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
|
|
(cherry picked from commit cddec036830ada5d5d45023bcfba09015b8ab394)
|
|
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
|
|
---
|
|
tests/check-block-qdict.c | 57 ++++++++++++++++++++++++-----------------------
|
|
1 file changed, 29 insertions(+), 28 deletions(-)
|
|
|
|
diff --git a/tests/check-block-qdict.c b/tests/check-block-qdict.c
|
|
index 5b9f4d5..29f58a2 100644
|
|
--- a/tests/check-block-qdict.c
|
|
+++ b/tests/check-block-qdict.c
|
|
@@ -37,11 +37,11 @@ static void qdict_defaults_test(void)
|
|
|
|
static void qdict_flatten_test(void)
|
|
{
|
|
- QList *list1 = qlist_new();
|
|
- QList *list2 = qlist_new();
|
|
- QDict *dict1 = qdict_new();
|
|
- QDict *dict2 = qdict_new();
|
|
- QDict *dict3 = qdict_new();
|
|
+ QList *e_1 = qlist_new();
|
|
+ QList *e = qlist_new();
|
|
+ QDict *e_1_2 = qdict_new();
|
|
+ QDict *f = qdict_new();
|
|
+ QDict *root = qdict_new();
|
|
|
|
/*
|
|
* Test the flattening of
|
|
@@ -79,35 +79,36 @@ static void qdict_flatten_test(void)
|
|
* }
|
|
*/
|
|
|
|
- qdict_put_int(dict1, "a", 0);
|
|
- qdict_put_int(dict1, "b", 1);
|
|
+ qdict_put_int(e_1_2, "a", 0);
|
|
+ qdict_put_int(e_1_2, "b", 1);
|
|
|
|
- qlist_append_int(list1, 23);
|
|
- qlist_append_int(list1, 66);
|
|
- qlist_append(list1, dict1);
|
|
- qlist_append_int(list2, 42);
|
|
- qlist_append(list2, list1);
|
|
+ qlist_append_int(e_1, 23);
|
|
+ qlist_append_int(e_1, 66);
|
|
+ qlist_append(e_1, e_1_2);
|
|
+ qlist_append_int(e, 42);
|
|
+ qlist_append(e, e_1);
|
|
|
|
- qdict_put_int(dict2, "c", 2);
|
|
- qdict_put_int(dict2, "d", 3);
|
|
- qdict_put(dict3, "e", list2);
|
|
- qdict_put(dict3, "f", dict2);
|
|
- qdict_put_int(dict3, "g", 4);
|
|
+ qdict_put_int(f, "c", 2);
|
|
+ qdict_put_int(f, "d", 3);
|
|
|
|
- qdict_flatten(dict3);
|
|
+ qdict_put(root, "e", e);
|
|
+ qdict_put(root, "f", f);
|
|
+ qdict_put_int(root, "g", 4);
|
|
|
|
- g_assert(qdict_get_int(dict3, "e.0") == 42);
|
|
- g_assert(qdict_get_int(dict3, "e.1.0") == 23);
|
|
- g_assert(qdict_get_int(dict3, "e.1.1") == 66);
|
|
- g_assert(qdict_get_int(dict3, "e.1.2.a") == 0);
|
|
- g_assert(qdict_get_int(dict3, "e.1.2.b") == 1);
|
|
- g_assert(qdict_get_int(dict3, "f.c") == 2);
|
|
- g_assert(qdict_get_int(dict3, "f.d") == 3);
|
|
- g_assert(qdict_get_int(dict3, "g") == 4);
|
|
+ qdict_flatten(root);
|
|
|
|
- g_assert(qdict_size(dict3) == 8);
|
|
+ g_assert(qdict_get_int(root, "e.0") == 42);
|
|
+ g_assert(qdict_get_int(root, "e.1.0") == 23);
|
|
+ g_assert(qdict_get_int(root, "e.1.1") == 66);
|
|
+ g_assert(qdict_get_int(root, "e.1.2.a") == 0);
|
|
+ g_assert(qdict_get_int(root, "e.1.2.b") == 1);
|
|
+ g_assert(qdict_get_int(root, "f.c") == 2);
|
|
+ g_assert(qdict_get_int(root, "f.d") == 3);
|
|
+ g_assert(qdict_get_int(root, "g") == 4);
|
|
|
|
- qobject_unref(dict3);
|
|
+ g_assert(qdict_size(root) == 8);
|
|
+
|
|
+ qobject_unref(root);
|
|
}
|
|
|
|
static void qdict_array_split_test(void)
|
|
--
|
|
1.8.3.1
|
|
|