Imported Upstream version 1.0.0
[platform/upstream/js.git] / js / src / tests / ecma_3 / RegExp / 15.10.2-1.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 Communications Corp.
19  * Portions created by the Initial Developer are Copyright (C) 2002
20  * the Initial Developer. All Rights Reserved.
21  *
22  * Contributor(s):
23  *   rogerl@netscape.com, 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  *
41  * Date:    09 July 2002
42  * SUMMARY: RegExp conformance test
43  *
44  *   These testcases are derived from the examples in the ECMA-262 Ed.3 spec
45  *   scattered through section 15.10.2.
46  *
47  */
48 //-----------------------------------------------------------------------------
49 var i = 0;
50 var BUGNUMBER = '(none)';
51 var summary = 'RegExp conformance test';
52 var status = '';
53 var statusmessages = new Array();
54 var pattern = '';
55 var patterns = new Array();
56 var string = '';
57 var strings = new Array();
58 var actualmatch = '';
59 var actualmatches = new Array();
60 var expectedmatch = '';
61 var expectedmatches = new Array();
62
63
64 status = inSection(1);
65 pattern = /a|ab/;
66 string = 'abc';
67 actualmatch = string.match(pattern);
68 expectedmatch = Array('a');
69 addThis();
70
71 status = inSection(2);
72 pattern = /((a)|(ab))((c)|(bc))/;
73 string = 'abc';
74 actualmatch = string.match(pattern);
75 expectedmatch = Array('abc', 'a', 'a', undefined, 'bc', undefined, 'bc');
76 addThis();
77
78 status = inSection(3);
79 pattern = /a[a-z]{2,4}/;
80 string = 'abcdefghi';
81 actualmatch = string.match(pattern);
82 expectedmatch = Array('abcde');
83 addThis();
84
85 status = inSection(4);
86 pattern = /a[a-z]{2,4}?/;
87 string = 'abcdefghi';
88 actualmatch = string.match(pattern);
89 expectedmatch = Array('abc');
90 addThis();
91
92 status = inSection(5);
93 pattern = /(aa|aabaac|ba|b|c)*/;
94 string = 'aabaac';
95 actualmatch = string.match(pattern);
96 expectedmatch = Array('aaba', 'ba');
97 addThis();
98
99 status = inSection(6);
100 pattern = /^(a+)\1*,\1+$/;
101 string = 'aaaaaaaaaa,aaaaaaaaaaaaaaa';
102 actualmatch = string.match(pattern);
103 expectedmatch = Array('aaaaaaaaaa,aaaaaaaaaaaaaaa', 'aaaaa');
104 addThis();
105
106 status = inSection(7);
107 pattern = /(z)((a+)?(b+)?(c))*/;
108 string = 'zaacbbbcac';
109 actualmatch = string.match(pattern);
110 expectedmatch = Array('zaacbbbcac', 'z', 'ac', 'a', undefined, 'c');
111 addThis();
112
113 status = inSection(8);
114 pattern = /(a*)*/;
115 string = 'b';
116 actualmatch = string.match(pattern);
117 expectedmatch = Array('', undefined);
118 addThis();
119
120 status = inSection(9);
121 pattern = /(a*)b\1+/;
122 string = 'baaaac';
123 actualmatch = string.match(pattern);
124 expectedmatch = Array('b', '');
125 addThis();
126
127 status = inSection(10);
128 pattern = /(?=(a+))/;
129 string = 'baaabac';
130 actualmatch = string.match(pattern);
131 expectedmatch = Array('', 'aaa');
132 addThis();
133
134 status = inSection(11);
135 pattern = /(?=(a+))a*b\1/;
136 string = 'baaabac';
137 actualmatch = string.match(pattern);
138 expectedmatch = Array('aba', 'a');
139 addThis();
140
141 status = inSection(12);
142 pattern = /(.*?)a(?!(a+)b\2c)\2(.*)/;
143 string = 'baaabaac';
144 actualmatch = string.match(pattern);
145 expectedmatch = Array('baaabaac', 'ba', undefined, 'abaac');
146 addThis();
147
148 status = inSection(13);
149 pattern = /(?=(a+))/;
150 string = 'baaabac';
151 actualmatch = string.match(pattern);
152 expectedmatch = Array('', 'aaa');
153 addThis();
154
155
156
157 //-------------------------------------------------------------------------------------------------
158 test();
159 //-------------------------------------------------------------------------------------------------
160
161
162 function addThis()
163 {
164   statusmessages[i] = status;
165   patterns[i] = pattern;
166   strings[i] = string;
167   actualmatches[i] = actualmatch;
168   expectedmatches[i] = expectedmatch;
169   i++;
170 }
171
172
173 function test()
174 {
175   enterFunc ('test');
176   printBugNumber(BUGNUMBER);
177   printStatus (summary);
178   testRegExp(statusmessages, patterns, strings, actualmatches, expectedmatches);
179   exitFunc ('test');
180 }