diff options
author | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
---|---|---|
committer | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
commit | 5f8de423f190bbb79a62f804151bc24824fa32d8 (patch) | |
tree | 10027f336435511475e392454359edea8e25895d /js/src/tests/ecma_6/RegExp/compile-lastIndex.js | |
parent | 49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff) | |
download | UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip |
Add m-esr52 at 52.6.0
Diffstat (limited to 'js/src/tests/ecma_6/RegExp/compile-lastIndex.js')
-rw-r--r-- | js/src/tests/ecma_6/RegExp/compile-lastIndex.js | 88 |
1 files changed, 88 insertions, 0 deletions
diff --git a/js/src/tests/ecma_6/RegExp/compile-lastIndex.js b/js/src/tests/ecma_6/RegExp/compile-lastIndex.js new file mode 100644 index 000000000..80c820f43 --- /dev/null +++ b/js/src/tests/ecma_6/RegExp/compile-lastIndex.js @@ -0,0 +1,88 @@ +/* + * Any copyright is dedicated to the Public Domain. + * http://creativecommons.org/licenses/publicdomain/ + */ + +var BUGNUMBER = 1253099; +var summary = + "RegExp.prototype.compile must perform all its steps *except* setting " + + ".lastIndex, then throw, when provided a RegExp whose .lastIndex has been " + + "made non-writable"; + +print(BUGNUMBER + ": " + summary); + +/************** + * BEGIN TEST * + **************/ + +var regex = /foo/i; + +// Aside from making .lastIndex non-writable, this has two incidental effects +// ubiquitously tested through the remainder of this test: +// +// * RegExp.prototype.compile will do everything it ordinarily does, BUT it +// will throw a TypeError when attempting to zero .lastIndex immediately +// before succeeding overall. +// * RegExp.prototype.test for a non-global and non-sticky regular expression, +// in case of a match, will return true (as normal). BUT if no match is +// found, it will throw a TypeError when attempting to modify .lastIndex. +// +// Ain't it great? +Object.defineProperty(regex, "lastIndex", { value: 42, writable: false }); + +assertEq(regex.global, false); +assertEq(regex.ignoreCase, true); +assertEq(regex.multiline, false); +assertEq(regex.unicode, false); +assertEq(regex.sticky, false); +assertEq(Object.getOwnPropertyDescriptor(regex, "lastIndex").writable, false); +assertEq(regex.lastIndex, 42); + +assertEq(regex.test("foo"), true); +assertEq(regex.test("FOO"), true); +assertThrowsInstanceOf(() => regex.test("bar"), TypeError); +assertThrowsInstanceOf(() => regex.test("BAR"), TypeError); + +assertThrowsInstanceOf(() => regex.compile("bar"), TypeError); + +assertEq(regex.global, false); +assertEq(regex.ignoreCase, false); +assertEq(regex.multiline, false); +assertEq(regex.unicode, false); +assertEq(regex.sticky, false); +assertEq(Object.getOwnPropertyDescriptor(regex, "lastIndex").writable, false); +assertEq(regex.lastIndex, 42); +assertThrowsInstanceOf(() => regex.test("foo"), TypeError); +assertThrowsInstanceOf(() => regex.test("FOO"), TypeError); +assertEq(regex.test("bar"), true); +assertThrowsInstanceOf(() => regex.test("BAR"), TypeError); + +assertThrowsInstanceOf(() => regex.compile("^baz", "m"), TypeError); + +assertEq(regex.global, false); +assertEq(regex.ignoreCase, false); +assertEq(regex.multiline, true); +assertEq(regex.unicode, false); +assertEq(regex.sticky, false); +assertEq(Object.getOwnPropertyDescriptor(regex, "lastIndex").writable, false); +assertEq(regex.lastIndex, 42); +assertThrowsInstanceOf(() => regex.test("foo"), TypeError); +assertThrowsInstanceOf(() => regex.test("FOO"), TypeError); +assertThrowsInstanceOf(() => regex.test("bar"), TypeError); +assertThrowsInstanceOf(() => regex.test("BAR"), TypeError); +assertEq(regex.test("baz"), true); +assertThrowsInstanceOf(() => regex.test("BAZ"), TypeError); +assertThrowsInstanceOf(() => regex.test("012345678901234567890123456789012345678901baz"), + TypeError); +assertEq(regex.test("012345678901234567890123456789012345678901\nbaz"), true); +assertThrowsInstanceOf(() => regex.test("012345678901234567890123456789012345678901BAZ"), + TypeError); +assertThrowsInstanceOf(() => regex.test("012345678901234567890123456789012345678901\nBAZ"), + TypeError); + +/******************************************************************************/ + +if (typeof reportCompare === "function") + reportCompare(true, true); + +print("Tests complete"); |