blob: 46a16eb87a2db857a00f8d7de060af09ffc2fa00 [file] [log] [blame]
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00001// Copyright 2009 the V8 project authors. All rights reserved.
2// Redistribution and use in source and binary forms, with or without
3// modification, are permitted provided that the following conditions are
4// met:
5//
6// * Redistributions of source code must retain the above copyright
7// notice, this list of conditions and the following disclaimer.
8// * Redistributions in binary form must reproduce the above
9// copyright notice, this list of conditions and the following
10// disclaimer in the documentation and/or other materials provided
11// with the distribution.
12// * Neither the name of Google Inc. nor the names of its
13// contributors may be used to endorse or promote products derived
14// from this software without specific prior written permission.
15//
16// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
kasperl@chromium.org2abc4502009-07-02 07:00:29 +000028function testMethodNameInference() {
29 function Foo() { }
30 Foo.prototype.bar = function () { FAIL; };
31 (new Foo).bar();
32}
33
34function testNested() {
35 function one() {
36 function two() {
37 function three() {
38 FAIL;
39 }
40 three();
41 }
42 two();
43 }
44 one();
45}
46
47function testArrayNative() {
48 [1, 2, 3].map(function () { FAIL; });
49}
50
51function testImplicitConversion() {
52 function Nirk() { }
53 Nirk.prototype.valueOf = function () { FAIL; };
54 return 1 + (new Nirk);
55}
56
57function testEval() {
58 eval("function Doo() { FAIL; }; Doo();");
59}
60
61function testNestedEval() {
62 var x = "FAIL";
63 eval("function Outer() { eval('function Inner() { eval(x); }'); Inner(); }; Outer();");
64}
65
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +000066function testEvalWithSourceURL() {
rossberg@chromium.orgb99c7542013-05-31 11:40:45 +000067 eval("function Doo() { FAIL; }; Doo();\n//# sourceURL=res://name");
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +000068}
69
70function testNestedEvalWithSourceURL() {
71 var x = "FAIL";
72 var innerEval = 'function Inner() { eval(x); }\n//@ sourceURL=res://inner-eval';
rossberg@chromium.orgb99c7542013-05-31 11:40:45 +000073 eval("function Outer() { eval(innerEval); Inner(); }; Outer();\n//# sourceURL=res://outer-eval");
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +000074}
75
kasperl@chromium.org2abc4502009-07-02 07:00:29 +000076function testValue() {
77 Number.prototype.causeError = function () { FAIL; };
78 (1).causeError();
79}
80
81function testConstructor() {
82 function Plonk() { FAIL; }
83 new Plonk();
84}
85
kasperl@chromium.org86f77b72009-07-06 08:21:57 +000086function testRenamedMethod() {
87 function a$b$c$d() { return FAIL; }
88 function Wookie() { }
89 Wookie.prototype.d = a$b$c$d;
90 (new Wookie).d();
91}
92
93function testAnonymousMethod() {
94 (function () { FAIL }).call([1, 2, 3]);
95}
96
sgjesse@chromium.org0b6db592009-07-30 14:48:31 +000097function CustomError(message, stripPoint) {
98 this.message = message;
99 Error.captureStackTrace(this, stripPoint);
100}
101
102CustomError.prototype.toString = function () {
103 return "CustomError: " + this.message;
104};
105
106function testDefaultCustomError() {
107 throw new CustomError("hep-hey", undefined);
108}
109
110function testStrippedCustomError() {
111 throw new CustomError("hep-hey", CustomError);
112}
113
svenpanne@chromium.org830d30c2012-05-29 13:20:14 +0000114MyObj = function() { FAIL; }
115
116MyObjCreator = function() {}
117
118MyObjCreator.prototype.Create = function() {
119 return new MyObj();
120}
121
122function testClassNames() {
123 (new MyObjCreator).Create();
124}
125
kasperl@chromium.org2abc4502009-07-02 07:00:29 +0000126// Utility function for testing that the expected strings occur
127// in the stack trace produced when running the given function.
sgjesse@chromium.org911335c2009-08-19 12:59:44 +0000128function testTrace(name, fun, expected, unexpected) {
kasperl@chromium.org2abc4502009-07-02 07:00:29 +0000129 var threw = false;
130 try {
131 fun();
132 } catch (e) {
133 for (var i = 0; i < expected.length; i++) {
sgjesse@chromium.org911335c2009-08-19 12:59:44 +0000134 assertTrue(e.stack.indexOf(expected[i]) != -1,
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +0000135 name + " doesn't contain expected[" + i + "] stack = " + e.stack);
kasperl@chromium.org2abc4502009-07-02 07:00:29 +0000136 }
sgjesse@chromium.org0b6db592009-07-30 14:48:31 +0000137 if (unexpected) {
138 for (var i = 0; i < unexpected.length; i++) {
sgjesse@chromium.org911335c2009-08-19 12:59:44 +0000139 assertEquals(e.stack.indexOf(unexpected[i]), -1,
140 name + " contains unexpected[" + i + "]");
sgjesse@chromium.org0b6db592009-07-30 14:48:31 +0000141 }
142 }
kasperl@chromium.org2abc4502009-07-02 07:00:29 +0000143 threw = true;
144 }
sgjesse@chromium.org911335c2009-08-19 12:59:44 +0000145 assertTrue(threw, name + " didn't throw");
kasperl@chromium.org2abc4502009-07-02 07:00:29 +0000146}
147
148// Test that the error constructor is not shown in the trace
149function testCallerCensorship() {
150 var threw = false;
151 try {
152 FAIL;
153 } catch (e) {
sgjesse@chromium.org911335c2009-08-19 12:59:44 +0000154 assertEquals(-1, e.stack.indexOf('at new ReferenceError'),
155 "CallerCensorship contained new ReferenceError");
kasperl@chromium.org2abc4502009-07-02 07:00:29 +0000156 threw = true;
157 }
sgjesse@chromium.org911335c2009-08-19 12:59:44 +0000158 assertTrue(threw, "CallerCensorship didn't throw");
kasperl@chromium.org2abc4502009-07-02 07:00:29 +0000159}
160
161// Test that the explicit constructor call is shown in the trace
162function testUnintendedCallerCensorship() {
163 var threw = false;
164 try {
165 new ReferenceError({
166 toString: function () {
167 FAIL;
168 }
169 });
170 } catch (e) {
sgjesse@chromium.org911335c2009-08-19 12:59:44 +0000171 assertTrue(e.stack.indexOf('at new ReferenceError') != -1,
172 "UnintendedCallerCensorship didn't contain new ReferenceError");
kasperl@chromium.org2abc4502009-07-02 07:00:29 +0000173 threw = true;
174 }
sgjesse@chromium.org911335c2009-08-19 12:59:44 +0000175 assertTrue(threw, "UnintendedCallerCensorship didn't throw");
kasperl@chromium.org2abc4502009-07-02 07:00:29 +0000176}
177
178// If an error occurs while the stack trace is being formatted it should
179// be handled gracefully.
180function testErrorsDuringFormatting() {
181 function Nasty() { }
182 Nasty.prototype.foo = function () { throw new RangeError(); };
183 var n = new Nasty();
184 n.__defineGetter__('constructor', function () { CONS_FAIL; });
185 var threw = false;
186 try {
187 n.foo();
188 } catch (e) {
189 threw = true;
sgjesse@chromium.org911335c2009-08-19 12:59:44 +0000190 assertTrue(e.stack.indexOf('<error: ReferenceError') != -1,
191 "ErrorsDuringFormatting didn't contain error: ReferenceError");
kasperl@chromium.org2abc4502009-07-02 07:00:29 +0000192 }
sgjesse@chromium.org911335c2009-08-19 12:59:44 +0000193 assertTrue(threw, "ErrorsDuringFormatting didn't throw");
kasperl@chromium.org2abc4502009-07-02 07:00:29 +0000194 threw = false;
195 // Now we can't even format the message saying that we couldn't format
196 // the stack frame. Put that in your pipe and smoke it!
197 ReferenceError.prototype.toString = function () { NESTED_FAIL; };
198 try {
199 n.foo();
200 } catch (e) {
201 threw = true;
sgjesse@chromium.org911335c2009-08-19 12:59:44 +0000202 assertTrue(e.stack.indexOf('<error>') != -1,
203 "ErrorsDuringFormatting didn't contain <error>");
kasperl@chromium.org2abc4502009-07-02 07:00:29 +0000204 }
sgjesse@chromium.org911335c2009-08-19 12:59:44 +0000205 assertTrue(threw, "ErrorsDuringFormatting didnt' throw (2)");
kasperl@chromium.org2abc4502009-07-02 07:00:29 +0000206}
207
kasperl@chromium.org2abc4502009-07-02 07:00:29 +0000208
erik.corry@gmail.com394dbcf2011-10-27 07:38:48 +0000209// Poisonous object that throws a reference error if attempted converted to
210// a primitive values.
211var thrower = { valueOf: function() { FAIL; },
212 toString: function() { FAIL; } };
213
214// Tests that a native constructor function is included in the
215// stack trace.
216function testTraceNativeConstructor(nativeFunc) {
217 var nativeFuncName = nativeFunc.name;
218 try {
219 new nativeFunc(thrower);
220 assertUnreachable(nativeFuncName);
221 } catch (e) {
222 assertTrue(e.stack.indexOf(nativeFuncName) >= 0, nativeFuncName);
223 }
224}
225
226// Tests that a native conversion function is included in the
227// stack trace.
228function testTraceNativeConversion(nativeFunc) {
229 var nativeFuncName = nativeFunc.name;
230 try {
231 nativeFunc(thrower);
232 assertUnreachable(nativeFuncName);
233 } catch (e) {
234 assertTrue(e.stack.indexOf(nativeFuncName) >= 0, nativeFuncName);
235 }
236}
237
238
239function testOmittedBuiltin(throwing, omitted) {
240 try {
241 throwing();
242 assertUnreachable(omitted);
243 } catch (e) {
244 assertTrue(e.stack.indexOf(omitted) < 0, omitted);
245 }
246}
247
248
sgjesse@chromium.org911335c2009-08-19 12:59:44 +0000249testTrace("testArrayNative", testArrayNative, ["Array.map (native)"]);
250testTrace("testNested", testNested, ["at one", "at two", "at three"]);
251testTrace("testMethodNameInference", testMethodNameInference, ["at Foo.bar"]);
252testTrace("testImplicitConversion", testImplicitConversion, ["at Nirk.valueOf"]);
253testTrace("testEval", testEval, ["at Doo (eval at testEval"]);
254testTrace("testNestedEval", testNestedEval, ["eval at Inner (eval at Outer"]);
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +0000255testTrace("testEvalWithSourceURL", testEvalWithSourceURL,
256 [ "at Doo (res://name:1:18)" ]);
257testTrace("testNestedEvalWithSourceURL", testNestedEvalWithSourceURL,
258 [" at Inner (res://inner-eval:1:20)",
259 " at Outer (res://outer-eval:1:37)"]);
sgjesse@chromium.org911335c2009-08-19 12:59:44 +0000260testTrace("testValue", testValue, ["at Number.causeError"]);
261testTrace("testConstructor", testConstructor, ["new Plonk"]);
262testTrace("testRenamedMethod", testRenamedMethod, ["Wookie.a$b$c$d [as d]"]);
263testTrace("testAnonymousMethod", testAnonymousMethod, ["Array.<anonymous>"]);
264testTrace("testDefaultCustomError", testDefaultCustomError,
265 ["hep-hey", "new CustomError"],
266 ["collectStackTrace"]);
267testTrace("testStrippedCustomError", testStrippedCustomError, ["hep-hey"],
268 ["new CustomError", "collectStackTrace"]);
svenpanne@chromium.org830d30c2012-05-29 13:20:14 +0000269testTrace("testClassNames", testClassNames,
270 ["new MyObj", "MyObjCreator.Create"], ["as Create"]);
kasperl@chromium.org2abc4502009-07-02 07:00:29 +0000271testCallerCensorship();
272testUnintendedCallerCensorship();
273testErrorsDuringFormatting();
erik.corry@gmail.com394dbcf2011-10-27 07:38:48 +0000274
275testTraceNativeConversion(String); // Does ToString on argument.
276testTraceNativeConversion(Number); // Does ToNumber on argument.
277testTraceNativeConversion(RegExp); // Does ToString on argument.
278
279testTraceNativeConstructor(String); // Does ToString on argument.
280testTraceNativeConstructor(Number); // Does ToNumber on argument.
281testTraceNativeConstructor(RegExp); // Does ToString on argument.
282testTraceNativeConstructor(Date); // Does ToNumber on argument.
283
284// Omitted because QuickSort has builtins object as receiver, and is non-native
285// builtin.
286testOmittedBuiltin(function(){ [thrower, 2].sort(function (a,b) {
287 (b < a) - (a < b); });
288 }, "QuickSort");
289
290// Omitted because ADD from runtime.js is non-native builtin.
yangguo@chromium.org46a2a512013-01-18 16:29:40 +0000291testOmittedBuiltin(function(){ thrower + 2; }, "ADD");
292
293var error = new Error();
294error.toString = function() { assertUnreachable(); };
295error.stack;
296
297error = new Error();
298error.name = { toString: function() { assertUnreachable(); }};
299error.message = { toString: function() { assertUnreachable(); }};
300error.stack;
301
302error = new Error();
303Array.prototype.push = function(x) { assertUnreachable(); };
304Array.prototype.join = function(x) { assertUnreachable(); };
305error.stack;
306
307var fired = false;
308error = new Error({ toString: function() { fired = true; } });
309assertTrue(fired);
310error.stack;
311assertTrue(fired);
312
313// Check that throwing exception in a custom stack trace formatting function
314// does not lead to recursion.
315Error.prepareStackTrace = function() { throw new Error("abc"); };
316var message;
317try {
danno@chromium.orgd3c42102013-08-01 16:58:23 +0000318 try {
319 throw new Error();
320 } catch (e) {
321 e.stack;
322 }
yangguo@chromium.org46a2a512013-01-18 16:29:40 +0000323} catch (e) {
324 message = e.message;
325}
326
327assertEquals("abc", message);
328
329// Test that modifying Error.prepareStackTrace by itself works.
330Error.prepareStackTrace = function() { Error.prepareStackTrace = "custom"; };
danno@chromium.orgd3c42102013-08-01 16:58:23 +0000331new Error().stack;
yangguo@chromium.org46a2a512013-01-18 16:29:40 +0000332
333assertEquals("custom", Error.prepareStackTrace);