|
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ |
|
2 /* This Source Code Form is subject to the terms of the Mozilla Public |
|
3 * License, v. 2.0. If a copy of the MPL was not distributed with this |
|
4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
|
5 |
|
6 /* |
|
7 * Date: 26 November 2000 |
|
8 * |
|
9 * |
|
10 *SUMMARY: Passing a RegExp object to a RegExp() constructor. |
|
11 *This test arose from Bugzilla bug 61266. The ECMA3 section is: |
|
12 * |
|
13 * 15.10.4.1 new RegExp(pattern, flags) |
|
14 * |
|
15 * If pattern is an object R whose [[Class]] property is "RegExp" and |
|
16 * flags is undefined, then let P be the pattern used to construct R |
|
17 * and let F be the flags used to construct R. If pattern is an object R |
|
18 * whose [[Class]] property is "RegExp" and flags is not undefined, |
|
19 * then throw a TypeError exception. Otherwise, let P be the empty string |
|
20 * if pattern is undefined and ToString(pattern) otherwise, and let F be |
|
21 * the empty string if flags is undefined and ToString(flags) otherwise. |
|
22 * |
|
23 * |
|
24 *The current test will check the first scenario outlined above: |
|
25 * |
|
26 * "pattern" is itself a RegExp object R |
|
27 * "flags" is undefined |
|
28 * |
|
29 * We check that a new RegExp object obj2 defined from these parameters |
|
30 * is morally the same as the original RegExp object obj1. Of course, they |
|
31 * can't be equal as objects - so we check their enumerable properties... |
|
32 * |
|
33 * In this test, the initial RegExp obj1 will include a flag. The flags |
|
34 * parameter for obj2 will be undefined in the sense of not being provided. |
|
35 */ |
|
36 //----------------------------------------------------------------------------- |
|
37 var BUGNUMBER = '61266'; |
|
38 var summary = 'Passing a RegExp object to a RegExp() constructor'; |
|
39 var statprefix = 'Applying RegExp() twice to pattern '; |
|
40 var statmiddle = ' and flag '; |
|
41 var statsuffix = '; testing property '; |
|
42 var singlequote = "'"; |
|
43 var i = -1; var j = -1; var s = ''; |
|
44 var obj1 = {}; var obj2 = {}; |
|
45 var status = ''; var actual = ''; var expect = ''; var msg = ''; |
|
46 var patterns = new Array(); |
|
47 var flags = new Array(); |
|
48 |
|
49 |
|
50 // various regular expressions to try - |
|
51 patterns[0] = ''; |
|
52 patterns[1] = 'abc'; |
|
53 patterns[2] = '(.*)(3-1)\s\w'; |
|
54 patterns[3] = '(.*)(...)\\s\\w'; |
|
55 patterns[4] = '[^A-Za-z0-9_]'; |
|
56 patterns[5] = '[^\f\n\r\t\v](123.5)([4 - 8]$)'; |
|
57 |
|
58 // various flags to try - |
|
59 flags[0] = 'i'; |
|
60 flags[1] = 'g'; |
|
61 flags[2] = 'm'; |
|
62 flags[3] = undefined; |
|
63 |
|
64 |
|
65 |
|
66 //------------------------------------------------------------------------------------------------- |
|
67 test(); |
|
68 //------------------------------------------------------------------------------------------------- |
|
69 |
|
70 |
|
71 function test() |
|
72 { |
|
73 enterFunc ('test'); |
|
74 printBugNumber(BUGNUMBER); |
|
75 printStatus (summary); |
|
76 |
|
77 for (i in patterns) |
|
78 { |
|
79 s = patterns[i]; |
|
80 |
|
81 for (j in flags) |
|
82 { |
|
83 f = flags[j]; |
|
84 status = getStatus(s, f); |
|
85 obj1 = new RegExp(s, f); |
|
86 obj2 = new RegExp(obj1); |
|
87 |
|
88 reportCompare (obj1 + '', obj2 + '', status); |
|
89 } |
|
90 } |
|
91 |
|
92 exitFunc ('test'); |
|
93 } |
|
94 |
|
95 |
|
96 function getStatus(regexp, flag) |
|
97 { |
|
98 return (statprefix + quote(regexp) + statmiddle + flag + statsuffix); |
|
99 } |
|
100 |
|
101 |
|
102 function quote(text) |
|
103 { |
|
104 return (singlequote + text + singlequote); |
|
105 } |