Files
json-c/tests/test4.c

57 lines
1.2 KiB
C
Raw Normal View History

/*
* gcc -o utf8 utf8.c -I/home/y/include -L./.libs -ljson
*/
2020-03-28 10:25:00 +08:00
#include "config.h"
#include <stdio.h>
#include <string.h>
#include "json_inttypes.h"
#include "json_object.h"
#include "json_tokener.h"
2020-03-28 10:25:00 +08:00
void print_hex(const char *s)
{
const char *iter = s;
unsigned char ch;
while ((ch = *iter++) != 0)
{
2020-03-28 10:25:00 +08:00
if (',' != ch)
printf("%x ", ch);
else
2020-03-28 10:25:00 +08:00
printf(",");
}
2016-08-08 15:11:19 +02:00
putchar('\n');
}
2016-08-08 15:11:19 +02:00
int main(void)
{
const char *input = "\"\\ud840\\udd26,\\ud840\\udd27,\\ud800\\udd26,\\ud800\\udd27\"";
2020-03-28 10:25:00 +08:00
const char *expected =
"\xF0\xA0\x84\xA6,\xF0\xA0\x84\xA7,\xF0\x90\x84\xA6,\xF0\x90\x84\xA7";
struct json_object *parse_result = json_tokener_parse(input);
const char *unjson = json_object_get_string(parse_result);
printf("input: %s\n", input);
2020-03-28 10:25:00 +08:00
int strings_match = !strcmp(expected, unjson);
int retval = 0;
if (strings_match)
{
printf("JSON parse result is correct: %s\n", unjson);
2016-08-08 15:11:19 +02:00
puts("PASS");
2020-03-28 10:25:00 +08:00
}
else
{
printf("JSON parse result doesn't match expected string\n");
printf("expected string bytes: ");
2016-08-08 15:11:19 +02:00
print_hex(expected);
printf("parsed string bytes: ");
2016-08-08 15:11:19 +02:00
print_hex(unjson);
puts("FAIL");
retval = 1;
}
json_object_put(parse_result);
return retval;
}