Files
json-c/tests/test_charcase.c

43 lines
771 B
C
Raw Permalink Normal View History

2020-03-28 10:25:00 +08:00
#include <assert.h>
#include <stddef.h>
2014-02-12 09:51:51 +00:00
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "json.h"
#include "json_tokener.h"
static void test_case_parse(void);
int main(int argc, char **argv)
{
MC_SET_DEBUG(1);
test_case_parse();
return 0;
2014-02-12 09:51:51 +00:00
}
/* make sure only lowercase forms are parsed in strict mode */
static void test_case_parse()
{
struct json_tokener *tok;
json_object *new_obj;
tok = json_tokener_new();
json_tokener_set_flags(tok, JSON_TOKENER_STRICT);
new_obj = json_tokener_parse_ex(tok, "True", 4);
2020-03-28 10:25:00 +08:00
assert(new_obj == NULL);
2014-02-12 09:51:51 +00:00
new_obj = json_tokener_parse_ex(tok, "False", 5);
2020-03-28 10:25:00 +08:00
assert(new_obj == NULL);
2014-02-12 09:51:51 +00:00
new_obj = json_tokener_parse_ex(tok, "Null", 4);
2020-03-28 10:25:00 +08:00
assert(new_obj == NULL);
2014-02-12 09:51:51 +00:00
printf("OK\n");
2014-08-26 14:48:59 +02:00
2014-02-12 09:51:51 +00:00
json_tokener_free(tok);
}