4924f9fd31
- remove all '#JERRY_ESNEXT' macro - remove 5.1 build profile, update test runner accordingly (Note: all builtins are turn on by default) - move tests from tests/jerry/esnext into tests/jerry, concatenate files with same names - add skiplist to some snapshot tests that were supported only in 5.1 - fix doxygen issues that were hidden before (bc. of es.next macro) Co-authored-by: Martin Negyokru negyokru@inf.u-szeged.hu JerryScript-DCO-1.0-Signed-off-by: Adam Szilagyi aszilagy@inf.u-szeged.hu
318 lines
7.1 KiB
JavaScript
318 lines
7.1 KiB
JavaScript
// 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.
|
|
|
|
var r;
|
|
|
|
r = new RegExp ("a");
|
|
assert (r.exec ("a") == "a");
|
|
assert (r.exec ("b") == null);
|
|
try {
|
|
r.exec.call({}, "a");
|
|
assert (false)
|
|
}
|
|
catch (e)
|
|
{
|
|
assert (e instanceof TypeError);
|
|
}
|
|
|
|
assert (r.test ("a") == true);
|
|
assert (r.test ("b") == false);
|
|
try {
|
|
r.test.call({}, "a");
|
|
assert (false)
|
|
}
|
|
catch (e)
|
|
{
|
|
assert (e instanceof TypeError);
|
|
}
|
|
|
|
r = new RegExp ("a", "mig");
|
|
assert (r.toString () == "/a/gim");
|
|
|
|
/* Test continous calls to the exec method to see how does the match
|
|
* updates the lastIndex propertyand see if the match restarts.
|
|
*/
|
|
var re = new RegExp("a", "g");
|
|
result = re.exec("a");
|
|
assert (result.length === 1);
|
|
assert (result[0] === "a");
|
|
assert (re.lastIndex === 1);
|
|
|
|
assert (re.exec("a") === null);
|
|
assert (re.lastIndex === 0);
|
|
|
|
result = re.exec("a");
|
|
assert (result.length === 1);
|
|
assert (result[0] === "a");
|
|
assert (re.lastIndex === 1);
|
|
|
|
var re1 = /foo/gim;
|
|
var re2 = /bar/g;
|
|
|
|
try {
|
|
re2.compile("asd", "ggim");
|
|
assert (false);
|
|
} catch (e) {
|
|
assert (e instanceof SyntaxError);
|
|
assert (re2 == "/bar/g");
|
|
}
|
|
|
|
try {
|
|
re2.compile("[", undefined);
|
|
assert (false);
|
|
} catch (e) {
|
|
assert (e instanceof SyntaxError);
|
|
assert (re2 == "/bar/g");
|
|
}
|
|
|
|
try {
|
|
re2.compile(re1, "im");
|
|
assert (false);
|
|
} catch (e) {
|
|
assert (e instanceof TypeError);
|
|
assert (re2 == "/bar/g");
|
|
}
|
|
|
|
re2.lastIndex = 2;
|
|
assert (re2.compile("asd", "im") === re2);
|
|
|
|
assert (re2 == "/asd/im");
|
|
assert (re2.global === false);
|
|
assert (re2.ignoreCase === true);
|
|
assert (re2.multiline === true);
|
|
assert (re2.source === "asd");
|
|
assert (re2.lastIndex === 0);
|
|
|
|
assert (re2.compile(re1) === re2);
|
|
assert (re2.toString() === re1.toString());
|
|
assert (re2.global === re1.global);
|
|
assert (re2.ignoreCase === re1.ignoreCase);
|
|
assert (re2.multiline === re1.multiline);
|
|
assert (re2.source === re1.source);
|
|
assert (re2.lastIndex === 0);
|
|
|
|
var r = /./
|
|
r.lastIndex = {
|
|
valueOf: function() {
|
|
throw "abrupt lastIndex"
|
|
}
|
|
}
|
|
|
|
try {
|
|
r.exec("a");
|
|
assert(false);
|
|
} catch (e) {
|
|
assert (e === "abrupt lastIndex");
|
|
}
|
|
|
|
|
|
var r = new RegExp('a', 'gimuy');
|
|
assert (r.flags === 'gimuy');
|
|
assert (r.toString() === '/a/gimuy');
|
|
|
|
try {
|
|
Object.getOwnPropertyDescriptor(RegExp.prototype, 'flags').get.call(42);
|
|
assert (false);
|
|
} catch (e) {
|
|
assert (e instanceof TypeError);
|
|
}
|
|
|
|
var o = {
|
|
global: true,
|
|
unicode: true,
|
|
sticky: true,
|
|
source: "str"
|
|
}
|
|
|
|
Object.defineProperty(o, 'flags', Object.getOwnPropertyDescriptor(RegExp.prototype, 'flags'));
|
|
assert(o.flags === "guy");
|
|
assert (RegExp.prototype.toString.call (o) === "/str/guy");
|
|
|
|
Object.defineProperty(o, 'multiline', { 'get': function () {throw "abrupt flag get"; }});
|
|
try {
|
|
o.flags
|
|
assert (false);
|
|
} catch (e) {
|
|
assert (e === "abrupt flag get");
|
|
}
|
|
|
|
try {
|
|
RegExp.prototype.toString.call(42);
|
|
assert (false);
|
|
} catch (e) {
|
|
assert (e instanceof TypeError);
|
|
}
|
|
|
|
assert (RegExp.prototype.toString.call({}) === "/undefined/undefined");
|
|
|
|
var o = {};
|
|
Object.defineProperty (o, 'source', { 'get' : function () {throw "abrupt source get"; } });
|
|
try {
|
|
RegExp.prototype.toString.call(o);
|
|
assert (false);
|
|
} catch (e) {
|
|
assert (e === "abrupt source get");
|
|
}
|
|
|
|
var o = {source: {toString: function() {throw "abrupt source toString";}}};
|
|
try {
|
|
RegExp.prototype.toString.call(o);
|
|
assert (false);
|
|
} catch (e) {
|
|
assert (e === "abrupt source toString");
|
|
}
|
|
|
|
var o = {source: "str"};
|
|
Object.defineProperty (o, 'flags', { 'get' : function () {throw "abrupt flags get"; } });
|
|
try {
|
|
RegExp.prototype.toString.call(o);
|
|
assert (false);
|
|
} catch (e) {
|
|
assert (e === "abrupt flags get");
|
|
}
|
|
|
|
var o = {source: "str", flags: {toString: function() {throw "abrupt flags toString";}}};
|
|
try {
|
|
RegExp.prototype.toString.call(o);
|
|
assert (false);
|
|
} catch (e) {
|
|
assert (e === "abrupt flags toString");
|
|
}
|
|
|
|
var o = {
|
|
global: true,
|
|
source: "str"
|
|
}
|
|
|
|
Object.defineProperty(o, 'unicode', { 'get': function () {throw "abrupt unicode get"; }});
|
|
try {
|
|
RegExp.prototype[Symbol.match].call(o, "str");
|
|
assert (false);
|
|
} catch (e) {
|
|
assert (e === "abrupt unicode get");
|
|
}
|
|
|
|
assert ("str𐲡fgh".replace(/(?:)/gu, "x") === 'xsxtxrx𐲡xfxgxhx');
|
|
assert ("str𐲡fgh".replace(/(?:)/g, "x") === 'xsxtxrx\ud803x\udca1xfxgxhx');
|
|
|
|
r = /(?:)/gu;
|
|
/* Disable fast path. */
|
|
r.exec = function (s) { return RegExp.prototype.exec.call(this, s); };
|
|
|
|
assert ("str𐲡fgh".replace(r, "x") === 'xsxtxrx𐲡xfxgxhx');
|
|
Object.defineProperty(r, 'unicode', {value: false});
|
|
assert ("str𐲡fgh".replace(r, "x") === 'xsxtxrx\ud803x\udca1xfxgxhx');
|
|
|
|
r = /(?:)/gu;
|
|
assert (RegExp.prototype[Symbol.match].call(r, "str𐲡fgh").length === 8);
|
|
Object.defineProperty(r, 'unicode', {value: false});
|
|
assert (RegExp.prototype[Symbol.match].call(r, "str𐲡fgh").length === 9);
|
|
|
|
r = /(?:)/gy;
|
|
r.lastIndex = 2;
|
|
assert ("asd".replace(r, "x") === "xaxsxdx");
|
|
assert (r.lastIndex === 0);
|
|
|
|
r.lastIndex = 5;
|
|
assert ("asd".replace(r, "x") === "xaxsxdx");
|
|
assert (r.lastIndex === 0);
|
|
|
|
r = /(?:)/y;
|
|
r.lastIndex = 2;
|
|
assert ("asd".replace(r, "x") === "asxd");
|
|
assert (r.lastIndex === 2);
|
|
|
|
r.lastIndex = 5;
|
|
assert ("asd".replace(r, "x") === "asd");
|
|
assert (r.lastIndex === 0);
|
|
|
|
r.lastIndex = 2;
|
|
/* Disable fast path. */
|
|
r.exec = function (s) { return RegExp.prototype.exec.call(this, s); };
|
|
assert ("asd".replace(r, "x") === "asxd");
|
|
assert (r.lastIndex === 2);
|
|
|
|
r.lastIndex = 5;
|
|
assert ("asd".replace(r, "x") === "asd");
|
|
assert (r.lastIndex === 0);
|
|
|
|
assert (RegExp.prototype[Symbol.match].call(/a/y, "aaa").length === 1);
|
|
assert (RegExp.prototype[Symbol.match].call(/a/gy, "aaa").length === 3);
|
|
|
|
var length = Object.getOwnPropertyDescriptor(RegExp.prototype.compile, "length");
|
|
assert(!length.enumerable);
|
|
assert(!length.writable);
|
|
assert(length.configurable);
|
|
assert(length.value === 2);
|
|
|
|
var re = /./;
|
|
re.lastIndex = 23;
|
|
|
|
try {
|
|
re.compile(re, null);
|
|
assert(false);
|
|
} catch (e) {
|
|
assert(e instanceof TypeError);
|
|
}
|
|
|
|
try {
|
|
re.compile(re, 0);
|
|
assert(false);
|
|
} catch (e) {
|
|
assert(e instanceof TypeError);
|
|
}
|
|
|
|
try {
|
|
re.compile(re, '');
|
|
assert(false);
|
|
} catch (e) {
|
|
assert(e instanceof TypeError);
|
|
}
|
|
|
|
try {
|
|
re.compile(re, false);
|
|
assert(false);
|
|
} catch (e) {
|
|
assert(e instanceof TypeError);
|
|
}
|
|
|
|
try {
|
|
re.compile(re, {});
|
|
assert(false);
|
|
} catch (e) {
|
|
assert(e instanceof TypeError);
|
|
}
|
|
|
|
try {
|
|
re.compile(re, []);
|
|
assert(false);
|
|
} catch (e) {
|
|
assert(e instanceof TypeError);
|
|
}
|
|
|
|
assert(re.lastIndex === 23);
|
|
|
|
var subject = /initial/;
|
|
Object.defineProperty(subject, 'lastIndex', { value: 45, writable: false });
|
|
|
|
try {
|
|
subject.compile(/updated/gi);
|
|
assert(false);
|
|
} catch (e) {
|
|
assert(e instanceof TypeError);
|
|
}
|
|
|
|
assert(subject.toString() === new RegExp('updated', 'gi').toString());
|
|
assert(subject.lastIndex === 45);
|