QML_RUNTIME_TESTING should be disabled by default.
[profile/ivi/qtdeclarative.git] / tests / auto / qml / parserstress / tests / ecma_3 / Unicode / uc-005.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:    15 July 2002
42  * SUMMARY: Testing identifiers with double-byte names
43  * See http://bugzilla.mozilla.org/show_bug.cgi?id=58274
44  *
45  * Here is a sample of the problem:
46  *
47  *    js> function f\u02B1 () {}
48  *
49  *    js> f\u02B1.toSource();
50  *    function f¦() {}
51  *
52  *    js> f\u02B1.toSource().toSource();
53  *    (new String("function f\xB1() {}"))
54  *
55  *
56  * See how the high-byte information (the 02) has been lost?
57  * The same thing was happening with the toString() method:
58  *
59  *    js> f\u02B1.toString();
60  *
61  *    function f¦() {
62  *    }
63  *
64  *    js> f\u02B1.toString().toSource();
65  *    (new String("\nfunction f\xB1() {\n}\n"))
66  *
67  */
68 //-----------------------------------------------------------------------------
69 var gTestfile = 'uc-005.js';
70 var UBound = 0;
71 var BUGNUMBER = 58274;
72 var summary = 'Testing identifiers with double-byte names';
73 var status = '';
74 var statusitems = [];
75 var actual = '';
76 var actualvalues = [];
77 var expect= '';
78 var expectedvalues = [];
79
80
81 /*
82  * Define a function that uses double-byte identifiers in
83  * "every possible way"
84  *
85  * Then recover each double-byte identifier via f.toString().
86  * To make this easier, put a 'Z' token before every one.
87  *
88  * Our eval string will be:
89  *
90  * sEval = "function Z\u02b1(Z\u02b2, b) {
91  *          try { Z\u02b3 : var Z\u02b4 = Z\u02b1; }
92  *          catch (Z\u02b5) { for (var Z\u02b6 in Z\u02b5)
93  *          {for (1; 1<0; Z\u02b7++) {new Array()[Z\u02b6] = 1;} };} }";
94  *
95  * It will be helpful to build this string in stages:
96  */
97 var s0 =  'function Z';
98 var s1 =  '\u02b1(Z';
99 var s2 =  '\u02b2, b) {try { Z';
100 var s3 =  '\u02b3 : var Z';
101 var s4 =  '\u02b4 = Z';
102 var s5 =  '\u02b1; } catch (Z'
103   var s6 =  '\u02b5) { for (var Z';
104 var s7 =  '\u02b6 in Z';
105 var s8 =  '\u02b5){for (1; 1<0; Z';
106 var s9 =  '\u02b7++) {new Array()[Z';
107 var s10 = '\u02b6] = 1;} };} }';
108
109
110 /*
111  * Concatenate these and eval() to create the function Z\u02b1
112  */
113 var sEval = s0 + s1 + s2 + s3 + s4 + s5 + s6 + s7 + s8 + s9 + s10;
114 eval(sEval);
115
116
117 /*
118  * Recover all the double-byte identifiers via Z\u02b1.toString().
119  * We'll recover the 1st one as arrID[1], the 2nd one as arrID[2],
120  * and so on ...
121  */
122 var arrID = getIdentifiers(Z\u02b1);
123
124
125 /*
126  * Now check that we got back what we put in -
127  */
128 status = inSection(1);
129 actual = arrID[1];
130 expect = s1.charAt(0);
131 addThis();
132
133 status = inSection(2);
134 actual = arrID[2];
135 expect = s2.charAt(0);
136 addThis();
137
138 status = inSection(3);
139 actual = arrID[3];
140 expect = s3.charAt(0);
141 addThis();
142
143 status = inSection(4);
144 actual = arrID[4];
145 expect = s4.charAt(0);
146 addThis();
147
148 status = inSection(5);
149 actual = arrID[5];
150 expect = s5.charAt(0);
151 addThis();
152
153 status = inSection(6);
154 actual = arrID[6];
155 expect = s6.charAt(0);
156 addThis();
157
158 status = inSection(7);
159 actual = arrID[7];
160 expect = s7.charAt(0);
161 addThis();
162
163 status = inSection(8);
164 actual = arrID[8];
165 expect = s8.charAt(0);
166 addThis();
167
168 status = inSection(9);
169 actual = arrID[9];
170 expect = s9.charAt(0);
171 addThis();
172
173 status = inSection(10);
174 actual = arrID[10];
175 expect = s10.charAt(0);
176 addThis();
177
178
179
180
181 //-----------------------------------------------------------------------------
182 test();
183 //-----------------------------------------------------------------------------
184
185
186
187 /*
188  * Goal: recover the double-byte identifiers from f.toString()
189  * by getting the very next character after each 'Z' token.
190  *
191  * The return value will be an array |arr| indexed such that
192  * |arr[1]| is the 1st identifier, |arr[2]| the 2nd, and so on.
193  *
194  * Note, however, f.toString() is implementation-independent.
195  * For example, it may begin with '\nfunction' instead of 'function'.
196  *
197  * Rhino uses a Unicode representation for f.toString(); whereas
198  * SpiderMonkey uses an ASCII representation, putting escape sequences
199  * for non-ASCII characters. For example, if a function is called f\u02B1,
200  * then in Rhino the toString() method will present a 2-character Unicode
201  * string for its name, whereas SpiderMonkey will present a 7-character
202  * ASCII string for its name: the string literal 'f\u02B1'.
203  *
204  * So we force the lexer to condense the string before we use it.
205  * This will give uniform results in Rhino and SpiderMonkey.
206  */
207 function getIdentifiers(f)
208 {
209   var str = condenseStr(f.toString());
210   var arr = str.split('Z');
211
212   /*
213    * The identifiers are the 1st char of each split substring
214    * EXCEPT the first one, which is just ('\n' +) 'function '.
215    *
216    * Thus note the 1st identifier will be stored in |arr[1]|,
217    * the 2nd one in |arr[2]|, etc., making the indexing easy -
218    */
219   for (i in arr)
220     arr[i] = arr[i].charAt(0);
221   return arr;
222 }
223
224
225 /*
226  * This function is the opposite of a functions like escape(), which take
227  * Unicode characters and return escape sequences for them. Here, we force
228  * the lexer to turn escape sequences back into single characters.
229  *
230  * Note we can't simply do |eval(str)|, since in practice |str| will be an
231  * identifier somewhere in the program (e.g. a function name); thus |eval(str)|
232  * would return the object that the identifier represents: not what we want.
233  *
234  * So we surround |str| lexicographically with quotes to force the lexer to
235  * evaluate it as a string. Have to strip out any linefeeds first, however -
236  */
237 function condenseStr(str)
238 {
239   /*
240    * You won't be able to do the next step if |str| has
241    * any carriage returns or linefeeds in it. For example:
242    *
243    *  js> eval("'" + '\nHello' + "'");
244    *  1: SyntaxError: unterminated string literal:
245    *  1: '
246    *  1: ^
247    *
248    * So replace them with the empty string -
249    */
250   str = str.replace(/[\r\n]/g, '')
251     return eval("'" + str + "'")
252     }
253
254
255 function addThis()
256 {
257   statusitems[UBound] = status;
258   actualvalues[UBound] = actual;
259   expectedvalues[UBound] = expect;
260   UBound++;
261 }
262
263
264 function test()
265 {
266   enterFunc('test');
267   printBugNumber(BUGNUMBER);
268   printStatus(summary);
269
270   for (var i=0; i<UBound; i++)
271   {
272     reportCompare(expectedvalues[i], actualvalues[i], statusitems[i]);
273   }
274
275   exitFunc ('test');
276 }