aboutsummaryrefslogtreecommitdiff
path: root/tests/unit-core/test-regexp-dotall-unicode.c
blob: 516de1c8f1fd04629ae634ec039c624a27300900 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
/* 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 "test-common.h"

int
main (void)
{
  TEST_INIT ();
  jerry_init (JERRY_INIT_EMPTY);

  if (!jerry_is_feature_enabled (JERRY_FEATURE_SYMBOL))
  {
    jerry_port_log (JERRY_LOG_LEVEL_ERROR, "ES.next support is disabled\n");
    jerry_cleanup ();
    return 0;
  }

  jerry_value_t undefined_this_arg = jerry_create_undefined ();
  jerry_char_t pattern2[] = "\\u{61}.\\u{62}";
  uint16_t flags = JERRY_REGEXP_FLAG_DOTALL | JERRY_REGEXP_FLAG_UNICODE | JERRY_REGEXP_FLAG_STICKY;
  jerry_value_t regex_obj = jerry_create_regexp (pattern2, flags);
  TEST_ASSERT (jerry_value_is_object (regex_obj));

  const jerry_char_t func_src2[] = "return [regex.exec('a\\nb'), regex.dotAll, regex.sticky, regex.unicode ];";

  jerry_parse_options_t parse_options;
  parse_options.options = JERRY_PARSE_HAS_ARGUMENT_LIST;
  parse_options.argument_list = jerry_create_string ((const jerry_char_t *) "regex");

  jerry_value_t func_val = jerry_parse (func_src2, sizeof (func_src2) - 1, &parse_options);
  jerry_release_value (parse_options.argument_list);

  jerry_value_t res = jerry_call_function (func_val, undefined_this_arg, &regex_obj, 1);
  jerry_value_t regex_res = jerry_get_property_by_index (res, 0);
  jerry_value_t regex_res_str = jerry_get_property_by_index (regex_res, 0);
  jerry_value_t is_dotall = jerry_get_property_by_index (res, 1);
  jerry_value_t is_sticky = jerry_get_property_by_index (res, 2);
  jerry_value_t is_unicode = jerry_get_property_by_index (res, 3);

  jerry_size_t str_size = jerry_get_string_size (regex_res_str);
  JERRY_VLA (jerry_char_t, res_buff, str_size);
  jerry_size_t res_size = jerry_string_to_char_buffer (regex_res_str, res_buff, str_size);

  const char expected_result[] = "a\nb";
  TEST_ASSERT (res_size == (sizeof (expected_result) - 1));
  TEST_ASSERT (strncmp (expected_result, (const char *) res_buff, res_size) == 0);
  TEST_ASSERT (jerry_value_is_true (is_dotall));
  TEST_ASSERT (jerry_value_is_true (is_sticky));
  TEST_ASSERT (jerry_value_is_true (is_unicode));

  jerry_release_value (regex_obj);
  jerry_release_value (res);
  jerry_release_value (func_val);
  jerry_release_value (regex_res);
  jerry_release_value (regex_res_str);
  jerry_release_value (is_dotall);
  jerry_release_value (is_sticky);
  jerry_release_value (is_unicode);

  jerry_cleanup ();
  return 0;
} /* main */