QML_RUNTIME_TESTING should be disabled by default.
[profile/ivi/qtdeclarative.git] / tests / auto / qml / parserstress / tests / ecma_2 / String / match-002.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 JavaScript Engine testing utilities.
16  *
17  * The Initial Developer of the Original Code is
18  * Netscape Communication Corporation.
19  * Portions created by the Initial Developer are Copyright (C) 1998
20  * the Initial Developer. All Rights Reserved.
21  *
22  * Contributor(s):
23  *
24  * Alternatively, the contents of this file may be used under the terms of
25  * either the GNU General Public License Version 2 or later (the "GPL"), or
26  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
27  * in which case the provisions of the GPL or the LGPL are applicable instead
28  * of those above. If you wish to allow use of your version of this file only
29  * under the terms of either the GPL or the LGPL, and not to allow others to
30  * use your version of this file under the terms of the MPL, indicate your
31  * decision by deleting the provisions above and replace them with the notice
32  * and other provisions required by the GPL or the LGPL. If you do not delete
33  * the provisions above, a recipient may use your version of this file under
34  * the terms of any one of the MPL, the GPL or the LGPL.
35  *
36  * ***** END LICENSE BLOCK ***** */
37
38 gTestfile = 'match-002.js';
39
40 /**
41  *  File Name:          String/match-002.js
42  *  ECMA Section:       15.6.4.9
43  *  Description:        Based on ECMA 2 Draft 7 February 1999
44  *
45  *  Author:             christine@netscape.com
46  *  Date:               19 February 1999
47  */
48
49 /*
50  *  String.match( regexp )
51  *
52  *  If regexp is not an object of type RegExp, it is replaced with result
53  *  of the expression new RegExp(regexp). Let string denote the result of
54  *  converting the this value to a string.  If regexp.global is false,
55  *  return the result obtained by invoking RegExp.prototype.exec (see
56  *  section 15.7.5.3) on regexp with string as parameter.
57  *
58  *  Otherwise, set the regexp.lastIndex property to 0 and invoke
59  *  RegExp.prototype.exec repeatedly until there is no match. If there is a
60  *  match with an empty string (in other words, if the value of
61  *  regexp.lastIndex is left unchanged) increment regexp.lastIndex by 1.
62  *  The value returned is an array with the properties 0 through n-1
63  *  corresponding to the first element of the result of each matching
64  *  invocation of RegExp.prototype.exec.
65  *
66  *  Note that the match function is intentionally generic; it does not
67  *  require that its this value be a string object.  Therefore, it can be
68  *  transferred to other kinds of objects for use as a method.
69  *
70  *  This file tests cases in which regexp.global is false.  Therefore,
71  *  results should behave as regexp.exec with string passed as a parameter.
72  *
73  */
74
75 var SECTION = "String/match-002.js";
76 var VERSION = "ECMA_2";
77 var TITLE   = "String.prototype.match( regexp )";
78
79 startTest();
80
81 // the regexp argument is not a RegExp object
82 // this is not a string object
83
84 AddRegExpCases( /([\d]{5})([-\ ]?[\d]{4})?$/,
85                 "/([\d]{5})([-\ ]?[\d]{4})?$/",
86                 "Boston, Mass. 02134",
87                 14,
88                 ["02134", "02134", undefined]);
89
90 AddGlobalRegExpCases( /([\d]{5})([-\ ]?[\d]{4})?$/g,
91                       "/([\d]{5})([-\ ]?[\d]{4})?$/g",
92                       "Boston, Mass. 02134",
93                       ["02134"]);
94
95 // set the value of lastIndex
96 re = /([\d]{5})([-\ ]?[\d]{4})?$/;
97 re.lastIndex = 0;
98
99 s = "Boston, MA 02134";
100
101 AddRegExpCases( re,
102                 "re = /([\d]{5})([-\ ]?[\d]{4})?$/; re.lastIndex =0",
103                 s,
104                 s.lastIndexOf("0"),
105                 ["02134", "02134", undefined]);
106
107
108 re.lastIndex = s.length;
109
110 AddRegExpCases( re,
111                 "re = /([\d]{5})([-\ ]?[\d]{4})?$/; re.lastIndex = " +
112                 s.length,
113                 s,
114                 s.lastIndexOf("0"),
115                 ["02134", "02134", undefined] );
116
117 re.lastIndex = s.lastIndexOf("0");
118
119 AddRegExpCases( re,
120                 "re = /([\d]{5})([-\ ]?[\d]{4})?$/; re.lastIndex = " +
121                 s.lastIndexOf("0"),
122                 s,
123                 s.lastIndexOf("0"),
124                 ["02134", "02134", undefined]);
125
126 re.lastIndex = s.lastIndexOf("0") + 1;
127
128 AddRegExpCases( re,
129                 "re = /([\d]{5})([-\ ]?[\d]{4})?$/; re.lastIndex = " +
130                 s.lastIndexOf("0") +1,
131                 s,
132                 s.lastIndexOf("0"),
133                 ["02134", "02134", undefined]);
134
135 test();
136
137 function AddRegExpCases(
138   regexp, str_regexp, string, index, matches_array ) {
139
140   // prevent a runtime error
141
142   if ( regexp.exec(string) == null || matches_array == null ) {
143     AddTestCase(
144       string + ".match(" + regexp +")",
145       matches_array,
146       string.match(regexp) );
147
148     return;
149   }
150
151   AddTestCase(
152     "( " + string  + " ).match(" + str_regexp +").length",
153     matches_array.length,
154     string.match(regexp).length );
155
156   AddTestCase(
157     "( " + string + " ).match(" + str_regexp +").index",
158     index,
159     string.match(regexp).index );
160
161   AddTestCase(
162     "( " + string + " ).match(" + str_regexp +").input",
163     string,
164     string.match(regexp).input );
165
166   var limit = matches_array.length > string.match(regexp).length ?
167     matches_array.length :
168     string.match(regexp).length;
169
170   for ( var matches = 0; matches < limit; matches++ ) {
171     AddTestCase(
172       "( " + string + " ).match(" + str_regexp +")[" + matches +"]",
173       matches_array[matches],
174       string.match(regexp)[matches] );
175   }
176 }
177
178 function AddGlobalRegExpCases(
179   regexp, str_regexp, string, matches_array ) {
180
181   // prevent a runtime error
182
183   if ( regexp.exec(string) == null || matches_array == null ) {
184     AddTestCase(
185       regexp + ".exec(" + string +")",
186       matches_array,
187       regexp.exec(string) );
188
189     return;
190   }
191
192   AddTestCase(
193     "( " + string  + " ).match(" + str_regexp +").length",
194     matches_array.length,
195     string.match(regexp).length );
196
197   var limit = matches_array.length > string.match(regexp).length ?
198     matches_array.length :
199     string.match(regexp).length;
200
201   for ( var matches = 0; matches < limit; matches++ ) {
202     AddTestCase(
203       "( " + string + " ).match(" + str_regexp +")[" + matches +"]",
204       matches_array[matches],
205       string.match(regexp)[matches] );
206   }
207 }