Imported Upstream version 1.0.0
[platform/upstream/js.git] / js / src / tests / ecma_2 / String / match-001.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-001.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-001.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 // cases in which the regexp global property is false
80
81 AddRegExpCases( 3, "3",   "1234567890", 1, 2, ["3"] );
82
83 // cases in which the regexp object global property is true
84
85 AddGlobalRegExpCases( /34/g, "/34/g", "343443444",  3, ["34", "34", "34"] );
86 AddGlobalRegExpCases( /\d{1}/g,  "/d{1}/g",  "123456abcde7890", 10,
87                       ["1", "2", "3", "4", "5", "6", "7", "8", "9", "0"] );
88
89 AddGlobalRegExpCases( /\d{2}/g,  "/d{2}/g",  "123456abcde7890", 5,
90                       ["12", "34", "56", "78", "90"] );
91
92 AddGlobalRegExpCases( /\D{2}/g,  "/d{2}/g",  "123456abcde7890", 2,
93                       ["ab", "cd"] );
94
95 test();
96
97
98 function AddRegExpCases(
99   regexp, str_regexp, string, length, index, matches_array ) {
100
101   AddTestCase(
102     "( " + string  + " ).match(" + str_regexp +").length",
103     length,
104     string.match(regexp).length );
105
106   AddTestCase(
107     "( " + string + " ).match(" + str_regexp +").index",
108     index,
109     string.match(regexp).index );
110
111   AddTestCase(
112     "( " + string + " ).match(" + str_regexp +").input",
113     string,
114     string.match(regexp).input );
115
116   for ( var matches = 0; matches < matches_array.length; matches++ ) {
117     AddTestCase(
118       "( " + string + " ).match(" + str_regexp +")[" + matches +"]",
119       matches_array[matches],
120       string.match(regexp)[matches] );
121   }
122 }
123
124 function AddGlobalRegExpCases(
125   regexp, str_regexp, string, length, matches_array ) {
126
127   AddTestCase(
128     "( " + string  + " ).match(" + str_regexp +").length",
129     length,
130     string.match(regexp).length );
131
132   for ( var matches = 0; matches < matches_array.length; matches++ ) {
133     AddTestCase(
134       "( " + string + " ).match(" + str_regexp +")[" + matches +"]",
135       matches_array[matches],
136       string.match(regexp)[matches] );
137   }
138 }