Imported Upstream version 1.0.0
[platform/upstream/js.git] / js / src / 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
39 /**
40  *  File Name:          String/match-002.js
41  *  ECMA Section:       15.6.4.9
42  *  Description:        Based on ECMA 2 Draft 7 February 1999
43  *
44  *  Author:             christine@netscape.com
45  *  Date:               19 February 1999
46  */
47
48 /*
49  *  String.match( regexp )
50  *
51  *  If regexp is not an object of type RegExp, it is replaced with result
52  *  of the expression new RegExp(regexp). Let string denote the result of
53  *  converting the this value to a string.  If regexp.global is false,
54  *  return the result obtained by invoking RegExp.prototype.exec (see
55  *  section 15.7.5.3) on regexp with string as parameter.
56  *
57  *  Otherwise, set the regexp.lastIndex property to 0 and invoke
58  *  RegExp.prototype.exec repeatedly until there is no match. If there is a
59  *  match with an empty string (in other words, if the value of
60  *  regexp.lastIndex is left unchanged) increment regexp.lastIndex by 1.
61  *  The value returned is an array with the properties 0 through n-1
62  *  corresponding to the first element of the result of each matching
63  *  invocation of RegExp.prototype.exec.
64  *
65  *  Note that the match function is intentionally generic; it does not
66  *  require that its this value be a string object.  Therefore, it can be
67  *  transferred to other kinds of objects for use as a method.
68  *
69  *  This file tests cases in which regexp.global is false.  Therefore,
70  *  results should behave as regexp.exec with string passed as a parameter.
71  *
72  */
73
74 var SECTION = "String/match-002.js";
75 var VERSION = "ECMA_2";
76 var TITLE   = "String.prototype.match( regexp )";
77
78 startTest();
79
80 // the regexp argument is not a RegExp object
81 // this is not a string object
82
83 AddRegExpCases( /([\d]{5})([-\ ]?[\d]{4})?$/,
84                 "/([\d]{5})([-\ ]?[\d]{4})?$/",
85                 "Boston, Mass. 02134",
86                 14,
87                 ["02134", "02134", undefined]);
88
89 AddGlobalRegExpCases( /([\d]{5})([-\ ]?[\d]{4})?$/g,
90                       "/([\d]{5})([-\ ]?[\d]{4})?$/g",
91                       "Boston, Mass. 02134",
92                       ["02134"]);
93
94 // set the value of lastIndex
95 re = /([\d]{5})([-\ ]?[\d]{4})?$/;
96 re.lastIndex = 0;
97
98 s = "Boston, MA 02134";
99
100 AddRegExpCases( re,
101                 "re = /([\d]{5})([-\ ]?[\d]{4})?$/; re.lastIndex =0",
102                 s,
103                 s.lastIndexOf("0"),
104                 ["02134", "02134", undefined]);
105
106
107 re.lastIndex = s.length;
108
109 AddRegExpCases( re,
110                 "re = /([\d]{5})([-\ ]?[\d]{4})?$/; re.lastIndex = " +
111                 s.length,
112                 s,
113                 s.lastIndexOf("0"),
114                 ["02134", "02134", undefined] );
115
116 re.lastIndex = s.lastIndexOf("0");
117
118 AddRegExpCases( re,
119                 "re = /([\d]{5})([-\ ]?[\d]{4})?$/; re.lastIndex = " +
120                 s.lastIndexOf("0"),
121                 s,
122                 s.lastIndexOf("0"),
123                 ["02134", "02134", undefined]);
124
125 re.lastIndex = s.lastIndexOf("0") + 1;
126
127 AddRegExpCases( re,
128                 "re = /([\d]{5})([-\ ]?[\d]{4})?$/; re.lastIndex = " +
129                 s.lastIndexOf("0") +1,
130                 s,
131                 s.lastIndexOf("0"),
132                 ["02134", "02134", undefined]);
133
134 test();
135
136 function AddRegExpCases(
137   regexp, str_regexp, string, index, matches_array ) {
138
139   // prevent a runtime error
140
141   if ( regexp.exec(string) == null || matches_array == null ) {
142     AddTestCase(
143       string + ".match(" + regexp +")",
144       matches_array,
145       string.match(regexp) );
146
147     return;
148   }
149
150   AddTestCase(
151     "( " + string  + " ).match(" + str_regexp +").length",
152     matches_array.length,
153     string.match(regexp).length );
154
155   AddTestCase(
156     "( " + string + " ).match(" + str_regexp +").index",
157     index,
158     string.match(regexp).index );
159
160   AddTestCase(
161     "( " + string + " ).match(" + str_regexp +").input",
162     string,
163     string.match(regexp).input );
164
165   var limit = matches_array.length > string.match(regexp).length ?
166     matches_array.length :
167     string.match(regexp).length;
168
169   for ( var matches = 0; matches < limit; matches++ ) {
170     AddTestCase(
171       "( " + string + " ).match(" + str_regexp +")[" + matches +"]",
172       matches_array[matches],
173       string.match(regexp)[matches] );
174   }
175 }
176
177 function AddGlobalRegExpCases(
178   regexp, str_regexp, string, matches_array ) {
179
180   // prevent a runtime error
181
182   if ( regexp.exec(string) == null || matches_array == null ) {
183     AddTestCase(
184       regexp + ".exec(" + string +")",
185       matches_array,
186       regexp.exec(string) );
187
188     return;
189   }
190
191   AddTestCase(
192     "( " + string  + " ).match(" + str_regexp +").length",
193     matches_array.length,
194     string.match(regexp).length );
195
196   var limit = matches_array.length > string.match(regexp).length ?
197     matches_array.length :
198     string.match(regexp).length;
199
200   for ( var matches = 0; matches < limit; matches++ ) {
201     AddTestCase(
202       "( " + string + " ).match(" + str_regexp +")[" + matches +"]",
203       matches_array[matches],
204       string.match(regexp)[matches] );
205   }
206 }