added hawk_json_feeduchars()

This commit is contained in:
2025-06-08 21:51:11 +09:00
parent 7f9ac2047f
commit 63eb61c5c0
17 changed files with 710 additions and 577 deletions

View File

@ -1,11 +1,39 @@
#include <hawk-json.h>
#include <hawk-str.h>
#include <stdio.h>
#include "tap.h"
#define OK_X(test) OK(test, #test)
static int on_json_element (hawk_json_t* json, hawk_json_inst_t inst, const hawk_oocs_t* str)
{
printf ("%d\n", inst);
static int phase = 0;
if (phase == 0) OK_X(inst == HAWK_JSON_INST_START_DIC);
if (phase == 1)
{
OK_X(inst == HAWK_JSON_INST_KEY);
OK_X(hawk_comp_oochars_bcstr(str->ptr, str->len, "hello", 0) == 0);
}
if (phase == 2)
{
OK_X(inst == HAWK_JSON_INST_STRING);
OK_X(hawk_comp_oochars_bcstr(str->ptr, str->len, "world", 0) == 0);
}
if (phase == 3)
{
OK_X(inst == HAWK_JSON_INST_KEY);
OK_X(hawk_comp_oochars_bcstr(str->ptr, str->len, "key1", 0) == 0);
}
if (phase == 4)
{
OK_X(inst == HAWK_JSON_INST_NUMBER);
OK_X(hawk_comp_oochars_bcstr(str->ptr, str->len, "12345", 0) == 0);
}
if (phase == 5) OK_X(inst == HAWK_JSON_INST_END_DIC);
phase++;
return 0;
}
@ -13,7 +41,9 @@ int main ()
{
hawk_json_t* json;
hawk_json_prim_t prim;
/* const hawk_ooch_t* TODO */
hawk_oow_t xlen;
int n;
no_plan();
prim.instcb = on_json_element;
@ -21,8 +51,10 @@ int main ()
json = hawk_json_openstd(0, &prim, HAWK_NULL);
OK (json != HAWK_NULL, "instantiation must be successful");
/* hawk_json_feed(json, "{\"hello\": \"world\"}", & TODO */
n = hawk_json_feed(json, HAWK_T("{\"hello\": \"world\", \"key1\": 12345}"), 33, &xlen);
OK_X(n == 0);
OK_X(xlen == 33);
hawk_json_close(json);
return exit_status();
}