You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

36 lines
960 B

/*===
*** test_encode (duk_safe_call)
hex encode: 666f6f
top after: 2
==> rc=0, result='undefined'
*** test_decode (duk_safe_call)
hex decode: test string
top after: 2
==> rc=0, result='undefined'
===*/
static int test_encode(duk_context *ctx) {
duk_set_top(ctx, 0);
duk_push_string(ctx, "foo");
duk_push_int(ctx, 123); /* dummy */
printf("hex encode: %s\n", duk_hex_encode(ctx, -2));
printf("top after: %ld\n", (long) duk_get_top(ctx)); /* value + dummy */
return 0;
}
static int test_decode(duk_context *ctx) {
duk_set_top(ctx, 0);
duk_push_string(ctx, "7465737420737472696e67");
duk_push_int(ctx, 321); /* dummy */
duk_hex_decode(ctx, -2); /* buffer */
printf("hex decode: %s\n", duk_to_string(ctx, -2));
printf("top after: %ld\n", (long) duk_get_top(ctx)); /* value + dummy */
duk_set_top(ctx, 0);
return 0;
}
void test(duk_context *ctx) {
TEST_SAFE_CALL(test_encode);
TEST_SAFE_CALL(test_decode);
/* FIXME: test decode error */
}