mirror of
https://github.com/jerryscript-project/jerryscript.git
synced 2025-12-15 16:29:21 +00:00
Re-enable cppcheck CI job
Update cppcheck suppression list:
The new version of cppcheck raises warnings for many potential
issues that are guarded against, so those warnings have been
supressed.
Handle realloc failures:
- jerry-ext/util/sources.c
- jerry-port/common/jerry-port-io.c
Refactor test-snapshot: move each test to separate functions like some
others already were.
Rename `handler` variables inside `main` of `test-api.c` as they
shadowed the `handler` function in the same file.
JerryScript-DCO-1.0-Signed-off-by: Máté Tokodi mate.tokodi@szteszoftver.hu
1087 lines
41 KiB
C
1087 lines
41 KiB
C
/* Copyright JS Foundation and other contributors, http://js.foundation
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
#include "jerryscript.h"
|
|
|
|
#include "config.h"
|
|
#include "test-common.h"
|
|
|
|
const jerry_char_t test_source[] =
|
|
TEST_STRING_LITERAL ("function assert (arg) { "
|
|
" if (!arg) { "
|
|
" throw Error('Assert failed');"
|
|
" } "
|
|
"} "
|
|
"this.t = 1; "
|
|
"function f () { "
|
|
"return this.t; "
|
|
"} "
|
|
"this.foo = f; "
|
|
"this.bar = function (a) { "
|
|
"return a + t; "
|
|
"}; "
|
|
"function A () { "
|
|
"this.t = 12; "
|
|
"} "
|
|
"this.A = A; "
|
|
"this.a = new A (); "
|
|
"function call_external () { "
|
|
" return this.external ('1', true); "
|
|
"} "
|
|
"function call_throw_test() { "
|
|
" var catched = false; "
|
|
" try { "
|
|
" this.throw_test(); "
|
|
" } catch (e) { "
|
|
" catched = true; "
|
|
" assert(e.name == 'TypeError'); "
|
|
" assert(e.message == 'error'); "
|
|
" } "
|
|
" assert(catched); "
|
|
"} "
|
|
"function throw_reference_error() { "
|
|
" throw new ReferenceError ();"
|
|
"} "
|
|
"p = {'alpha':32, 'bravo':false, 'charlie':{}, 'delta':123.45, 'echo':'foobar'};"
|
|
"np = {}; Object.defineProperty (np, 'foxtrot', { "
|
|
"get: function() { throw 'error'; }, enumerable: true }) ");
|
|
|
|
bool test_api_is_free_callback_was_called = false;
|
|
|
|
static jerry_value_t
|
|
handler (const jerry_call_info_t *call_info_p, /**< call information */
|
|
const jerry_value_t args_p[], /**< arguments list */
|
|
const jerry_length_t args_cnt) /**< arguments length */
|
|
{
|
|
char buffer[32];
|
|
jerry_size_t sz;
|
|
|
|
printf ("ok %u %u %p %u\n",
|
|
(unsigned int) call_info_p->function,
|
|
(unsigned int) call_info_p->this_value,
|
|
(void *) args_p,
|
|
(unsigned int) args_cnt);
|
|
|
|
TEST_ASSERT (args_cnt == 2);
|
|
|
|
TEST_ASSERT (jerry_value_is_string (args_p[0]));
|
|
sz = jerry_string_size (args_p[0], JERRY_ENCODING_CESU8);
|
|
TEST_ASSERT (sz == 1);
|
|
sz = jerry_string_to_buffer (args_p[0], JERRY_ENCODING_CESU8, (jerry_char_t *) buffer, sz);
|
|
TEST_ASSERT (sz == 1);
|
|
TEST_ASSERT (!strncmp (buffer, "1", (size_t) sz));
|
|
|
|
TEST_ASSERT (jerry_value_is_boolean (args_p[1]));
|
|
|
|
return jerry_string_sz ("string from handler");
|
|
} /* handler */
|
|
|
|
static jerry_value_t
|
|
handler_throw_test (const jerry_call_info_t *call_info_p, /**< call information */
|
|
const jerry_value_t args_p[], /**< arguments list */
|
|
const jerry_length_t args_cnt) /**< arguments length */
|
|
{
|
|
printf ("ok %u %u %p %u\n",
|
|
(unsigned int) call_info_p->function,
|
|
(unsigned int) call_info_p->this_value,
|
|
(void *) args_p,
|
|
(unsigned int) args_cnt);
|
|
|
|
return jerry_throw_sz (JERRY_ERROR_TYPE, "error");
|
|
} /* handler_throw_test */
|
|
|
|
static void
|
|
handler_construct_1_freecb (void *native_p, /**< native pointer */
|
|
jerry_object_native_info_t *info_p) /**< native info */
|
|
{
|
|
TEST_ASSERT ((uintptr_t) native_p == (uintptr_t) 0x0000000000000000ull);
|
|
TEST_ASSERT (info_p->free_cb == handler_construct_1_freecb);
|
|
printf ("ok object free callback\n");
|
|
|
|
test_api_is_free_callback_was_called = true;
|
|
} /* handler_construct_1_freecb */
|
|
|
|
static void
|
|
handler_construct_2_freecb (void *native_p, /**< native pointer */
|
|
jerry_object_native_info_t *info_p) /**< native info */
|
|
{
|
|
TEST_ASSERT ((uintptr_t) native_p == (uintptr_t) 0x0012345678abcdefull);
|
|
TEST_ASSERT (info_p->free_cb == handler_construct_2_freecb);
|
|
printf ("ok object free callback\n");
|
|
|
|
test_api_is_free_callback_was_called = true;
|
|
} /* handler_construct_2_freecb */
|
|
|
|
/**
|
|
* The name of the jerry_object_native_info_t struct.
|
|
*/
|
|
#define JERRY_NATIVE_HANDLE_INFO_FOR_CTYPE(c_type) _jerry_object_native_info_##c_type
|
|
|
|
/**
|
|
* Define a native pointer's type based on the C type and free callback.
|
|
*/
|
|
#define JERRY_DEFINE_NATIVE_HANDLE_INFO(c_type, native_free_cb) \
|
|
static const jerry_object_native_info_t JERRY_NATIVE_HANDLE_INFO_FOR_CTYPE (c_type) = { \
|
|
.free_cb = (jerry_object_native_free_cb_t) native_free_cb, \
|
|
.number_of_references = 0, \
|
|
.offset_of_references = 0, \
|
|
}
|
|
|
|
JERRY_DEFINE_NATIVE_HANDLE_INFO (bind1, handler_construct_1_freecb);
|
|
JERRY_DEFINE_NATIVE_HANDLE_INFO (bind2, handler_construct_2_freecb);
|
|
JERRY_DEFINE_NATIVE_HANDLE_INFO (bind3, NULL);
|
|
|
|
static jerry_value_t
|
|
handler_construct (const jerry_call_info_t *call_info_p, /**< call information */
|
|
const jerry_value_t args_p[], /**< arguments list */
|
|
const jerry_length_t args_cnt) /**< arguments length */
|
|
{
|
|
printf ("ok construct %u %u %p %u\n",
|
|
(unsigned int) call_info_p->function,
|
|
(unsigned int) call_info_p->this_value,
|
|
(void *) args_p,
|
|
(unsigned int) args_cnt);
|
|
|
|
TEST_ASSERT (jerry_value_is_object (call_info_p->this_value));
|
|
|
|
TEST_ASSERT (args_cnt == 1);
|
|
TEST_ASSERT (jerry_value_is_boolean (args_p[0]));
|
|
TEST_ASSERT (jerry_value_is_true (args_p[0]));
|
|
|
|
jerry_value_t this_value = call_info_p->this_value;
|
|
jerry_value_t field_name = jerry_string_sz ("value_field");
|
|
jerry_value_t res = jerry_object_set (this_value, field_name, args_p[0]);
|
|
TEST_ASSERT (!jerry_value_is_exception (res));
|
|
TEST_ASSERT (jerry_value_is_true (res));
|
|
jerry_value_free (res);
|
|
jerry_value_free (field_name);
|
|
|
|
/* Set a native pointer. */
|
|
jerry_object_set_native_ptr (this_value, &JERRY_NATIVE_HANDLE_INFO_FOR_CTYPE (bind1), NULL);
|
|
|
|
/* Check that the native pointer was set. */
|
|
TEST_ASSERT (jerry_object_has_native_ptr (this_value, &JERRY_NATIVE_HANDLE_INFO_FOR_CTYPE (bind1)));
|
|
void *ptr = jerry_object_get_native_ptr (this_value, &JERRY_NATIVE_HANDLE_INFO_FOR_CTYPE (bind1));
|
|
TEST_ASSERT (ptr == NULL);
|
|
|
|
/* Set a second native pointer. */
|
|
jerry_object_set_native_ptr (this_value, &JERRY_NATIVE_HANDLE_INFO_FOR_CTYPE (bind2), (void *) 0x0012345678abcdefull);
|
|
|
|
/* Check that a second native pointer was set. */
|
|
TEST_ASSERT (jerry_object_has_native_ptr (this_value, &JERRY_NATIVE_HANDLE_INFO_FOR_CTYPE (bind2)));
|
|
ptr = jerry_object_get_native_ptr (this_value, &JERRY_NATIVE_HANDLE_INFO_FOR_CTYPE (bind2));
|
|
TEST_ASSERT ((uintptr_t) ptr == (uintptr_t) 0x0012345678abcdefull);
|
|
|
|
/* Check that the first native pointer is still set. */
|
|
TEST_ASSERT (jerry_object_has_native_ptr (this_value, &JERRY_NATIVE_HANDLE_INFO_FOR_CTYPE (bind1)));
|
|
ptr = jerry_object_get_native_ptr (this_value, &JERRY_NATIVE_HANDLE_INFO_FOR_CTYPE (bind1));
|
|
TEST_ASSERT (ptr == NULL);
|
|
return jerry_boolean (true);
|
|
} /* handler_construct */
|
|
|
|
/**
|
|
* Extended Magic Strings
|
|
*/
|
|
#define JERRY_MAGIC_STRING_ITEMS \
|
|
JERRY_MAGIC_STRING_DEF (GLOBAL, global) \
|
|
JERRY_MAGIC_STRING_DEF (GREEK_ZERO_SIGN, \xed\xa0\x80\xed\xb6\x8a) \
|
|
JERRY_MAGIC_STRING_DEF (CONSOLE, console)
|
|
|
|
#define JERRY_MAGIC_STRING_DEF(NAME, STRING) static const char jerry_magic_string_ex_##NAME[] = #STRING;
|
|
|
|
JERRY_MAGIC_STRING_ITEMS
|
|
|
|
#undef JERRY_MAGIC_STRING_DEF
|
|
|
|
const jerry_length_t magic_string_lengths[] = {
|
|
#define JERRY_MAGIC_STRING_DEF(NAME, STRING) (jerry_length_t) (sizeof (jerry_magic_string_ex_##NAME) - 1u),
|
|
|
|
JERRY_MAGIC_STRING_ITEMS
|
|
|
|
#undef JERRY_MAGIC_STRING_DEF
|
|
};
|
|
|
|
const jerry_char_t *magic_string_items[] = {
|
|
#define JERRY_MAGIC_STRING_DEF(NAME, STRING) (const jerry_char_t *) jerry_magic_string_ex_##NAME,
|
|
|
|
JERRY_MAGIC_STRING_ITEMS
|
|
|
|
#undef JERRY_MAGIC_STRING_DEF
|
|
};
|
|
|
|
static bool foreach (const jerry_value_t name, /**< field name */
|
|
const jerry_value_t value, /**< field value */
|
|
void *user_data) /**< user data */
|
|
{
|
|
char str_buf_p[128];
|
|
jerry_size_t sz =
|
|
jerry_string_to_buffer (name, JERRY_ENCODING_CESU8, (jerry_char_t *) str_buf_p, sizeof (str_buf_p) - 1);
|
|
str_buf_p[sz] = '\0';
|
|
|
|
TEST_ASSERT (!strncmp ((const char *) user_data, "user_data", 9));
|
|
TEST_ASSERT (sz > 0);
|
|
|
|
if (!strncmp (str_buf_p, "alpha", (size_t) sz))
|
|
{
|
|
TEST_ASSERT (jerry_value_is_number (value));
|
|
TEST_ASSERT (jerry_value_as_number (value) == 32.0);
|
|
return true;
|
|
}
|
|
else if (!strncmp (str_buf_p, "bravo", (size_t) sz))
|
|
{
|
|
TEST_ASSERT (jerry_value_is_boolean (value));
|
|
TEST_ASSERT (jerry_value_is_true (value) == false);
|
|
TEST_ASSERT (jerry_value_is_false (value));
|
|
return true;
|
|
}
|
|
else if (!strncmp (str_buf_p, "charlie", (size_t) sz))
|
|
{
|
|
TEST_ASSERT (jerry_value_is_object (value));
|
|
return true;
|
|
}
|
|
else if (!strncmp (str_buf_p, "delta", (size_t) sz))
|
|
{
|
|
TEST_ASSERT (jerry_value_is_number (value));
|
|
TEST_ASSERT (jerry_value_as_number (value) == 123.45);
|
|
return true;
|
|
}
|
|
else if (!strncmp (str_buf_p, "echo", (size_t) sz))
|
|
{
|
|
TEST_ASSERT (jerry_value_is_string (value));
|
|
jerry_size_t echo_sz =
|
|
jerry_string_to_buffer (value, JERRY_ENCODING_CESU8, (jerry_char_t *) str_buf_p, sizeof (str_buf_p) - 1);
|
|
str_buf_p[echo_sz] = '\0';
|
|
TEST_ASSERT (!strncmp (str_buf_p, "foobar", (size_t) echo_sz));
|
|
return true;
|
|
}
|
|
|
|
TEST_ASSERT (false);
|
|
return false;
|
|
} /* foreach */
|
|
|
|
static bool
|
|
foreach_exception (const jerry_value_t name, /**< field name */
|
|
const jerry_value_t value, /**< field value */
|
|
void *user_data) /**< user data */
|
|
{
|
|
JERRY_UNUSED (value);
|
|
JERRY_UNUSED (user_data);
|
|
char str_buf_p[128];
|
|
jerry_size_t sz =
|
|
jerry_string_to_buffer (name, JERRY_ENCODING_CESU8, (jerry_char_t *) str_buf_p, sizeof (str_buf_p) - 1);
|
|
str_buf_p[sz] = '\0';
|
|
|
|
if (!strncmp (str_buf_p, "foxtrot", (size_t) sz))
|
|
{
|
|
TEST_ASSERT (false);
|
|
}
|
|
|
|
return true;
|
|
} /* foreach_exception */
|
|
|
|
static bool
|
|
foreach_subset (const jerry_value_t name, /**< field name */
|
|
const jerry_value_t value, /**< field value */
|
|
void *user_data) /**< user data */
|
|
{
|
|
JERRY_UNUSED (name);
|
|
JERRY_UNUSED (value);
|
|
int *count_p = (int *) (user_data);
|
|
|
|
if (*count_p == 3)
|
|
{
|
|
return false;
|
|
}
|
|
(*count_p)++;
|
|
return true;
|
|
} /* foreach_subset */
|
|
|
|
static jerry_value_t
|
|
get_property (const jerry_value_t obj_val, /**< object value */
|
|
const char *str_p) /**< property name */
|
|
{
|
|
jerry_value_t prop_name_val = jerry_string_sz (str_p);
|
|
jerry_value_t ret_val = jerry_object_get (obj_val, prop_name_val);
|
|
jerry_value_free (prop_name_val);
|
|
return ret_val;
|
|
} /* get_property */
|
|
|
|
static jerry_value_t
|
|
set_property (const jerry_value_t obj_val, /**< object value */
|
|
const char *str_p, /**< property name */
|
|
const jerry_value_t val) /**< value to set */
|
|
{
|
|
jerry_value_t prop_name_val = jerry_string_sz (str_p);
|
|
jerry_value_t ret_val = jerry_object_set (obj_val, prop_name_val, val);
|
|
jerry_value_free (prop_name_val);
|
|
return ret_val;
|
|
} /* set_property */
|
|
|
|
static void
|
|
test_syntax_error (const char *script_p, /**< source code to run */
|
|
const jerry_parse_options_t *options_p, /**< additional parsing options */
|
|
const char *error_message_p, /**< error message */
|
|
bool run_script) /**< run script before checking the error message */
|
|
{
|
|
jerry_value_t result_val = jerry_parse ((const jerry_char_t *) script_p, strlen (script_p), options_p);
|
|
|
|
if (run_script)
|
|
{
|
|
TEST_ASSERT (!jerry_value_is_exception (result_val));
|
|
jerry_value_t script_val = result_val;
|
|
|
|
result_val = jerry_run (script_val);
|
|
jerry_value_free (script_val);
|
|
}
|
|
|
|
TEST_ASSERT (jerry_value_is_exception (result_val));
|
|
result_val = jerry_exception_value (result_val, true);
|
|
|
|
jerry_value_t err_str_val = jerry_value_to_string (result_val);
|
|
jerry_size_t err_str_size = jerry_string_size (err_str_val, JERRY_ENCODING_CESU8);
|
|
jerry_char_t err_str_buf[256];
|
|
|
|
TEST_ASSERT (err_str_size <= sizeof (err_str_buf));
|
|
TEST_ASSERT (err_str_size == strlen (error_message_p));
|
|
|
|
TEST_ASSERT (jerry_string_to_buffer (err_str_val, JERRY_ENCODING_CESU8, err_str_buf, err_str_size) == err_str_size);
|
|
|
|
jerry_value_free (err_str_val);
|
|
jerry_value_free (result_val);
|
|
TEST_ASSERT (memcmp ((char *) err_str_buf, error_message_p, err_str_size) == 0);
|
|
} /* test_syntax_error */
|
|
|
|
int
|
|
main (void)
|
|
{
|
|
TEST_INIT ();
|
|
|
|
bool is_ok;
|
|
jerry_size_t sz, cesu8_sz;
|
|
jerry_length_t cesu8_length;
|
|
jerry_value_t val_t, val_foo, val_bar, val_A, val_A_prototype, val_a, val_a_foo, val_value_field, val_p, val_np;
|
|
jerry_value_t val_call_external;
|
|
jerry_value_t global_obj_val, obj_val;
|
|
jerry_value_t external_func_val, external_construct_val;
|
|
jerry_value_t throw_test_handler_val;
|
|
jerry_value_t parsed_code_val, proto_val, prim_val;
|
|
jerry_value_t res, args[2];
|
|
double number_val;
|
|
char buffer[32];
|
|
|
|
jerry_init (JERRY_INIT_EMPTY);
|
|
|
|
parsed_code_val = jerry_parse (test_source, sizeof (test_source) - 1, NULL);
|
|
TEST_ASSERT (!jerry_value_is_exception (parsed_code_val));
|
|
|
|
res = jerry_run (parsed_code_val);
|
|
TEST_ASSERT (!jerry_value_is_exception (res));
|
|
jerry_value_free (res);
|
|
jerry_value_free (parsed_code_val);
|
|
|
|
global_obj_val = jerry_current_realm ();
|
|
|
|
/* Get global.boo (non-existing field) */
|
|
val_t = get_property (global_obj_val, "boo");
|
|
TEST_ASSERT (!jerry_value_is_exception (val_t));
|
|
TEST_ASSERT (jerry_value_is_undefined (val_t));
|
|
|
|
/* Get global.t */
|
|
val_t = get_property (global_obj_val, "t");
|
|
TEST_ASSERT (!jerry_value_is_exception (val_t));
|
|
TEST_ASSERT (jerry_value_is_number (val_t) && jerry_value_as_number (val_t) == 1.0);
|
|
jerry_value_free (val_t);
|
|
|
|
/* Get global.foo */
|
|
val_foo = get_property (global_obj_val, "foo");
|
|
TEST_ASSERT (!jerry_value_is_exception (val_foo));
|
|
TEST_ASSERT (jerry_value_is_object (val_foo));
|
|
|
|
/* Call foo (4, 2) */
|
|
args[0] = jerry_number (4);
|
|
args[1] = jerry_number (2);
|
|
res = jerry_call (val_foo, jerry_undefined (), args, 2);
|
|
TEST_ASSERT (!jerry_value_is_exception (res));
|
|
TEST_ASSERT (jerry_value_is_number (res) && jerry_value_as_number (res) == 1.0);
|
|
jerry_value_free (res);
|
|
|
|
/* Get global.bar */
|
|
val_bar = get_property (global_obj_val, "bar");
|
|
TEST_ASSERT (!jerry_value_is_exception (val_bar));
|
|
TEST_ASSERT (jerry_value_is_object (val_bar));
|
|
|
|
/* Call bar (4, 2) */
|
|
res = jerry_call (val_bar, jerry_undefined (), args, 2);
|
|
TEST_ASSERT (!jerry_value_is_exception (res));
|
|
TEST_ASSERT (jerry_value_is_number (res) && jerry_value_as_number (res) == 5.0);
|
|
jerry_value_free (res);
|
|
jerry_value_free (val_bar);
|
|
|
|
/* Set global.t = "abcd" */
|
|
jerry_value_free (args[0]);
|
|
args[0] = jerry_string_sz ("abcd");
|
|
res = set_property (global_obj_val, "t", args[0]);
|
|
TEST_ASSERT (!jerry_value_is_exception (res));
|
|
TEST_ASSERT (jerry_value_is_true (res));
|
|
jerry_value_free (res);
|
|
|
|
/* Call foo (4, 2) */
|
|
res = jerry_call (val_foo, jerry_undefined (), args, 2);
|
|
TEST_ASSERT (!jerry_value_is_exception (res));
|
|
TEST_ASSERT (jerry_value_is_string (res));
|
|
sz = jerry_string_size (res, JERRY_ENCODING_CESU8);
|
|
TEST_ASSERT (sz == 4);
|
|
sz = jerry_string_to_buffer (res, JERRY_ENCODING_CESU8, (jerry_char_t *) buffer, sz);
|
|
TEST_ASSERT (sz == 4);
|
|
jerry_value_free (res);
|
|
TEST_ASSERT (!strncmp (buffer, "abcd", (size_t) sz));
|
|
jerry_value_free (args[0]);
|
|
jerry_value_free (args[1]);
|
|
|
|
/* Get global.A */
|
|
val_A = get_property (global_obj_val, "A");
|
|
TEST_ASSERT (!jerry_value_is_exception (val_A));
|
|
TEST_ASSERT (jerry_value_is_object (val_A));
|
|
|
|
/* Get A.prototype */
|
|
is_ok = jerry_value_is_constructor (val_A);
|
|
TEST_ASSERT (is_ok);
|
|
val_A_prototype = get_property (val_A, "prototype");
|
|
TEST_ASSERT (!jerry_value_is_exception (val_A_prototype));
|
|
TEST_ASSERT (jerry_value_is_object (val_A_prototype));
|
|
jerry_value_free (val_A);
|
|
|
|
/* Set A.prototype.foo = global.foo */
|
|
res = set_property (val_A_prototype, "foo", val_foo);
|
|
TEST_ASSERT (!jerry_value_is_exception (res));
|
|
TEST_ASSERT (jerry_value_is_true (res));
|
|
jerry_value_free (res);
|
|
jerry_value_free (val_A_prototype);
|
|
jerry_value_free (val_foo);
|
|
|
|
/* Get global.a */
|
|
val_a = get_property (global_obj_val, "a");
|
|
TEST_ASSERT (!jerry_value_is_exception (val_a));
|
|
TEST_ASSERT (jerry_value_is_object (val_a));
|
|
|
|
/* Get a.t */
|
|
res = get_property (val_a, "t");
|
|
TEST_ASSERT (!jerry_value_is_exception (res));
|
|
TEST_ASSERT (jerry_value_is_number (res) && jerry_value_as_number (res) == 12.0);
|
|
jerry_value_free (res);
|
|
|
|
/* foreach properties */
|
|
val_p = get_property (global_obj_val, "p");
|
|
is_ok = jerry_object_foreach (val_p, foreach, (void *) "user_data");
|
|
TEST_ASSERT (is_ok);
|
|
|
|
/* break foreach at third element */
|
|
int count = 0;
|
|
is_ok = jerry_object_foreach (val_p, foreach_subset, &count);
|
|
TEST_ASSERT (is_ok);
|
|
TEST_ASSERT (count == 3);
|
|
jerry_value_free (val_p);
|
|
|
|
/* foreach with throw test */
|
|
val_np = get_property (global_obj_val, "np");
|
|
is_ok = !jerry_object_foreach (val_np, foreach_exception, NULL);
|
|
TEST_ASSERT (is_ok);
|
|
jerry_value_free (val_np);
|
|
|
|
/* Get a.foo */
|
|
val_a_foo = get_property (val_a, "foo");
|
|
TEST_ASSERT (!jerry_value_is_exception (val_a_foo));
|
|
TEST_ASSERT (jerry_value_is_object (val_a_foo));
|
|
|
|
/* Call a.foo () */
|
|
res = jerry_call (val_a_foo, val_a, NULL, 0);
|
|
TEST_ASSERT (!jerry_value_is_exception (res));
|
|
TEST_ASSERT (jerry_value_is_number (res) && jerry_value_as_number (res) == 12.0);
|
|
jerry_value_free (res);
|
|
jerry_value_free (val_a_foo);
|
|
|
|
jerry_value_free (val_a);
|
|
|
|
/* Create native handler bound function object and set it to 'external' variable */
|
|
external_func_val = jerry_function_external (handler);
|
|
TEST_ASSERT (jerry_value_is_function (external_func_val) && jerry_value_is_constructor (external_func_val));
|
|
|
|
res = set_property (global_obj_val, "external", external_func_val);
|
|
TEST_ASSERT (!jerry_value_is_exception (res));
|
|
TEST_ASSERT (jerry_value_is_true (res));
|
|
jerry_value_free (external_func_val);
|
|
|
|
/* Call 'call_external' function that should call external function created above */
|
|
val_call_external = get_property (global_obj_val, "call_external");
|
|
TEST_ASSERT (!jerry_value_is_exception (val_call_external));
|
|
TEST_ASSERT (jerry_value_is_object (val_call_external));
|
|
res = jerry_call (val_call_external, global_obj_val, NULL, 0);
|
|
jerry_value_free (val_call_external);
|
|
TEST_ASSERT (!jerry_value_is_exception (res));
|
|
TEST_ASSERT (jerry_value_is_string (res));
|
|
sz = jerry_string_size (res, JERRY_ENCODING_CESU8);
|
|
TEST_ASSERT (sz == 19);
|
|
sz = jerry_string_to_buffer (res, JERRY_ENCODING_CESU8, (jerry_char_t *) buffer, sz);
|
|
TEST_ASSERT (sz == 19);
|
|
jerry_value_free (res);
|
|
TEST_ASSERT (!strncmp (buffer, "string from handler", (size_t) sz));
|
|
|
|
/* Create native handler bound function object and set it to 'external_construct' variable */
|
|
external_construct_val = jerry_function_external (handler_construct);
|
|
TEST_ASSERT (jerry_value_is_function (external_construct_val) && jerry_value_is_constructor (external_construct_val));
|
|
|
|
res = set_property (global_obj_val, "external_construct", external_construct_val);
|
|
TEST_ASSERT (!jerry_value_is_exception (res));
|
|
TEST_ASSERT (jerry_value_is_true (res));
|
|
jerry_value_free (res);
|
|
|
|
/* Call external function created above, as constructor */
|
|
args[0] = jerry_boolean (true);
|
|
res = jerry_construct (external_construct_val, args, 1);
|
|
TEST_ASSERT (!jerry_value_is_exception (res));
|
|
TEST_ASSERT (jerry_value_is_object (res));
|
|
val_value_field = get_property (res, "value_field");
|
|
|
|
/* Get 'value_field' of constructed object */
|
|
TEST_ASSERT (!jerry_value_is_exception (val_value_field));
|
|
TEST_ASSERT (jerry_value_is_boolean (val_value_field) && jerry_value_is_true (val_value_field));
|
|
jerry_value_free (val_value_field);
|
|
jerry_value_free (external_construct_val);
|
|
|
|
TEST_ASSERT (jerry_object_has_native_ptr (res, &JERRY_NATIVE_HANDLE_INFO_FOR_CTYPE (bind2)));
|
|
void *ptr = jerry_object_get_native_ptr (res, &JERRY_NATIVE_HANDLE_INFO_FOR_CTYPE (bind2));
|
|
TEST_ASSERT ((uintptr_t) ptr == (uintptr_t) 0x0012345678abcdefull);
|
|
|
|
/* Passing NULL for info_p is allowed. */
|
|
TEST_ASSERT (!jerry_object_has_native_ptr (res, NULL));
|
|
jerry_object_set_native_ptr (res, NULL, (void *) 0x0012345678abcdefull);
|
|
|
|
TEST_ASSERT (jerry_object_has_native_ptr (res, NULL));
|
|
ptr = jerry_object_get_native_ptr (res, NULL);
|
|
TEST_ASSERT ((uintptr_t) ptr == (uintptr_t) 0x0012345678abcdefull);
|
|
|
|
jerry_value_free (res);
|
|
|
|
/* Test: It is ok to set native pointer's free callback as NULL. */
|
|
jerry_value_t obj_freecb = jerry_object ();
|
|
jerry_object_set_native_ptr (obj_freecb, &JERRY_NATIVE_HANDLE_INFO_FOR_CTYPE (bind3), (void *) 0x1234);
|
|
|
|
jerry_value_free (obj_freecb);
|
|
|
|
/* Test: Throwing exception from native handler. */
|
|
throw_test_handler_val = jerry_function_external (handler_throw_test);
|
|
TEST_ASSERT (jerry_value_is_function (throw_test_handler_val));
|
|
|
|
res = set_property (global_obj_val, "throw_test", throw_test_handler_val);
|
|
TEST_ASSERT (!jerry_value_is_exception (res));
|
|
TEST_ASSERT (jerry_value_is_true (res));
|
|
jerry_value_free (res);
|
|
jerry_value_free (throw_test_handler_val);
|
|
|
|
val_t = get_property (global_obj_val, "call_throw_test");
|
|
TEST_ASSERT (!jerry_value_is_exception (val_t));
|
|
TEST_ASSERT (jerry_value_is_object (val_t));
|
|
|
|
res = jerry_call (val_t, global_obj_val, NULL, 0);
|
|
TEST_ASSERT (!jerry_value_is_exception (res));
|
|
jerry_value_free (val_t);
|
|
jerry_value_free (res);
|
|
|
|
/* Test: Unhandled exception in called function */
|
|
val_t = get_property (global_obj_val, "throw_reference_error");
|
|
TEST_ASSERT (!jerry_value_is_exception (val_t));
|
|
TEST_ASSERT (jerry_value_is_object (val_t));
|
|
|
|
res = jerry_call (val_t, global_obj_val, NULL, 0);
|
|
|
|
TEST_ASSERT (jerry_value_is_exception (res));
|
|
jerry_value_free (val_t);
|
|
|
|
/* 'res' should contain exception object */
|
|
res = jerry_exception_value (res, true);
|
|
TEST_ASSERT (jerry_value_is_object (res));
|
|
jerry_value_free (res);
|
|
|
|
/* Test: Call of non-function */
|
|
obj_val = jerry_object ();
|
|
res = jerry_call (obj_val, global_obj_val, NULL, 0);
|
|
TEST_ASSERT (jerry_value_is_exception (res));
|
|
|
|
/* 'res' should contain exception object */
|
|
res = jerry_exception_value (res, true);
|
|
TEST_ASSERT (jerry_value_is_object (res));
|
|
jerry_value_free (res);
|
|
|
|
jerry_value_free (obj_val);
|
|
|
|
/* Test: Unhandled exception in function called, as constructor */
|
|
val_t = get_property (global_obj_val, "throw_reference_error");
|
|
TEST_ASSERT (!jerry_value_is_exception (val_t));
|
|
TEST_ASSERT (jerry_value_is_object (val_t));
|
|
|
|
res = jerry_construct (val_t, NULL, 0);
|
|
TEST_ASSERT (jerry_value_is_exception (res));
|
|
jerry_value_free (val_t);
|
|
|
|
/* 'res' should contain exception object */
|
|
res = jerry_exception_value (res, true);
|
|
TEST_ASSERT (jerry_value_is_object (res));
|
|
jerry_value_free (res);
|
|
|
|
/* Test: Call of non-function as constructor */
|
|
obj_val = jerry_object ();
|
|
res = jerry_construct (obj_val, NULL, 0);
|
|
TEST_ASSERT (jerry_value_is_exception (res));
|
|
|
|
/* 'res' should contain exception object */
|
|
res = jerry_exception_value (res, true);
|
|
TEST_ASSERT (jerry_value_is_object (res));
|
|
jerry_value_free (res);
|
|
|
|
jerry_value_free (obj_val);
|
|
|
|
/* Test: Array Object API */
|
|
jerry_value_t array_obj_val = jerry_array (10);
|
|
TEST_ASSERT (jerry_value_is_array (array_obj_val));
|
|
TEST_ASSERT (jerry_array_length (array_obj_val) == 10);
|
|
|
|
jerry_value_t v_in = jerry_number (10.5);
|
|
res = jerry_object_set_index (array_obj_val, 5, v_in);
|
|
TEST_ASSERT (!jerry_value_is_exception (res));
|
|
TEST_ASSERT (jerry_value_is_boolean (res) && jerry_value_is_true (res));
|
|
jerry_value_free (res);
|
|
jerry_value_t v_out = jerry_object_get_index (array_obj_val, 5);
|
|
|
|
TEST_ASSERT (jerry_value_is_number (v_out) && jerry_value_as_number (v_out) == 10.5);
|
|
|
|
jerry_object_delete_index (array_obj_val, 5);
|
|
jerry_value_t v_und = jerry_object_get_index (array_obj_val, 5);
|
|
|
|
TEST_ASSERT (jerry_value_is_undefined (v_und));
|
|
|
|
jerry_value_free (v_in);
|
|
jerry_value_free (v_out);
|
|
jerry_value_free (v_und);
|
|
jerry_value_free (array_obj_val);
|
|
|
|
/* Test: object keys */
|
|
res = jerry_object_keys (global_obj_val);
|
|
TEST_ASSERT (!jerry_value_is_exception (res));
|
|
TEST_ASSERT (jerry_value_is_array (res));
|
|
TEST_ASSERT (jerry_array_length (res) == 15);
|
|
jerry_value_free (res);
|
|
|
|
/* Test: jerry_value_to_primitive */
|
|
obj_val = jerry_eval ((jerry_char_t *) "new String ('hello')", 20, JERRY_PARSE_NO_OPTS);
|
|
TEST_ASSERT (!jerry_value_is_exception (obj_val));
|
|
TEST_ASSERT (jerry_value_is_object (obj_val));
|
|
TEST_ASSERT (!jerry_value_is_string (obj_val));
|
|
prim_val = jerry_value_to_primitive (obj_val);
|
|
TEST_ASSERT (!jerry_value_is_exception (prim_val));
|
|
TEST_ASSERT (jerry_value_is_string (prim_val));
|
|
jerry_value_free (prim_val);
|
|
|
|
/* Test: jerry_object_proto */
|
|
proto_val = jerry_object_proto (jerry_undefined ());
|
|
TEST_ASSERT (jerry_value_is_exception (proto_val));
|
|
jerry_value_t error = jerry_exception_value (proto_val, true);
|
|
TEST_ASSERT (jerry_error_type (error) == JERRY_ERROR_TYPE);
|
|
jerry_value_free (error);
|
|
|
|
proto_val = jerry_object_proto (obj_val);
|
|
TEST_ASSERT (!jerry_value_is_exception (proto_val));
|
|
TEST_ASSERT (jerry_value_is_object (proto_val));
|
|
jerry_value_free (proto_val);
|
|
jerry_value_free (obj_val);
|
|
|
|
if (jerry_feature_enabled (JERRY_FEATURE_PROXY))
|
|
{
|
|
jerry_value_t target = jerry_object ();
|
|
jerry_value_t proxy_handler = jerry_object ();
|
|
jerry_value_t proxy = jerry_proxy (target, proxy_handler);
|
|
jerry_value_t obj_proto = jerry_eval ((jerry_char_t *) "Object.prototype", 16, JERRY_PARSE_NO_OPTS);
|
|
|
|
jerry_value_free (target);
|
|
jerry_value_free (proxy_handler);
|
|
proto_val = jerry_object_proto (proxy);
|
|
TEST_ASSERT (!jerry_value_is_exception (proto_val));
|
|
TEST_ASSERT (proto_val == obj_proto);
|
|
jerry_value_free (proto_val);
|
|
jerry_value_free (obj_proto);
|
|
jerry_value_free (proxy);
|
|
}
|
|
|
|
/* Test: jerry_object_set_proto */
|
|
obj_val = jerry_object ();
|
|
res = jerry_object_set_proto (obj_val, jerry_null ());
|
|
TEST_ASSERT (!jerry_value_is_exception (res));
|
|
TEST_ASSERT (jerry_value_is_boolean (res));
|
|
TEST_ASSERT (jerry_value_is_true (res));
|
|
|
|
jerry_value_t new_proto = jerry_object ();
|
|
res = jerry_object_set_proto (obj_val, new_proto);
|
|
jerry_value_free (new_proto);
|
|
TEST_ASSERT (!jerry_value_is_exception (res));
|
|
TEST_ASSERT (jerry_value_is_boolean (res));
|
|
TEST_ASSERT (jerry_value_is_true (res));
|
|
proto_val = jerry_object_proto (obj_val);
|
|
TEST_ASSERT (!jerry_value_is_exception (proto_val));
|
|
TEST_ASSERT (jerry_value_is_object (proto_val));
|
|
jerry_value_free (proto_val);
|
|
jerry_value_free (obj_val);
|
|
|
|
if (jerry_feature_enabled (JERRY_FEATURE_PROXY))
|
|
{
|
|
jerry_value_t target = jerry_object ();
|
|
jerry_value_t proxy_handler = jerry_object ();
|
|
jerry_value_t proxy = jerry_proxy (target, proxy_handler);
|
|
new_proto = jerry_eval ((jerry_char_t *) "Function.prototype", 18, JERRY_PARSE_NO_OPTS);
|
|
|
|
res = jerry_object_set_proto (proxy, new_proto);
|
|
TEST_ASSERT (!jerry_value_is_exception (res));
|
|
jerry_value_t target_proto = jerry_object_proto (target);
|
|
TEST_ASSERT (target_proto == new_proto);
|
|
|
|
jerry_value_free (target);
|
|
jerry_value_free (proxy_handler);
|
|
jerry_value_free (proxy);
|
|
jerry_value_free (new_proto);
|
|
jerry_value_free (target_proto);
|
|
}
|
|
|
|
/* Test: eval */
|
|
const jerry_char_t eval_code_src1[] = "(function () { return 123; })";
|
|
val_t = jerry_eval (eval_code_src1, sizeof (eval_code_src1) - 1, JERRY_PARSE_STRICT_MODE);
|
|
TEST_ASSERT (!jerry_value_is_exception (val_t));
|
|
TEST_ASSERT (jerry_value_is_object (val_t));
|
|
TEST_ASSERT (jerry_value_is_function (val_t));
|
|
|
|
res = jerry_call (val_t, jerry_undefined (), NULL, 0);
|
|
TEST_ASSERT (!jerry_value_is_exception (res));
|
|
TEST_ASSERT (jerry_value_is_number (res) && jerry_value_as_number (res) == 123.0);
|
|
jerry_value_free (res);
|
|
|
|
jerry_value_free (val_t);
|
|
|
|
/* cleanup. */
|
|
jerry_value_free (global_obj_val);
|
|
|
|
/* Test: run gc. */
|
|
jerry_heap_gc (JERRY_GC_PRESSURE_LOW);
|
|
|
|
/* Test: spaces */
|
|
const jerry_char_t eval_code_src2[] = "\x0a \x0b \x0c \xc2\xa0 \xe2\x80\xa8 \xe2\x80\xa9 \xef\xbb\xbf 4321";
|
|
val_t = jerry_eval (eval_code_src2, sizeof (eval_code_src2) - 1, JERRY_PARSE_STRICT_MODE);
|
|
TEST_ASSERT (!jerry_value_is_exception (val_t));
|
|
TEST_ASSERT (jerry_value_is_number (val_t) && jerry_value_as_number (val_t) == 4321.0);
|
|
jerry_value_free (val_t);
|
|
|
|
/* Test: number */
|
|
val_t = jerry_number (6.25);
|
|
number_val = jerry_value_as_number (val_t);
|
|
TEST_ASSERT (number_val * 3 == 18.75);
|
|
jerry_value_free (val_t);
|
|
|
|
val_t = jerry_infinity (true);
|
|
number_val = jerry_value_as_number (val_t);
|
|
TEST_ASSERT (number_val * 3 == number_val && number_val != 0.0);
|
|
jerry_value_free (val_t);
|
|
|
|
val_t = jerry_nan ();
|
|
number_val = jerry_value_as_number (val_t);
|
|
TEST_ASSERT (number_val != number_val);
|
|
jerry_value_free (val_t);
|
|
|
|
/* Test: create function */
|
|
jerry_value_t script_source = jerry_string_sz (" return 5 + a+\nb+c");
|
|
|
|
jerry_parse_options_t parse_options;
|
|
parse_options.options = JERRY_PARSE_HAS_ARGUMENT_LIST;
|
|
parse_options.argument_list = jerry_string_sz ("a , b,c");
|
|
|
|
jerry_value_t func_val = jerry_parse_value (script_source, &parse_options);
|
|
|
|
TEST_ASSERT (!jerry_value_is_exception (func_val));
|
|
|
|
jerry_value_free (parse_options.argument_list);
|
|
jerry_value_free (script_source);
|
|
|
|
jerry_value_t func_args[3] = { jerry_number (4), jerry_number (6), jerry_number (-2) };
|
|
|
|
val_t = jerry_call (func_val, func_args[0], func_args, 3);
|
|
number_val = jerry_value_as_number (val_t);
|
|
TEST_ASSERT (number_val == 13.0);
|
|
|
|
jerry_value_free (val_t);
|
|
jerry_value_free (func_val);
|
|
|
|
parse_options.options = JERRY_PARSE_HAS_ARGUMENT_LIST;
|
|
parse_options.argument_list = jerry_null ();
|
|
|
|
func_val = jerry_parse ((const jerry_char_t *) "", 0, &parse_options);
|
|
jerry_value_free (parse_options.argument_list);
|
|
|
|
TEST_ASSERT (jerry_value_is_exception (func_val) && jerry_error_type (func_val) == JERRY_ERROR_TYPE);
|
|
jerry_value_free (func_val);
|
|
|
|
script_source = jerry_number (4.5);
|
|
func_val = jerry_parse_value (script_source, NULL);
|
|
jerry_value_free (script_source);
|
|
|
|
TEST_ASSERT (jerry_value_is_exception (func_val) && jerry_error_type (func_val) == JERRY_ERROR_TYPE);
|
|
jerry_value_free (func_val);
|
|
|
|
jerry_cleanup ();
|
|
|
|
TEST_ASSERT (test_api_is_free_callback_was_called);
|
|
|
|
/* Test: jerry_exception_value */
|
|
{
|
|
jerry_init (JERRY_INIT_EMPTY);
|
|
jerry_value_t num_val = jerry_number (123);
|
|
num_val = jerry_throw_value (num_val, true);
|
|
TEST_ASSERT (jerry_value_is_exception (num_val));
|
|
jerry_value_t num2_val = jerry_exception_value (num_val, false);
|
|
TEST_ASSERT (jerry_value_is_exception (num_val));
|
|
TEST_ASSERT (!jerry_value_is_exception (num2_val));
|
|
double num = jerry_value_as_number (num2_val);
|
|
TEST_ASSERT (num == 123);
|
|
num2_val = jerry_exception_value (num_val, true);
|
|
TEST_ASSERT (!jerry_value_is_exception (num2_val));
|
|
num = jerry_value_as_number (num2_val);
|
|
TEST_ASSERT (num == 123);
|
|
jerry_value_free (num2_val);
|
|
jerry_cleanup ();
|
|
}
|
|
|
|
{
|
|
jerry_init (JERRY_INIT_EMPTY);
|
|
const jerry_char_t scoped_src_p[] = "let a; this.b = 5";
|
|
jerry_value_t parse_result = jerry_parse (scoped_src_p, sizeof (scoped_src_p) - 1, NULL);
|
|
TEST_ASSERT (!jerry_value_is_exception (parse_result));
|
|
jerry_value_free (parse_result);
|
|
|
|
parse_result = jerry_parse (scoped_src_p, sizeof (scoped_src_p) - 1, NULL);
|
|
TEST_ASSERT (!jerry_value_is_exception (parse_result));
|
|
|
|
jerry_value_t run_result = jerry_run (parse_result);
|
|
TEST_ASSERT (!jerry_value_is_exception (run_result));
|
|
jerry_value_free (run_result);
|
|
|
|
/* Should be a syntax error due to redeclaration. */
|
|
run_result = jerry_run (parse_result);
|
|
TEST_ASSERT (jerry_value_is_exception (run_result));
|
|
jerry_value_free (run_result);
|
|
jerry_value_free (parse_result);
|
|
|
|
/* The variable should have no effect on parsing. */
|
|
parse_result = jerry_parse (scoped_src_p, sizeof (scoped_src_p) - 1, NULL);
|
|
TEST_ASSERT (!jerry_value_is_exception (parse_result));
|
|
jerry_value_free (parse_result);
|
|
|
|
/* The already existing global binding should not affect a new lexical binding */
|
|
const jerry_char_t scoped_src2_p[] = "let b = 6; this.b + b";
|
|
parse_result = jerry_parse (scoped_src2_p, sizeof (scoped_src2_p) - 1, NULL);
|
|
TEST_ASSERT (!jerry_value_is_exception (parse_result));
|
|
run_result = jerry_run (parse_result);
|
|
TEST_ASSERT (jerry_value_is_number (run_result));
|
|
TEST_ASSERT (jerry_value_as_number (run_result) == 11);
|
|
jerry_value_free (run_result);
|
|
jerry_value_free (parse_result);
|
|
|
|
/* Check restricted global property */
|
|
const jerry_char_t scoped_src3_p[] = "let undefined;";
|
|
parse_result = jerry_parse (scoped_src3_p, sizeof (scoped_src3_p) - 1, NULL);
|
|
TEST_ASSERT (!jerry_value_is_exception (parse_result));
|
|
run_result = jerry_run (parse_result);
|
|
TEST_ASSERT (jerry_value_is_exception (run_result));
|
|
TEST_ASSERT (jerry_error_type (run_result) == JERRY_ERROR_SYNTAX);
|
|
jerry_value_free (run_result);
|
|
jerry_value_free (parse_result);
|
|
|
|
jerry_value_t global_obj = jerry_current_realm ();
|
|
jerry_value_t prop_name = jerry_string_sz ("foo");
|
|
|
|
jerry_property_descriptor_t prop_desc = jerry_property_descriptor ();
|
|
prop_desc.flags |= JERRY_PROP_IS_VALUE_DEFINED;
|
|
prop_desc.value = jerry_number (5.2);
|
|
|
|
jerry_value_t define_result = jerry_object_define_own_prop (global_obj, prop_name, &prop_desc);
|
|
TEST_ASSERT (jerry_value_is_boolean (define_result) && jerry_value_is_true (define_result));
|
|
jerry_value_free (define_result);
|
|
|
|
jerry_property_descriptor_free (&prop_desc);
|
|
jerry_value_free (prop_name);
|
|
jerry_value_free (global_obj);
|
|
|
|
const jerry_char_t scoped_src4_p[] = "let foo;";
|
|
parse_result = jerry_parse (scoped_src4_p, sizeof (scoped_src4_p) - 1, NULL);
|
|
TEST_ASSERT (!jerry_value_is_exception (parse_result));
|
|
run_result = jerry_run (parse_result);
|
|
TEST_ASSERT (jerry_value_is_exception (run_result));
|
|
TEST_ASSERT (jerry_error_type (run_result) == JERRY_ERROR_SYNTAX);
|
|
jerry_value_free (run_result);
|
|
jerry_value_free (parse_result);
|
|
|
|
if (jerry_feature_enabled (JERRY_FEATURE_REALM))
|
|
{
|
|
const jerry_char_t proxy_src_p[] = "new Proxy({}, { getOwnPropertyDescriptor() { throw 42.1 }})";
|
|
jerry_value_t proxy = jerry_eval (proxy_src_p, sizeof (proxy_src_p) - 1, JERRY_PARSE_NO_OPTS);
|
|
TEST_ASSERT (jerry_value_is_object (proxy));
|
|
jerry_value_t new_realm_value = jerry_realm ();
|
|
|
|
jerry_value_t set_realm_this_result = jerry_realm_set_this (new_realm_value, proxy);
|
|
TEST_ASSERT (jerry_value_is_boolean (set_realm_this_result) && jerry_value_is_true (set_realm_this_result));
|
|
jerry_value_free (set_realm_this_result);
|
|
|
|
jerry_value_t old_realm = jerry_set_realm (new_realm_value);
|
|
|
|
const jerry_char_t scoped_src5_p[] = "let a;";
|
|
parse_result = jerry_parse (scoped_src5_p, sizeof (scoped_src5_p) - 1, NULL);
|
|
TEST_ASSERT (!jerry_value_is_exception (parse_result));
|
|
run_result = jerry_run (parse_result);
|
|
TEST_ASSERT (jerry_value_is_exception (run_result));
|
|
jerry_value_t error_value = jerry_exception_value (run_result, false);
|
|
TEST_ASSERT (jerry_value_is_number (error_value) && jerry_value_as_number (error_value) == 42.1);
|
|
jerry_value_free (error_value);
|
|
jerry_value_free (run_result);
|
|
jerry_value_free (parse_result);
|
|
|
|
jerry_set_realm (old_realm);
|
|
|
|
jerry_value_free (new_realm_value);
|
|
jerry_value_free (proxy);
|
|
|
|
const jerry_char_t proxy_src2_p[] = "new Proxy(Object.defineProperty({}, 'b', {value: 5.2}), {})";
|
|
proxy = jerry_eval (proxy_src2_p, sizeof (proxy_src2_p) - 1, JERRY_PARSE_NO_OPTS);
|
|
TEST_ASSERT (jerry_value_is_object (proxy));
|
|
new_realm_value = jerry_realm ();
|
|
|
|
set_realm_this_result = jerry_realm_set_this (new_realm_value, proxy);
|
|
TEST_ASSERT (jerry_value_is_boolean (set_realm_this_result) && jerry_value_is_true (set_realm_this_result));
|
|
jerry_value_free (set_realm_this_result);
|
|
|
|
old_realm = jerry_set_realm (new_realm_value);
|
|
|
|
const jerry_char_t scoped_src6_p[] = "let b;";
|
|
parse_result = jerry_parse (scoped_src6_p, sizeof (scoped_src6_p) - 1, NULL);
|
|
TEST_ASSERT (!jerry_value_is_exception (parse_result));
|
|
run_result = jerry_run (parse_result);
|
|
TEST_ASSERT (jerry_value_is_exception (run_result));
|
|
TEST_ASSERT (jerry_value_is_exception (run_result));
|
|
TEST_ASSERT (jerry_error_type (run_result) == JERRY_ERROR_SYNTAX);
|
|
jerry_value_free (run_result);
|
|
jerry_value_free (parse_result);
|
|
|
|
jerry_set_realm (old_realm);
|
|
|
|
jerry_value_free (new_realm_value);
|
|
jerry_value_free (proxy);
|
|
}
|
|
|
|
jerry_cleanup ();
|
|
}
|
|
|
|
/* Test: parser error location */
|
|
if (jerry_feature_enabled (JERRY_FEATURE_ERROR_MESSAGES))
|
|
{
|
|
jerry_init (JERRY_INIT_SHOW_OPCODES);
|
|
|
|
test_syntax_error ("b = 'hello';\nvar a = (;",
|
|
NULL,
|
|
"SyntaxError: Unexpected end of input [<anonymous>:2:10]",
|
|
false);
|
|
|
|
parse_options.options = JERRY_PARSE_HAS_SOURCE_NAME;
|
|
parse_options.source_name = jerry_string_sz ("filename.js");
|
|
|
|
test_syntax_error ("b = 'hello';\nvar a = (;",
|
|
&parse_options,
|
|
"SyntaxError: Unexpected end of input [filename.js:2:10]",
|
|
false);
|
|
|
|
test_syntax_error ("eval(\"var b;\\nfor (,); \");",
|
|
&parse_options,
|
|
"SyntaxError: Unexpected end of input [<eval>:2:6]",
|
|
true);
|
|
|
|
parse_options.options |= JERRY_PARSE_HAS_START;
|
|
parse_options.start_line = 10;
|
|
parse_options.start_column = 20;
|
|
|
|
test_syntax_error ("for (var a in []",
|
|
&parse_options,
|
|
"SyntaxError: Expected ')' token [filename.js:10:36]",
|
|
false);
|
|
|
|
jerry_value_free (parse_options.source_name);
|
|
jerry_cleanup ();
|
|
}
|
|
|
|
/* External Magic String */
|
|
jerry_init (JERRY_INIT_SHOW_OPCODES);
|
|
|
|
uint32_t num_magic_string_items = (uint32_t) (sizeof (magic_string_items) / sizeof (jerry_char_t *));
|
|
jerry_register_magic_strings (magic_string_items, num_magic_string_items, magic_string_lengths);
|
|
|
|
const jerry_char_t ms_code_src[] = "var global = {}; var console = [1]; var process = 1;";
|
|
parsed_code_val = jerry_parse (ms_code_src, sizeof (ms_code_src) - 1, NULL);
|
|
TEST_ASSERT (!jerry_value_is_exception (parsed_code_val));
|
|
|
|
res = jerry_run (parsed_code_val);
|
|
TEST_ASSERT (!jerry_value_is_exception (res));
|
|
jerry_value_free (res);
|
|
jerry_value_free (parsed_code_val);
|
|
|
|
/* call jerry_string_sz functions which will returns with the registered external magic strings */
|
|
args[0] = jerry_string_sz ("console");
|
|
args[1] = jerry_string_sz ("\xed\xa0\x80\xed\xb6\x8a"); /**< greek zero sign */
|
|
|
|
cesu8_length = jerry_string_length (args[0]);
|
|
cesu8_sz = jerry_string_size (args[0], JERRY_ENCODING_CESU8);
|
|
|
|
JERRY_VLA (char, string_console, cesu8_sz);
|
|
jerry_string_to_buffer (args[0], JERRY_ENCODING_CESU8, (jerry_char_t *) string_console, cesu8_sz);
|
|
|
|
TEST_ASSERT (!strncmp (string_console, "console", cesu8_sz));
|
|
TEST_ASSERT (cesu8_length == 7);
|
|
TEST_ASSERT (cesu8_length == cesu8_sz);
|
|
|
|
jerry_value_free (args[0]);
|
|
|
|
const jerry_char_t test_magic_str_access_src[] = "'console'.charAt(6) == 'e'";
|
|
res = jerry_eval (test_magic_str_access_src, sizeof (test_magic_str_access_src) - 1, JERRY_PARSE_NO_OPTS);
|
|
TEST_ASSERT (jerry_value_is_boolean (res));
|
|
TEST_ASSERT (jerry_value_is_true (res));
|
|
|
|
jerry_value_free (res);
|
|
|
|
cesu8_length = jerry_string_length (args[1]);
|
|
cesu8_sz = jerry_string_size (args[1], JERRY_ENCODING_CESU8);
|
|
|
|
JERRY_VLA (char, string_greek_zero_sign, cesu8_sz);
|
|
jerry_string_to_buffer (args[1], JERRY_ENCODING_CESU8, (jerry_char_t *) string_greek_zero_sign, cesu8_sz);
|
|
|
|
TEST_ASSERT (!strncmp (string_greek_zero_sign, "\xed\xa0\x80\xed\xb6\x8a", cesu8_sz));
|
|
TEST_ASSERT (cesu8_length == 2);
|
|
TEST_ASSERT (cesu8_sz == 6);
|
|
|
|
jerry_value_free (args[1]);
|
|
|
|
jerry_cleanup ();
|
|
|
|
return 0;
|
|
} /* main */
|