Imported Upstream version 1.0.0
[platform/upstream/js.git] / js / src / tests / ecma_3 / RegExp / 15.10.4.1-2.js
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* ***** BEGIN LICENSE BLOCK *****
3  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
4  *
5  * The contents of this file are subject to the Mozilla Public License Version
6  * 1.1 (the "License"); you may not use this file except in compliance with
7  * the License. You may obtain a copy of the License at
8  * http://www.mozilla.org/MPL/
9  *
10  * Software distributed under the License is distributed on an "AS IS" basis,
11  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
12  * for the specific language governing rights and limitations under the
13  * License.
14  *
15  * The Original Code is mozilla.org code.
16  *
17  * The Initial Developer of the Original Code is
18  * Netscape Communications Corporation.
19  * Portions created by the Initial Developer are Copyright (C) 1998
20  * the Initial Developer. All Rights Reserved.
21  *
22  * Contributor(s):
23  *   pschwartau@netscape.com
24  *
25  * Alternatively, the contents of this file may be used under the terms of
26  * either the GNU General Public License Version 2 or later (the "GPL"), or
27  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
28  * in which case the provisions of the GPL or the LGPL are applicable instead
29  * of those above. If you wish to allow use of your version of this file only
30  * under the terms of either the GPL or the LGPL, and not to allow others to
31  * use your version of this file under the terms of the MPL, indicate your
32  * decision by deleting the provisions above and replace them with the notice
33  * and other provisions required by the GPL or the LGPL. If you do not delete
34  * the provisions above, a recipient may use your version of this file under
35  * the terms of any one of the MPL, the GPL or the LGPL.
36  *
37  * ***** END LICENSE BLOCK ***** */
38
39 /*
40  * Date: 26 November 2000
41  *
42  *
43  *SUMMARY: Passing a RegExp object to a RegExp() constructor.
44  *This test arose from Bugzilla bug 61266. The ECMA3 section is:      
45  *
46  *  15.10.4.1 new RegExp(pattern, flags)
47  *
48  *  If pattern is an object R whose [[Class]] property is "RegExp" and
49  *  flags is undefined, then let P be the pattern used to construct R
50  *  and let F be the flags used to construct R. If pattern is an object R
51  *  whose [[Class]] property is "RegExp" and flags is not undefined,
52  *  then throw a TypeError exception. Otherwise, let P be the empty string 
53  *  if pattern is undefined and ToString(pattern) otherwise, and let F be
54  *  the empty string if flags is undefined and ToString(flags) otherwise.
55  *
56  *
57  *The current test will check the first scenario outlined above:
58  *
59  *   "pattern" is itself a RegExp object R
60  *   "flags"  is undefined
61  *
62  * We check that a new RegExp object obj2 defined from these parameters
63  * is morally the same as the original RegExp object obj1. Of course, they
64  * can't be equal as objects - so we check their enumerable properties...
65  *
66  * In this test, the initial RegExp object obj1 will not include a
67  * flag.  This test is identical to test 15.10.4.1-1.js, except that
68  * here we use this syntax:
69  *
70  *                  obj2 = new RegExp(obj1, undefined);
71  *
72  * instead of:
73  *
74  *                  obj2 = new RegExp(obj1);
75  */
76 //-----------------------------------------------------------------------------
77 var BUGNUMBER = '61266';
78 var summary = 'Passing a RegExp object to a RegExp() constructor';
79 var statprefix = 'Applying RegExp() twice to pattern ';
80 var statsuffix =  '; testing property ';
81 var singlequote = "'";
82 var i = -1; var s = '';
83 var obj1 = {}; var obj2 = {};
84 var status = ''; var actual = ''; var expect = ''; var msg = '';
85 var patterns = new Array(); 
86
87
88 // various regular expressions to try -
89 patterns[0] = '';
90 patterns[1] = 'abc';
91 patterns[2] = '(.*)(3-1)\s\w';
92 patterns[3] = '(.*)(...)\\s\\w';
93 patterns[4] = '[^A-Za-z0-9_]';
94 patterns[5] = '[^\f\n\r\t\v](123.5)([4 - 8]$)';
95
96
97
98 //-------------------------------------------------------------------------------------------------
99 test();
100 //-------------------------------------------------------------------------------------------------
101
102
103 function test()
104 {
105   enterFunc ('test');
106   printBugNumber(BUGNUMBER);
107   printStatus (summary);
108
109   for (i in patterns)
110   {
111     s = patterns[i];
112     status =getStatus(s);  
113     obj1 = new RegExp(s);
114     obj2 = new RegExp(obj1, undefined);  // see introduction to bug
115  
116     reportCompare (obj1 + '', obj2 + '', status);
117   }
118
119   exitFunc ('test');
120 }
121
122
123 function getStatus(regexp)
124 {
125   return (statprefix  +  quote(regexp) +  statsuffix);
126 }
127
128
129 function quote(text)
130 {
131   return (singlequote  +  text  + singlequote);
132 }