1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/js/src/tests/ecma_3/RegExp/15.10.4.1-3.js Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,105 @@ 1.4 +/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ 1.5 +/* This Source Code Form is subject to the terms of the Mozilla Public 1.6 + * License, v. 2.0. If a copy of the MPL was not distributed with this 1.7 + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 1.8 + 1.9 +/* 1.10 + * Date: 26 November 2000 1.11 + * 1.12 + * 1.13 + *SUMMARY: Passing a RegExp object to a RegExp() constructor. 1.14 + *This test arose from Bugzilla bug 61266. The ECMA3 section is: 1.15 + * 1.16 + * 15.10.4.1 new RegExp(pattern, flags) 1.17 + * 1.18 + * If pattern is an object R whose [[Class]] property is "RegExp" and 1.19 + * flags is undefined, then let P be the pattern used to construct R 1.20 + * and let F be the flags used to construct R. If pattern is an object R 1.21 + * whose [[Class]] property is "RegExp" and flags is not undefined, 1.22 + * then throw a TypeError exception. Otherwise, let P be the empty string 1.23 + * if pattern is undefined and ToString(pattern) otherwise, and let F be 1.24 + * the empty string if flags is undefined and ToString(flags) otherwise. 1.25 + * 1.26 + * 1.27 + *The current test will check the first scenario outlined above: 1.28 + * 1.29 + * "pattern" is itself a RegExp object R 1.30 + * "flags" is undefined 1.31 + * 1.32 + * We check that a new RegExp object obj2 defined from these parameters 1.33 + * is morally the same as the original RegExp object obj1. Of course, they 1.34 + * can't be equal as objects - so we check their enumerable properties... 1.35 + * 1.36 + * In this test, the initial RegExp obj1 will include a flag. The flags 1.37 + * parameter for obj2 will be undefined in the sense of not being provided. 1.38 + */ 1.39 +//----------------------------------------------------------------------------- 1.40 +var BUGNUMBER = '61266'; 1.41 +var summary = 'Passing a RegExp object to a RegExp() constructor'; 1.42 +var statprefix = 'Applying RegExp() twice to pattern '; 1.43 +var statmiddle = ' and flag '; 1.44 +var statsuffix = '; testing property '; 1.45 +var singlequote = "'"; 1.46 +var i = -1; var j = -1; var s = ''; 1.47 +var obj1 = {}; var obj2 = {}; 1.48 +var status = ''; var actual = ''; var expect = ''; var msg = ''; 1.49 +var patterns = new Array(); 1.50 +var flags = new Array(); 1.51 + 1.52 + 1.53 +// various regular expressions to try - 1.54 +patterns[0] = ''; 1.55 +patterns[1] = 'abc'; 1.56 +patterns[2] = '(.*)(3-1)\s\w'; 1.57 +patterns[3] = '(.*)(...)\\s\\w'; 1.58 +patterns[4] = '[^A-Za-z0-9_]'; 1.59 +patterns[5] = '[^\f\n\r\t\v](123.5)([4 - 8]$)'; 1.60 + 1.61 +// various flags to try - 1.62 +flags[0] = 'i'; 1.63 +flags[1] = 'g'; 1.64 +flags[2] = 'm'; 1.65 +flags[3] = undefined; 1.66 + 1.67 + 1.68 + 1.69 +//------------------------------------------------------------------------------------------------- 1.70 +test(); 1.71 +//------------------------------------------------------------------------------------------------- 1.72 + 1.73 + 1.74 +function test() 1.75 +{ 1.76 + enterFunc ('test'); 1.77 + printBugNumber(BUGNUMBER); 1.78 + printStatus (summary); 1.79 + 1.80 + for (i in patterns) 1.81 + { 1.82 + s = patterns[i]; 1.83 + 1.84 + for (j in flags) 1.85 + { 1.86 + f = flags[j]; 1.87 + status = getStatus(s, f); 1.88 + obj1 = new RegExp(s, f); 1.89 + obj2 = new RegExp(obj1); 1.90 + 1.91 + reportCompare (obj1 + '', obj2 + '', status); 1.92 + } 1.93 + } 1.94 + 1.95 + exitFunc ('test'); 1.96 +} 1.97 + 1.98 + 1.99 +function getStatus(regexp, flag) 1.100 +{ 1.101 + return (statprefix + quote(regexp) + statmiddle + flag + statsuffix); 1.102 +} 1.103 + 1.104 + 1.105 +function quote(text) 1.106 +{ 1.107 + return (singlequote + text + singlequote); 1.108 +}