gecko/services/sync/tests/unit/test_utils_stackTrace.js
Edward Lee 4e55362a90 Bug 570636 - Decide how to co-exist as a sync add-on and built-in sync [r=mconnor]
Map the modules directory to services-sync instead of weave and update imports.
2010-06-16 14:30:08 -07:00

33 lines
1.0 KiB
JavaScript

_("Define some functions in well defined line positions for the test");
function foo(v) bar(v + 1); // line 2
function bar(v) baz(v + 1); // line 3
function baz(v) { throw new Error(v + 1); } // line 4
_("Make sure lazy constructor calling/assignment works");
Cu.import("resource://services-sync/util.js");
function run_test() {
_("Make sure functions, arguments, files are pretty printed in the trace");
let trace = "";
try {
foo(0);
}
catch(ex) {
trace = Utils.stackTrace(ex);
}
_("Got trace:", trace);
do_check_neq(trace, "");
let errorPos = trace.indexOf('Error("3")@:0');
let bazPos = trace.indexOf("baz(2)@test_utils_stackTrace.js:4");
let barPos = trace.indexOf("bar(1)@test_utils_stackTrace.js:3");
let fooPos = trace.indexOf("foo(0)@test_utils_stackTrace.js:2");
_("String positions:", errorPos, bazPos, barPos, fooPos);
_("Make sure the desired messages show up");
do_check_true(errorPos >= 0);
do_check_true(bazPos > errorPos);
do_check_true(barPos > bazPos);
do_check_true(fooPos > barPos);
}