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
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/
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
15 * The Original Code is JavaScript Engine testing utilities.
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.
23 * desale@netscape.com, pschwartau@netscape.com
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.
37 * ***** END LICENSE BLOCK ***** */
42 * SUMMARY: Testing F.toString()
43 * See http://bugzilla.mozilla.org/show_bug.cgi?id=168347
46 //-----------------------------------------------------------------------------
47 var gTestfile
= 'regress-168347.js';
49 var BUGNUMBER
= 168347;
50 var summary
= "Testing F.toString()";
54 var actualvalues
= [];
56 var expectedvalues
= [];
60 sFunc
+= 'function F()';
62 sFunc
+= ' var f = arguments.callee;';
67 sFunc
+= ' f.i = f.i + 1;';
68 sFunc
+= ' print("i = i+1 succeeded \ti = " + f.i);';
72 sFunc
+= ' print("i = i+1 failed with " + e + "\ti = " + f.i);';
78 sFunc
+= ' print("++i succeeded \t\ti = " + f.i);';
82 sFunc
+= ' print("++i failed with " + e + "\ti = " + f.i);';
88 sFunc
+= ' print("i++ succeeded \t\ti = " + f.i);';
92 sFunc
+= ' print("i++ failed with " + e + "\ti = " + f.i);';
98 sFunc
+= ' print("--i succeeded \t\ti = " + f.i);';
100 sFunc
+= ' catch(e)';
102 sFunc
+= ' print("--i failed with " + e + "\ti = " + f.i);';
108 sFunc
+= ' print("i-- succeeded \t\ti = " + f.i);';
110 sFunc
+= ' catch(e)';
112 sFunc
+= ' print("i-- failed with " + e + "\ti = " + f.i);';
118 * Use sFunc to define the function F. The test
119 * then rests on comparing F.toString() to sFunc.
125 * There are trivial whitespace differences between F.toString()
126 * and sFunc. So strip out whitespace before comparing them -
128 sFunc
= stripWhite(sFunc
);
129 FtoString
= stripWhite(F
.toString());
133 * Break comparison into sections to make any failures
134 * easier for the developer to track down -
136 status
= inSection(1);
137 actual
= FtoString
.substring(0,100);
138 expect
= sFunc
.substring(0,100);
141 status
= inSection(2);
142 actual
= FtoString
.substring(100,200);
143 expect
= sFunc
.substring(100,200);
146 status
= inSection(3);
147 actual
= FtoString
.substring(200,300);
148 expect
= sFunc
.substring(200,300);
151 status
= inSection(4);
152 actual
= FtoString
.substring(300,400);
153 expect
= sFunc
.substring(300,400);
156 status
= inSection(5);
157 actual
= FtoString
.substring(400,500);
158 expect
= sFunc
.substring(400,500);
161 status
= inSection(6);
162 actual
= FtoString
.substring(500,600);
163 expect
= sFunc
.substring(500,600);
166 status
= inSection(7);
167 actual
= FtoString
.substring(600,700);
168 expect
= sFunc
.substring(600,700);
171 status
= inSection(8);
172 actual
= FtoString
.substring(700,800);
173 expect
= sFunc
.substring(700,800);
176 status
= inSection(9);
177 actual
= FtoString
.substring(800,900);
178 expect
= sFunc
.substring(800,900);
183 //-----------------------------------------------------------------------------
185 //-----------------------------------------------------------------------------
191 statusitems
[UBound
] = status
;
192 actualvalues
[UBound
] = actual
;
193 expectedvalues
[UBound
] = expect
;
198 * Remove any whitespace characters; also
199 * any escaped tabs or escaped newlines.
201 function stripWhite(str
)
203 var re
= /\s|\\t|\\n/g;
204 return str
.replace(re
, '');
211 printBugNumber(BUGNUMBER
);
212 printStatus(summary
);
214 for (var i
=0; i
<UBound
; i
++)
216 reportCompare(expectedvalues
[i
], actualvalues
[i
], statusitems
[i
]);