| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128 |
- //-------------------------------------------------------------------------------------------------------
- // Copyright (C) Microsoft. All rights reserved.
- // Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
- //-------------------------------------------------------------------------------------------------------
- WScript.LoadScriptFile("..\\UnitTestFramework\\UnitTestFramework.js");
- var tests = [
- {
- name: "Case-folding should be applied for a single character pattern when the unicode flag is present",
- body: function () {
- assert.isTrue(/a/ui.test("A"), "UnicodeData fallback");
- assert.isTrue(/\u004b/ui.test("\u212a"), "Code unit");
- }
- },
- {
- name: "Case-folding should NOT be applied for a single character pattern when the unicode flag is NOT present",
- body: function () {
- assert.isFalse(/\u004b/i.test("\u212a"));
- }
- },
- {
- name: "Case-folding should be applied for a single character term when the unicode flag is present",
- body: function () {
- assert.isTrue(/aa|b/ui.test("B"), "UnicodeData fallback");
- assert.isTrue(/aa|\u004b/ui.test("\u212a"), "Code unit");
- }
- },
- {
- name: "Case-folding should NOT be applied for a single character term when the unicode flag is NOT present",
- body: function () {
- assert.isFalse(/aa|\u004b/i.test("\u212a"));
- }
- },
- {
- name: "Case-folding should be applied for literals using literal instruction when the unicode flag is present",
- body: function () {
- assert.isTrue(/^aaa/ui.test("aaA"), "MatchLiteralInst: UnicodeData fallback");
- assert.isTrue(/^aa\u004b/ui.test("aa\u212a"), "MatchLiteralInst: Code unit");
- assert.isTrue(/aaa/ui.test("aaA"), "SyncToLiteral...Inst: UnicodeData fallback");
- assert.isTrue(/aa\u004b/ui.test("aa\u212a"), "SyncToLiteral...Inst: Code unit");
- assert.isTrue(/aa\u{10429}/ui.test("aa\u{10401}"), "Code point in both RegExp and string to test");
- assert.isTrue(/aa\u{10429}/ui.test("aa\ud801\udc01"), "Code point in RegExp and surrogate pair in string to test");
- assert.isTrue(/aa\ud801\udc29/ui.test("aa\u{10401}"), "Surrogate pair in RegExp and code point in string to test");
- assert.isTrue(/aa\ud801\udc29/ui.test("aa\ud801\udc01"), "Surrogate pair in both RegExp and string to test");
- assert.isTrue(/aa\u{10429}\u{10429}/ui.test("aa\u{10401}\u{10401}"), "Multiple code points");
- assert.isTrue(/aa\ud801\udc29\ud801\udc29/ui.test("aa\ud801\udc29\ud801\udc29"), "Multiple surrogate pairs");
- }
- },
- {
- name: "Case-folding should NOT be applied for literals using literal instruction when the unicode flag is NOT present",
- body: function () {
- assert.isFalse(/^aa\u004b/i.test("aa\u212a"), "MatchLiteralInst");
- assert.isFalse(/aa\u004b/i.test("aa\u212a"), "SyncToLiteral...Inst");
- }
- },
- {
- name: "Case-folding should be applied for character sets when the unicode flag is present",
- body: function () {
- assert.isTrue(/^[ab]/ui.test("A"), "MatchSetInst: UnicodeData fallback");
- assert.isTrue(/^[a\u004b]/ui.test("\u212a"), "MatchSetInst: Code unit");
- assert.isTrue(/[ab]/ui.test("A"), "SyncToSet...Inst: UnicodeData fallback");
- assert.isTrue(/[a\u004b]/ui.test("\u212a"), "SyncToSet...Inst: Code unit");
- assert.isTrue(/[a\u{10429}]/ui.test("\u{10401}"), "Code point in both RegExp and in string to test");
- assert.isTrue(/[a\u{10429}]/ui.test("\ud801\udc01"), "Code point in RegExp and surrogate pair in string to test");
- assert.isTrue(/[a\ud801\udc29]/ui.test("\u{10401}"), "Surrogate pair in RegExp and code point in string to test");
- assert.isTrue(/[a\ud801\udc29]/ui.test("\ud801\udc01"), "Surrogate pair in both RegExp and string to test");
- assert.isTrue(/[\u{10428}-\u{10430}]/ui.test("\u{10401}"), "Code point range");
- assert.isTrue(/[\ud801\udc28-\ud801\udc30]/ui.test("\ud801\udc01"), "Surrogate pair range");
- }
- },
- {
- name: "Case-folding should NOT be applied for character sets when the unicode flag is NOT present",
- body: function () {
- assert.isFalse(/^[a\u004b]/i.test("\u212a"), "MatchSetInst");
- assert.isFalse(/[a\u004b]/i.test("\u212a"), "SyncToSet...Inst");
- }
- },
- {
- name: "Case-folding should be applied for back references when the unicode flag is present",
- body: function () {
- assert.isTrue(/(a)\1/ui.test("aA"), "UnicodeData fallback");
- assert.isTrue(/(\u004b)\1/ui.test("\u004b\u212a"), "Code unit");
- assert.isTrue(/(\u{10429})\1/ui.test("\u{10429}\u{10401}"), "Code point in both RegExp and string to test");
- assert.isTrue(/(\u{10429})\1/ui.test("\u{10429}\ud801\udc01"), "Code point in RegExp and surrogate pair in string to test");
- assert.isTrue(/(\ud801\udc29)\1/ui.test("\ud801\udc29\u{10401}"), "Surrogate pair in RegExp and code point in string to test");
- assert.isTrue(/(\ud801\udc29)\1/ui.test("\ud801\udc29\ud801\udc29"), "Surrogate pair in both RegExp and string to test");
- assert.isTrue(/(\u{10429}\u{10429})\1/ui.test("\u{10429}\u{10429}\u{10401}\u{10401}"), "Multiple code points");
- assert.isTrue(/(\ud801\udc29\ud801\udc29)\1/ui.test("\ud801\udc29\ud801\udc29\ud801\udc01\ud801\udc01"), "Multiple surrogate pairs");
- }
- },
- {
- name: "Case-folding should NOT be applied for back references when the unicode flag is NOT present",
- body: function () {
- assert.isFalse(/(\u004b)\1/i.test("\u004b\u212a"), "Code unit");
- }
- },
- {
- name: "Case-folding should be applied for quantifiers when the unicode flag is present",
- body: function () {
- assert.isTrue(/^aa(?:\u004b)?/ui.test("aa\u212a"), "?");
- assert.isTrue(/^aa(?:\u004b)+/ui.test("aa\u004b\u212a"), "+");
- assert.isTrue(/^aa(?:\u004b)*/ui.test("aa\u004b\u212a"), "*");
- assert.isTrue(/^aa(?:\u004b){2}/ui.test("aa\u004b\u212a"), "{2}");
- }
- },
- {
- name: "Up to four code points should be in the same case-folding equivalence group",
- body: function () {
- var equivs = ["0399", "03b9", "1fbe"];
- equivs.forEach(function (hex) {
- var equivChar = eval("'\\u" + hex + "'");
- assert.isTrue(/\u0345/ui.test(equivChar), "\\u0345 -> \\u" + hex + " as a single character pattern");
- assert.isTrue(/^\u0345/ui.test(equivChar), "MatchChar4Inst: \\u0345 -> \\u" + hex + " as a single character pattern");
- assert.isTrue(/aa|\u0345/ui.test(equivChar), "SyncToSetAndContinue: \\u0345 -> \\u" + hex + " as a single character term");
- assert.isTrue(/aa\u0345/ui.test("aa" + equivChar), "\\u0345 -> \\u" + hex + " in literal");
- assert.isTrue(/[a\u0345]/ui.test(equivChar), "\\u0345 -> \\u" + hex + " in character set");
- assert.isTrue(/(\u0345)\1/ui.test("\u0345" + equivChar), "\\u0345 -> \\u" + hex + " in back reference");
- });
- }
- }
- ];
- testRunner.runTests(tests, { verbose: WScript.Arguments[0] != "summary" });
|