mirror of https://github.com/svaarala/duktape.git
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.
273 lines
5.9 KiB
273 lines
5.9 KiB
/*===
|
|
*** test_1a (duk_safe_call)
|
|
obj.foo -> rc=1
|
|
obj.nonexistent -> rc=0
|
|
obj[123] -> rc=1
|
|
arr.nonexistent -> rc=0
|
|
arr[2] -> rc=1
|
|
arr.length -> rc=1
|
|
final top: 3
|
|
==> rc=0, result='undefined'
|
|
*** test_1b (duk_safe_call)
|
|
==> rc=1, result='Error: index out of bounds'
|
|
*** test_1c (duk_safe_call)
|
|
==> rc=1, result='Error: index out of bounds'
|
|
*** test_1d (duk_safe_call)
|
|
==> rc=1, result='TypeError: invalid base reference for property existence check'
|
|
*** test_1e (duk_safe_call)
|
|
==> rc=1, result='TypeError: invalid base reference for property existence check'
|
|
*** test_2a (duk_safe_call)
|
|
obj.foo -> rc=1
|
|
obj.nonexistent -> rc=0
|
|
obj['123'] -> rc=1
|
|
arr.nonexistent -> rc=0
|
|
arr['2'] -> rc=1
|
|
arr.length -> rc=1
|
|
final top: 3
|
|
==> rc=0, result='undefined'
|
|
*** test_2b (duk_safe_call)
|
|
==> rc=1, result='Error: invalid index: 234'
|
|
*** test_2c (duk_safe_call)
|
|
==> rc=1, result='Error: invalid index: -2147483648'
|
|
*** test_3a (duk_safe_call)
|
|
obj[31337] -> rc=0
|
|
obj[123] -> rc=1
|
|
arr[31337] -> rc=0
|
|
arr[2] -> rc=1
|
|
final top: 3
|
|
==> rc=0, result='undefined'
|
|
*** test_3b (duk_safe_call)
|
|
==> rc=1, result='Error: invalid index: 234'
|
|
*** test_3c (duk_safe_call)
|
|
==> rc=1, result='Error: invalid index: -2147483648'
|
|
===*/
|
|
|
|
void prep(duk_context *ctx) {
|
|
duk_set_top(ctx, 0);
|
|
|
|
/* 0: object with both string and number keys */
|
|
duk_push_string(ctx, "{\"foo\": \"fooval\", \"bar\": \"barval\", \"123\": \"123val\"}");
|
|
(void) duk_json_decode(ctx, -1);
|
|
|
|
/* 1: array with 3 elements */
|
|
duk_push_string(ctx, "[ \"foo\", \"bar\", \"quux\" ]");
|
|
(void) duk_json_decode(ctx, -1);
|
|
|
|
/* 2: plain string */
|
|
duk_push_string(ctx, "test_string");
|
|
}
|
|
|
|
/* duk_has_prop(), success cases */
|
|
int test_1a(duk_context *ctx) {
|
|
int rc;
|
|
|
|
prep(ctx);
|
|
|
|
duk_push_string(ctx, "foo");
|
|
rc = duk_has_prop(ctx, 0);
|
|
printf("obj.foo -> rc=%d\n", rc);
|
|
|
|
duk_push_string(ctx, "nonexistent");
|
|
rc = duk_has_prop(ctx, 0);
|
|
printf("obj.nonexistent -> rc=%d\n", rc);
|
|
|
|
duk_push_int(ctx, 123);
|
|
rc = duk_has_prop(ctx, 0);
|
|
printf("obj[123] -> rc=%d\n", rc);
|
|
|
|
duk_push_string(ctx, "nonexistent");
|
|
rc = duk_has_prop(ctx, 1);
|
|
printf("arr.nonexistent -> rc=%d\n", rc);
|
|
|
|
duk_push_int(ctx, 2);
|
|
rc = duk_has_prop(ctx, 1);
|
|
printf("arr[2] -> rc=%d\n", rc);
|
|
|
|
duk_push_string(ctx, "length");
|
|
rc = duk_has_prop(ctx, 1);
|
|
printf("arr.length -> rc=%d\n", rc);
|
|
|
|
printf("final top: %d\n", duk_get_top(ctx));
|
|
return 0;
|
|
}
|
|
|
|
/* duk_has_prop(), invalid index */
|
|
int test_1b(duk_context *ctx) {
|
|
int rc;
|
|
|
|
prep(ctx);
|
|
|
|
duk_push_string(ctx, "foo");
|
|
rc = duk_has_prop(ctx, 234);
|
|
printf("obj.foo -> rc=%d\n", rc);
|
|
|
|
printf("final top: %d\n", duk_get_top(ctx));
|
|
return 0;
|
|
}
|
|
|
|
/* duk_has_prop(), DUK_INVALID_INDEX */
|
|
int test_1c(duk_context *ctx) {
|
|
int rc;
|
|
|
|
prep(ctx);
|
|
|
|
duk_push_string(ctx, "foo");
|
|
rc = duk_has_prop(ctx, DUK_INVALID_INDEX);
|
|
printf("obj.foo -> rc=%d\n", rc);
|
|
|
|
printf("final top: %d\n", duk_get_top(ctx));
|
|
return 0;
|
|
}
|
|
|
|
/* duk_has_prop(), not an object */
|
|
int test_1d(duk_context *ctx) {
|
|
int rc;
|
|
|
|
duk_set_top(ctx, 0);
|
|
|
|
duk_push_string(ctx, "test");
|
|
duk_push_string(ctx, "3");
|
|
rc = duk_has_prop(ctx, -2);
|
|
printf("'test'['3'] -> rc=%d\n", rc);
|
|
|
|
printf("final top: %d\n", duk_get_top(ctx));
|
|
return 0;
|
|
}
|
|
|
|
/* duk_has_prop(), not an object */
|
|
int test_1e(duk_context *ctx) {
|
|
int rc;
|
|
|
|
duk_set_top(ctx, 0);
|
|
|
|
duk_push_null(ctx);
|
|
duk_push_string(ctx, "foo");
|
|
rc = duk_has_prop(ctx, -2);
|
|
printf("null.foo -> rc=%d\n", rc);
|
|
|
|
printf("final top: %d\n", duk_get_top(ctx));
|
|
return 0;
|
|
}
|
|
|
|
/* duk_has_prop_string(), success cases */
|
|
int test_2a(duk_context *ctx) {
|
|
int rc;
|
|
|
|
prep(ctx);
|
|
|
|
rc = duk_has_prop_string(ctx, 0, "foo");
|
|
printf("obj.foo -> rc=%d\n", rc);
|
|
|
|
rc = duk_has_prop_string(ctx, 0, "nonexistent");
|
|
printf("obj.nonexistent -> rc=%d\n", rc);
|
|
|
|
rc = duk_has_prop_string(ctx, 0, "123");
|
|
printf("obj['123'] -> rc=%d\n", rc);
|
|
|
|
rc = duk_has_prop_string(ctx, 1, "nonexistent");
|
|
printf("arr.nonexistent -> rc=%d\n", rc);
|
|
|
|
rc = duk_has_prop_string(ctx, 1, "2");
|
|
printf("arr['2'] -> rc=%d\n", rc);
|
|
|
|
rc = duk_has_prop_string(ctx, 1, "length");
|
|
printf("arr.length -> rc=%d\n", rc);
|
|
|
|
printf("final top: %d\n", duk_get_top(ctx));
|
|
return 0;
|
|
}
|
|
|
|
/* duk_has_prop_string(), invalid index */
|
|
int test_2b(duk_context *ctx) {
|
|
int rc;
|
|
|
|
prep(ctx);
|
|
|
|
rc = duk_has_prop_string(ctx, 234, "foo");
|
|
printf("obj.foo -> rc=%d\n", rc);
|
|
|
|
printf("final top: %d\n", duk_get_top(ctx));
|
|
return 0;
|
|
}
|
|
|
|
/* duk_has_prop_string(), DUK_INVALID_INDEX */
|
|
int test_2c(duk_context *ctx) {
|
|
int rc;
|
|
|
|
prep(ctx);
|
|
|
|
rc = duk_has_prop_string(ctx, DUK_INVALID_INDEX, "foo");
|
|
printf("obj.foo -> rc=%d\n", rc);
|
|
|
|
printf("final top: %d\n", duk_get_top(ctx));
|
|
return 0;
|
|
}
|
|
|
|
/* duk_has_prop_index(), success cases */
|
|
int test_3a(duk_context *ctx) {
|
|
int rc;
|
|
|
|
prep(ctx);
|
|
|
|
rc = duk_has_prop_index(ctx, 0, 31337);
|
|
printf("obj[31337] -> rc=%d\n", rc);
|
|
|
|
rc = duk_has_prop_index(ctx, 0, 123);
|
|
printf("obj[123] -> rc=%d\n", rc);
|
|
|
|
rc = duk_has_prop_index(ctx, 1, 31337);
|
|
printf("arr[31337] -> rc=%d\n", rc);
|
|
|
|
rc = duk_has_prop_index(ctx, 1, 2);
|
|
printf("arr[2] -> rc=%d\n", rc);
|
|
|
|
printf("final top: %d\n", duk_get_top(ctx));
|
|
return 0;
|
|
}
|
|
|
|
/* duk_has_prop_index(), invalid index */
|
|
int test_3b(duk_context *ctx) {
|
|
int rc;
|
|
|
|
prep(ctx);
|
|
|
|
rc = duk_has_prop_index(ctx, 234, 123);
|
|
printf("obj[123] -> rc=%d\n", rc);
|
|
|
|
printf("final top: %d\n", duk_get_top(ctx));
|
|
return 0;
|
|
}
|
|
|
|
/* duk_has_prop_index(), DUK_INVALID_INDEX */
|
|
int test_3c(duk_context *ctx) {
|
|
int rc;
|
|
|
|
prep(ctx);
|
|
|
|
rc = duk_has_prop_index(ctx, DUK_INVALID_INDEX, 123);
|
|
printf("obj[123] -> rc=%d\n", rc);
|
|
|
|
printf("final top: %d\n", duk_get_top(ctx));
|
|
return 0;
|
|
}
|
|
|
|
void test(duk_context *ctx) {
|
|
TEST_SAFE_CALL(test_1a);
|
|
TEST_SAFE_CALL(test_1b);
|
|
TEST_SAFE_CALL(test_1c);
|
|
TEST_SAFE_CALL(test_1d);
|
|
TEST_SAFE_CALL(test_1e);
|
|
|
|
TEST_SAFE_CALL(test_2a);
|
|
TEST_SAFE_CALL(test_2b);
|
|
/* FIXME: currently error message contains the actual DUK_INVALID_INDEX
|
|
* value, nonportable */
|
|
TEST_SAFE_CALL(test_2c);
|
|
|
|
TEST_SAFE_CALL(test_3a);
|
|
TEST_SAFE_CALL(test_3b);
|
|
/* FIXME: currently error message contains the actual DUK_INVALID_INDEX
|
|
* value, nonportable */
|
|
TEST_SAFE_CALL(test_3c);
|
|
}
|
|
|
|
|