e691c518b4216cc78470a268179155811c61803d
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / parserstress / tests / ecma_3 / RegExp / regress-105972.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  *   mozilla@pdavis.cx, 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: 22 October 2001
41  *
42  * SUMMARY: Regression test for Bugzilla bug 105972:
43  * "/^.*?$/ will not match anything"
44  *
45  * See http://bugzilla.mozilla.org/show_bug.cgi?id=105972
46  */
47 //-----------------------------------------------------------------------------
48 var gTestfile = 'regress-105972.js';
49 var i = 0;
50 var BUGNUMBER = 105972;
51 var summary = 'Regression test for Bugzilla bug 105972';
52 var cnEmptyString = '';
53 var status = '';
54 var statusmessages = new Array();
55 var pattern = '';
56 var patterns = new Array();
57 var string = '';
58 var strings = new Array();
59 var actualmatch = '';
60 var actualmatches = new Array();
61 var expectedmatch = '';
62 var expectedmatches = new Array();
63
64
65 /*
66  * The bug: this match was coming up null in Rhino and SpiderMonkey.
67  * It should match the whole string. The reason:
68  *
69  * The * operator is greedy, but *? is non-greedy: it will stop
70  * at the simplest match it can find. But the pattern here asks us
71  * to match till the end of the string. So the simplest match must
72  * go all the way out to the end, and *? has no choice but to do it.
73  */
74 status = inSection(1);
75 pattern = /^.*?$/;
76 string = 'Hello World';
77 actualmatch = string.match(pattern);
78 expectedmatch = Array(string);
79 addThis();
80
81
82 /*
83  * Leave off the '$' condition - here we expect the empty string.
84  * Unlike the above pattern, we don't have to match till the end of
85  * the string, so the non-greedy operator *? doesn't try to...
86  */
87 status = inSection(2);
88 pattern = /^.*?/;
89 string = 'Hello World';
90 actualmatch = string.match(pattern);
91 expectedmatch = Array(cnEmptyString);
92 addThis();
93
94
95 /*
96  * Try '$' combined with an 'or' operator.
97  *
98  * The operator *? will consume the string from left to right,
99  * attempting to satisfy the condition (:|$). When it hits ':',
100  * the match will stop because the operator *? is non-greedy.
101  *
102  * The submatch $1 = (:|$) will contain the ':'
103  */
104 status = inSection(3);
105 pattern = /^.*?(:|$)/;
106 string = 'Hello: World';
107 actualmatch = string.match(pattern);
108 expectedmatch = Array('Hello:', ':');
109 addThis();
110
111
112 /*
113  * Again, '$' combined with an 'or' operator.
114  *
115  * The operator * will consume the string from left to right,
116  * attempting to satisfy the condition (:|$). When it hits ':',
117  * the match will not stop since * is greedy. The match will
118  * continue until it hits $, the end-of-string boundary.
119  *
120  * The submatch $1 = (:|$) will contain the empty string
121  * conceived to exist at the end-of-string boundary.
122  */
123 status = inSection(4);
124 pattern = /^.*(:|$)/;
125 string = 'Hello: World';
126 actualmatch = string.match(pattern);
127 expectedmatch = Array(string, cnEmptyString);
128 addThis();
129
130
131
132
133 //-----------------------------------------------------------------------------
134 test();
135 //-----------------------------------------------------------------------------
136
137
138
139 function addThis()
140 {
141   statusmessages[i] = status;
142   patterns[i] = pattern;
143   strings[i] = string;
144   actualmatches[i] = actualmatch;
145   expectedmatches[i] = expectedmatch;
146   i++;
147 }
148
149
150 function test()
151 {
152   enterFunc ('test');
153   printBugNumber(BUGNUMBER);
154   printStatus (summary);
155   testRegExp(statusmessages, patterns, strings, actualmatches, expectedmatches);
156   exitFunc ('test');
157 }