Imported Upstream version 1.0.0
[platform/upstream/js.git] / js / src / tests / js1_5 / Regress / regress-168347.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  *   desale@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:    13 Sep 2002
42  * SUMMARY: Testing F.toString()
43  * See http://bugzilla.mozilla.org/show_bug.cgi?id=168347
44  *
45  */
46 //-----------------------------------------------------------------------------
47 var UBound = 0;
48 var BUGNUMBER = 168347;
49 var summary = "Testing F.toString()";
50 var status = '';
51 var statusitems = [];
52 var actual = '';
53 var actualvalues = [];
54 var expect= '';
55 var expectedvalues = [];
56 var FtoString = '';
57 var sFunc = '';
58
59 sFunc += 'function F()';
60 sFunc += '{';
61 sFunc += '  var f = arguments.callee;';
62 sFunc += '  f.i = 0;';
63 sFunc += '';
64 sFunc += '  try';
65 sFunc += '  {';
66 sFunc += '    f.i = f.i + 1;';
67 sFunc += '    print("i = i+1 succeeded \ti = " + f.i);';
68 sFunc += '  }';
69 sFunc += '  catch(e)';
70 sFunc += '  {';
71 sFunc += '    print("i = i+1 failed with " + e + "\ti = " + f.i);';
72 sFunc += '  }';
73 sFunc += '';
74 sFunc += '  try';
75 sFunc += '  {';
76 sFunc += '    ++f.i;';
77 sFunc += '    print("++i succeeded \t\ti = " + f.i);';
78 sFunc += '  }';
79 sFunc += '  catch(e)';
80 sFunc += '  {';
81 sFunc += '    print("++i failed with " + e + "\ti = " + f.i);';
82 sFunc += '  }';
83 sFunc += '';
84 sFunc += '  try';
85 sFunc += '  {';
86 sFunc += '    f.i++;';
87 sFunc += '    print("i++ succeeded \t\ti = " + f.i);';
88 sFunc += '  }';
89 sFunc += '  catch(e)';
90 sFunc += '  {';
91 sFunc += '    print("i++ failed with " + e + "\ti = " + f.i);';
92 sFunc += '  }';
93 sFunc += '';
94 sFunc += '  try';
95 sFunc += '  {';
96 sFunc += '    --f.i;';
97 sFunc += '    print("--i succeeded \t\ti = " + f.i);';
98 sFunc += '  }';
99 sFunc += '  catch(e)';
100 sFunc += '  {';
101 sFunc += '    print("--i failed with " + e + "\ti = " + f.i);';
102 sFunc += '  }';
103 sFunc += '';
104 sFunc += '  try';
105 sFunc += '  {';
106 sFunc += '    f.i--;';
107 sFunc += '    print("i-- succeeded \t\ti = " + f.i);';
108 sFunc += '  }';
109 sFunc += '  catch(e)';
110 sFunc += '  {';
111 sFunc += '    print("i-- failed with " + e + "\ti = " + f.i);';
112 sFunc += '  }';
113 sFunc += '}';
114
115
116 /*
117  * Use sFunc to define the function F. The test
118  * then rests on comparing F.toString() to sFunc.
119  */
120 eval(sFunc);
121
122
123 /*
124  * There are trivial whitespace differences between F.toString()
125  * and sFunc. So strip out whitespace before comparing them -
126  */
127 sFunc = stripWhite(sFunc);
128 FtoString = stripWhite(F.toString());
129
130
131 /*
132  * Break comparison into sections to make any failures
133  * easier for the developer to track down -
134  */
135 status = inSection(1);
136 actual = FtoString.substring(0,100);
137 expect = sFunc.substring(0,100);
138 addThis();
139
140 status = inSection(2);
141 actual = FtoString.substring(100,200);
142 expect = sFunc.substring(100,200);
143 addThis();
144
145 status = inSection(3);
146 actual = FtoString.substring(200,300);
147 expect = sFunc.substring(200,300);
148 addThis();
149
150 status = inSection(4);
151 actual = FtoString.substring(300,400);
152 expect = sFunc.substring(300,400);
153 addThis();
154
155 status = inSection(5);
156 actual = FtoString.substring(400,500);
157 expect = sFunc.substring(400,500);
158 addThis();
159
160 status = inSection(6);
161 actual = FtoString.substring(500,600);
162 expect = sFunc.substring(500,600);
163 addThis();
164
165 status = inSection(7);
166 actual = FtoString.substring(600,700);
167 expect = sFunc.substring(600,700);
168 addThis();
169
170 status = inSection(8);
171 actual = FtoString.substring(700,800);
172 expect = sFunc.substring(700,800);
173 addThis();
174
175 status = inSection(9);
176 actual = FtoString.substring(800,900);
177 expect = sFunc.substring(800,900);
178 addThis();
179
180
181
182 //-----------------------------------------------------------------------------
183 test();
184 //-----------------------------------------------------------------------------
185
186
187
188 function addThis()
189 {
190   statusitems[UBound] = status;
191   actualvalues[UBound] = actual;
192   expectedvalues[UBound] = expect;
193   UBound++;
194 }
195
196 /*
197  * Remove any whitespace characters; also
198  * any escaped tabs or escaped newlines.
199  */
200 function stripWhite(str)
201 {
202   var re = /\s|\\t|\\n/g;
203   return str.replace(re, '');
204 }
205
206
207 function test()
208 {
209   enterFunc('test');
210   printBugNumber(BUGNUMBER);
211   printStatus(summary);
212
213   for (var i=0; i<UBound; i++)
214   {
215     reportCompare(expectedvalues[i], actualvalues[i], statusitems[i]);
216   }
217
218   exitFunc ('test');
219 }