Imported Upstream version 1.0.0
[platform/upstream/js.git] / js / src / tests / ecma_2 / String / match-003.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-003.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
70 var SECTION = "String/match-003.js";
71 var VERSION = "ECMA_2";
72 var TITLE   = "String.prototype.match( regexp )";
73
74 startTest();
75
76 // the regexp argument is not a RegExp object
77 // this is not a string object
78
79
80 //  [if regexp.global is true] set the regexp.lastIndex property to 0 and
81 //  invoke RegExp.prototype.exec repeatedly until there is no match. If
82 //  there is a match with an empty string (in other words, if the value of
83 //  regexp.lastIndex is left unchanged) increment regexp.lastIndex by 1.
84 //  The value returned is an array with the properties 0 through n-1
85 //  corresponding to the first element of the result of each matching invocation
86 //  of RegExp.prototype.exec.
87
88
89 // set the value of lastIndex
90 re = /([\d]{5})([-\ ]?[\d]{4})?$/g;
91
92
93 s = "Boston, MA 02134";
94
95 AddGlobalRegExpCases( re,
96                       "re = " + re,
97                       s,
98                       ["02134" ]);
99
100 re.lastIndex = 0;
101
102 AddGlobalRegExpCases(
103   re,
104   "re = " + re + "; re.lastIndex = 0 ",
105   s,
106   ["02134"]);
107
108
109 re.lastIndex = s.length;
110
111 AddGlobalRegExpCases(
112   re,
113   "re = " + re + "; re.lastIndex = " + s.length,
114   s,
115   ["02134"] );
116
117 re.lastIndex = s.lastIndexOf("0");
118
119 AddGlobalRegExpCases(
120   re,
121   "re = "+ re +"; re.lastIndex = " + s.lastIndexOf("0"),
122   s,
123   ["02134"]);
124
125 re.lastIndex = s.lastIndexOf("0") + 1;
126
127 AddGlobalRegExpCases(
128   re,
129   "re = " +re+ "; re.lastIndex = " + (s.lastIndexOf("0") +1),
130   s,
131   ["02134"]);
132
133 test();
134
135 function AddGlobalRegExpCases(
136   regexp, str_regexp, string, matches_array ) {
137
138   // prevent a runtime error
139
140   if ( string.match(regexp) == null || matches_array == null ) {
141     AddTestCase(
142       string + ".match(" + str_regexp +")",
143       matches_array,
144       string.match(regexp) );
145
146     return;
147   }
148
149   AddTestCase(
150     "( " + string  + " ).match(" + str_regexp +").length",
151     matches_array.length,
152     string.match(regexp).length );
153
154   var limit = matches_array.length > string.match(regexp).length ?
155     matches_array.length :
156     string.match(regexp).length;
157
158   for ( var matches = 0; matches < limit; matches++ ) {
159     AddTestCase(
160       "( " + string + " ).match(" + str_regexp +")[" + matches +"]",
161       matches_array[matches],
162       string.match(regexp)[matches] );
163   }
164 }