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.

48 lines
1.1 KiB

/*===
*** test_1 (duk_safe_call)
boolean: 1
boolean: 0
==> rc=0, result='undefined'
*** test_2 (duk_safe_call)
==> rc=1, result='TypeError: not boolean'
*** test_3 (duk_safe_call)
==> rc=1, result='TypeError: not boolean'
*** test_4 (duk_safe_call)
==> rc=1, result='TypeError: not boolean'
===*/
static duk_ret_t test_1(duk_context *ctx) {
duk_set_top(ctx, 0);
duk_push_true(ctx);
duk_push_false(ctx);
printf("boolean: %d\n", (int) duk_require_boolean(ctx, 0));
printf("boolean: %d\n", (int) duk_require_boolean(ctx, 1));
return 0;
}
static duk_ret_t test_2(duk_context *ctx) {
duk_set_top(ctx, 0);
duk_push_null(ctx);
printf("boolean: %d\n", (int) duk_require_boolean(ctx, 0));
return 0;
}
static duk_ret_t test_3(duk_context *ctx) {
duk_set_top(ctx, 0);
printf("boolean: %d\n", (int) duk_require_boolean(ctx, 0));
return 0;
}
static duk_ret_t test_4(duk_context *ctx) {
duk_set_top(ctx, 0);
printf("boolean: %d\n", (int) duk_require_boolean(ctx, DUK_INVALID_INDEX));
return 0;
}
void test(duk_context *ctx) {
TEST_SAFE_CALL(test_1);
TEST_SAFE_CALL(test_2);
TEST_SAFE_CALL(test_3);
TEST_SAFE_CALL(test_4);
}