Imported Upstream version 1.0.0
[platform/upstream/js.git] / js / src / tests / ecma_3 / RegExp / 15.10.4.1-1.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. The flags parameter for obj2 will be undefined in the sense
68  * of not being provided.
69  */
70 //-----------------------------------------------------------------------------
71 var BUGNUMBER = '61266';
72 var summary = 'Passing a RegExp object to a RegExp() constructor';
73 var statprefix = 'Applying RegExp() twice to pattern ';
74 var statsuffix =  '; testing property ';
75 var singlequote = "'";
76 var i = -1; var s = '';
77 var obj1 = {}; var obj2 = {};
78 var status = ''; var actual = ''; var expect = ''; var msg = '';
79 var patterns = new Array(); 
80
81
82 // various regular expressions to try -
83 patterns[0] = '';
84 patterns[1] = 'abc';
85 patterns[2] = '(.*)(3-1)\s\w';
86 patterns[3] = '(.*)(...)\\s\\w';
87 patterns[4] = '[^A-Za-z0-9_]';
88 patterns[5] = '[^\f\n\r\t\v](123.5)([4 - 8]$)';
89
90
91
92 //-----------------------------------------------------------------------------
93 test();
94 //-----------------------------------------------------------------------------
95
96
97 function test()
98 {
99   enterFunc ('test');
100   printBugNumber(BUGNUMBER);
101   printStatus (summary);
102
103   for (i in patterns)
104   {
105     s = patterns[i];
106     status =getStatus(s);  
107     obj1 = new RegExp(s);
108     obj2 = new RegExp(obj1);
109  
110     reportCompare (obj1 + '', obj2 + '', status);
111   }
112
113   exitFunc ('test');
114 }
115
116
117 function getStatus(regexp)
118 {
119   return (statprefix  +  quote(regexp) +  statsuffix);
120 }
121
122
123 function quote(text)
124 {
125   return (singlequote  +  text  + singlequote);
126 }