1d67b8afe62cc215a23f2befef2c898be8d12339
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / parserstress / 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 gTestfile = '15.10.4.1-2.js';
78 var BUGNUMBER = '61266';
79 var summary = 'Passing a RegExp object to a RegExp() constructor';
80 var statprefix = 'Applying RegExp() twice to pattern ';
81 var statsuffix =  '; testing property ';
82 var singlequote = "'";
83 var i = -1; var s = '';
84 var obj1 = {}; var obj2 = {};
85 var status = ''; var actual = ''; var expect = ''; var msg = '';
86 var patterns = new Array(); 
87
88
89 // various regular expressions to try -
90 patterns[0] = '';
91 patterns[1] = 'abc';
92 patterns[2] = '(.*)(3-1)\s\w';
93 patterns[3] = '(.*)(...)\\s\\w';
94 patterns[4] = '[^A-Za-z0-9_]';
95 patterns[5] = '[^\f\n\r\t\v](123.5)([4 - 8]$)';
96
97
98
99 //-------------------------------------------------------------------------------------------------
100 test();
101 //-------------------------------------------------------------------------------------------------
102
103
104 function test()
105 {
106   enterFunc ('test');
107   printBugNumber(BUGNUMBER);
108   printStatus (summary);
109
110   for (i in patterns)
111   {
112     s = patterns[i];
113     status =getStatus(s);  
114     obj1 = new RegExp(s);
115     obj2 = new RegExp(obj1, undefined);  // see introduction to bug
116  
117     reportCompare (obj1 + '', obj2 + '', status);
118   }
119
120   exitFunc ('test');
121 }
122
123
124 function getStatus(regexp)
125 {
126   return (statprefix  +  quote(regexp) +  statsuffix);
127 }
128
129
130 function quote(text)
131 {
132   return (singlequote  +  text  + singlequote);
133 }