aboutsummaryrefslogtreecommitdiff
path: root/jsmn_test.c
diff options
context:
space:
mode:
authorSerge A. Zaitsev <devnull@localhost>2012-02-01 17:15:54 +0200
committerSerge A. Zaitsev <devnull@localhost>2012-02-01 17:15:54 +0200
commit30f932772ecd749f43b9e9fda18626d3895e4c1c (patch)
tree1d84677568e9493346d356926068324c4e9993c4 /jsmn_test.c
parent929e2337562c21d17b4ee31b1db90ccf0fa09d8d (diff)
tested partial parser for strings, added primitive string parser test, fixed token allocation
Diffstat (limited to 'jsmn_test.c')
-rw-r--r--jsmn_test.c58
1 files changed, 58 insertions, 0 deletions
diff --git a/jsmn_test.c b/jsmn_test.c
index 6a0b3407e..b01e6c21e 100644
--- a/jsmn_test.c
+++ b/jsmn_test.c
@@ -109,6 +109,15 @@ int test_primitive() {
check(TOKEN_STIRNG(js, tok[0], "nullVar"));
check(TOKEN_STIRNG(js, tok[1], "null"));
+ return 0;
+}
+
+int test_string() {
+ int r;
+ jsmn_parser p;
+ jsmntok_t tok[10];
+ const char *js;
+
js = "\"strVar\" : \"hello world\"";
jsmn_init(&p);
r = jsmn_parse(&p, js, tok, 10);
@@ -117,12 +126,61 @@ int test_primitive() {
check(TOKEN_STIRNG(js, tok[0], "strVar"));
check(TOKEN_STIRNG(js, tok[1], "hello world"));
+ js = "\"strVar\" : \"escapes: \\/\\r\\n\\t\\b\\f\\\"\\\\\"";
+ jsmn_init(&p);
+ r = jsmn_parse(&p, js, tok, 10);
+ check(r == JSMN_SUCCESS && tok[0].type == JSMN_STRING
+ && tok[1].type == JSMN_STRING);
+ check(TOKEN_STIRNG(js, tok[0], "strVar"));
+ check(TOKEN_STIRNG(js, tok[1], "escapes: \\/\\r\\n\\t\\b\\f\\\"\\\\"));
+
+ js = "\"strVar\" : \"\"";
+ jsmn_init(&p);
+ r = jsmn_parse(&p, js, tok, 10);
+ check(r == JSMN_SUCCESS && tok[0].type == JSMN_STRING
+ && tok[1].type == JSMN_STRING);
+ check(TOKEN_STIRNG(js, tok[0], "strVar"));
+ check(TOKEN_STIRNG(js, tok[1], ""));
+
+ return 0;
+}
+
+int test_partial_string() {
+ int r;
+ jsmn_parser p;
+ jsmntok_t tok[10];
+ const char *js;
+
+ jsmn_init(&p);
+ js = "\"x\": \"va";
+ r = jsmn_parse(&p, js, tok, 10);
+ check(r == JSMN_ERROR_PART && tok[0].type == JSMN_STRING);
+ check(TOKEN_STIRNG(js, tok[0], "x"));
+ check(TOKEN_EQ(tok[1], -1, -1, 0));
+
+ js = "\"x\": \"valu";
+ r = jsmn_parse(&p, js, tok, 10);
+ check(r == JSMN_ERROR_PART && tok[0].type == JSMN_STRING);
+ check(TOKEN_STIRNG(js, tok[0], "x"));
+ check(TOKEN_EQ(tok[1], -1, -1, 0));
+
+ js = "\"x\": \"value\"";
+ r = jsmn_parse(&p, js, tok, 10);
+ check(r == JSMN_SUCCESS && tok[0].type == JSMN_STRING
+ && tok[1].type == JSMN_STRING);
+ check(TOKEN_STIRNG(js, tok[0], "x"));
+ check(TOKEN_STIRNG(js, tok[1], "value"));
+
return 0;
}
int main() {
+#if 0
test(test_simple, "general test for a simple JSON string");
test(test_primitive, "test primitive JSON data types");
+ test(test_string, "test string JSON data types");
+#endif
+ test(test_partial_string, "test partial JSON string parsing");
printf("\nPASSED: %d\nFAILED: %d\n", test_passed, test_failed);
return 0;
}