QML_RUNTIME_TESTING should be disabled by default.
[profile/ivi/qtdeclarative.git] / tests / auto / qml / parserstress / tests / ecma_3 / RegExp / regress-224676.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) 2003
20  * the Initial Developer. All Rights Reserved.
21  *
22  * Contributor(s):
23  *   zack-weg@gmx.de, 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:    04 November 2003
42  * SUMMARY: Testing regexps with various disjunction + character class patterns
43  *
44  * See http://bugzilla.mozilla.org/show_bug.cgi?id=224676
45  *
46  */
47 //-----------------------------------------------------------------------------
48 var gTestfile = 'regress-224676.js';
49 var i = 0;
50 var BUGNUMBER = 224676;
51 var summary = 'Regexps with various disjunction + character class patterns';
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 string = 'ZZZxZZZ';
65 status = inSection(1);
66 pattern = /[x]|x/;
67 actualmatch = string.match(pattern);
68 expectedmatch = Array('x');
69 addThis();
70
71 status = inSection(2);
72 pattern = /x|[x]/;
73 actualmatch = string.match(pattern);
74 expectedmatch = Array('x');
75 addThis();
76
77
78 string = 'ZZZxbZZZ';
79 status = inSection(3);
80 pattern = /a|[x]b/;
81 actualmatch = string.match(pattern);
82 expectedmatch = Array('xb');
83 addThis();
84
85 status = inSection(4);
86 pattern = /[x]b|a/;
87 actualmatch = string.match(pattern);
88 expectedmatch = Array('xb');
89 addThis();
90
91 status = inSection(5);
92 pattern = /([x]b|a)/;
93 actualmatch = string.match(pattern);
94 expectedmatch = Array('xb', 'xb');
95 addThis();
96
97 status = inSection(6);
98 pattern = /([x]b|a)|a/;
99 actualmatch = string.match(pattern);
100 expectedmatch = Array('xb', 'xb');
101 addThis();
102
103 status = inSection(7);
104 pattern = /^[x]b|a/;
105 actualmatch = string.match(pattern);
106 expectedmatch = null;
107 addThis();
108
109
110 string = 'xb';
111 status = inSection(8);
112 pattern = /^[x]b|a/;
113 actualmatch = string.match(pattern);
114 expectedmatch = Array('xb');
115 addThis();
116
117
118 string = 'ZZZxbZZZ';
119 status = inSection(9);
120 pattern = /([x]b)|a/;
121 actualmatch = string.match(pattern);
122 expectedmatch = Array('xb', 'xb');
123 addThis();
124
125 status = inSection(10);
126 pattern = /()[x]b|a/;
127 actualmatch = string.match(pattern);
128 expectedmatch = Array('xb', '');
129 addThis();
130
131 status = inSection(11);
132 pattern = /x[b]|a/;
133 actualmatch = string.match(pattern);
134 expectedmatch = Array('xb');
135 addThis();
136
137 status = inSection(12);
138 pattern = /[x]{1}b|a/;
139 actualmatch = string.match(pattern);
140 expectedmatch = Array('xb');
141 addThis();
142
143 status = inSection(13);
144 pattern = /[x]b|a|a/;
145 actualmatch = string.match(pattern);
146 expectedmatch = Array('xb');
147 addThis();
148
149 status = inSection(14);
150 pattern = /[x]b|[a]/;
151 actualmatch = string.match(pattern);
152 expectedmatch = Array('xb');
153 addThis();
154
155 status = inSection(15);
156 pattern = /[x]b|a+/;
157 actualmatch = string.match(pattern);
158 expectedmatch = Array('xb');
159 addThis();
160
161 status = inSection(16);
162 pattern = /[x]b|a{1}/;
163 actualmatch = string.match(pattern);
164 expectedmatch = Array('xb');
165 addThis();
166
167 status = inSection(17);
168 pattern = /[x]b|(a)/;
169 actualmatch = string.match(pattern);
170 expectedmatch = Array('xb', undefined);
171 addThis();
172
173 status = inSection(18);
174 pattern = /[x]b|()a/;
175 actualmatch = string.match(pattern);
176 expectedmatch = Array('xb', undefined);
177 addThis();
178
179 status = inSection(19);
180 pattern = /[x]b|^a/;
181 actualmatch = string.match(pattern);
182 expectedmatch = Array('xb');
183 addThis();
184
185 status = inSection(20);
186 pattern = /a|[^b]b/;
187 actualmatch = string.match(pattern);
188 expectedmatch = Array('xb');
189 addThis();
190
191 status = inSection(21);
192 pattern = /a|[^b]{1}b/;
193 actualmatch = string.match(pattern);
194 expectedmatch = Array('xb');
195 addThis();
196
197
198 string = 'hallo\";'
199   status = inSection(22);
200 pattern = /^((\\[^\x00-\x1f]|[^\x00-\x1f"\\])*)"/;
201                               actualmatch = string.match(pattern);
202                               expectedmatch = Array('hallo"', 'hallo', 'o');
203                               addThis();
204
205
206
207
208 //-------------------------------------------------------------------------------------------------
209                               test();
210 //-------------------------------------------------------------------------------------------------
211
212
213
214                               function addThis()
215                               {
216                                 statusmessages[i] = status;
217                                 patterns[i] = pattern;
218                                 strings[i] = string;
219                                 actualmatches[i] = actualmatch;
220                                 expectedmatches[i] = expectedmatch;
221                                 i++;
222                               }
223
224
225                               function test()
226 {
227   enterFunc ('test');
228   printBugNumber(BUGNUMBER);
229   printStatus (summary);
230   testRegExp(statusmessages, patterns, strings, actualmatches, expectedmatches);
231   exitFunc ('test');
232 }