* [PATCH v2 9/9] unit: add test for nested arrays
@ 2022-01-06 19:50 James Prestwood
0 siblings, 0 replies; only message in thread
From: James Prestwood @ 2022-01-06 19:50 UTC (permalink / raw)
To: iwd
[-- Attachment #1: Type: text/plain, Size: 1746 bytes --]
---
unit/test-json.c | 46 ++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 46 insertions(+)
diff --git a/unit/test-json.c b/unit/test-json.c
index 52e3f675..3d7e690b 100644
--- a/unit/test-json.c
+++ b/unit/test-json.c
@@ -424,6 +424,51 @@ static void test_json_arrays(const void *data)
json_contents_free(c);
}
+static void test_json_nested_arrays(const void *data)
+{
+ char json[] = "{\"array\":[[], {}, [1, 2], {\"key\":\"value\"}]}";
+ int count = 0;
+ struct json_iter iter;
+ struct json_iter array;
+ struct json_iter inner;
+ struct json_contents *c = json_contents_new(json, strlen(json));
+
+ json_iter_init(&iter, c);
+ assert(json_iter_parse(&iter,
+ JSON_MANDATORY("array", JSON_ARRAY, &array),
+ JSON_UNDEFINED));
+
+ while (json_iter_next(&array)) {
+ int count2 = 0;
+
+ assert(json_iter_get_container(&array, &inner));
+
+ while (json_iter_next(&inner))
+ count2++;
+
+ /*
+ * TODO: add checks for object iteration. Currently these will
+ * just count all tokens in the object.
+ */
+ switch (count) {
+ case 0:
+ assert(count2 == 0);
+ break;
+ case 2:
+ assert(count2 == 2);
+ break;
+ default:
+ break;
+ }
+
+ count++;
+ }
+
+ assert(count == 4);
+
+ json_contents_free(c);
+}
+
int main(int argc, char *argv[])
{
l_test_init(&argc, &argv);
@@ -436,6 +481,7 @@ int main(int argc, char *argv[])
l_test_add("json larger object", test_json_larger_object, NULL);
l_test_add("json test primitives", test_json_primitives, NULL);
l_test_add("json test arrays", test_json_arrays, NULL);
+ l_test_add("json test nested arrays", test_json_nested_arrays, NULL);
return l_test_run();
}
--
2.31.1
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2022-01-06 19:50 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-01-06 19:50 [PATCH v2 9/9] unit: add test for nested arrays James Prestwood
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox