[libvirt] [PATCH v3 1/2] tests: virjson: Test parsing and formatting of strings with escaped chars

Peter Krempa pkrempa at redhat.com
Wed Jul 19 14:17:48 UTC 2017


Make sure that JSON strings can contain characters which need to be
escaped (double quotes, backslashes, tabs, etc.).
---
 tests/virjsontest.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/tests/virjsontest.c b/tests/virjsontest.c
index a6e158179..d5a823431 100644
--- a/tests/virjsontest.c
+++ b/tests/virjsontest.c
@@ -490,6 +490,10 @@ mymain(void)
     DO_TEST_PARSE("integer", "1", NULL);
     DO_TEST_PARSE("boolean", "true", NULL);
     DO_TEST_PARSE("null", "null", NULL);
+
+    DO_TEST_PARSE("escaping symbols", "[\"\\\"\\t\\n\\\\\"]", NULL);
+    DO_TEST_PARSE("escaped strings", "[\"{\\\"blurb\\\":\\\"test\\\"}\"]", NULL);
+
     DO_TEST_PARSE_FAIL("incomplete keyword", "tr");
     DO_TEST_PARSE_FAIL("overdone keyword", "[ truest ]");
     DO_TEST_PARSE_FAIL("unknown keyword", "huh");
-- 
2.13.2




More information about the libvir-list mailing list