1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555
|
// Copyright 2009 The Closure Library Authors. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS-IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
/**
* @fileoverview Tools for parsing and pretty printing error stack traces.
*
*/
goog.setTestOnly('goog.testing.stacktrace');
goog.provide('goog.testing.stacktrace');
goog.provide('goog.testing.stacktrace.Frame');
/**
* Class representing one stack frame.
* @param {string} context Context object, empty in case of global functions or
* if the browser doesn't provide this information.
* @param {string} name Function name, empty in case of anonymous functions.
* @param {string} alias Alias of the function if available. For example the
* function name will be 'c' and the alias will be 'b' if the function is
* defined as <code>a.b = function c() {};</code>.
* @param {string} path File path or URL including line number and optionally
* column number separated by colons.
* @constructor
* @final
*/
goog.testing.stacktrace.Frame = function(context, name, alias, path) {
this.context_ = context;
this.name_ = name;
this.alias_ = alias;
this.path_ = path;
};
/**
* @return {string} The function name or empty string if the function is
* anonymous and the object field which it's assigned to is unknown.
*/
goog.testing.stacktrace.Frame.prototype.getName = function() {
return this.name_;
};
/**
* @return {boolean} Whether the stack frame contains an anonymous function.
*/
goog.testing.stacktrace.Frame.prototype.isAnonymous = function() {
return !this.name_ || this.context_ == '[object Object]';
};
/**
* Brings one frame of the stack trace into a common format across browsers.
* @return {string} Pretty printed stack frame.
*/
goog.testing.stacktrace.Frame.prototype.toCanonicalString = function() {
var htmlEscape = goog.testing.stacktrace.htmlEscape_;
var deobfuscate = goog.testing.stacktrace.maybeDeobfuscateFunctionName_;
var canonical = [
this.context_ ? htmlEscape(this.context_) + '.' : '',
this.name_ ? htmlEscape(deobfuscate(this.name_)) : 'anonymous',
this.alias_ ? ' [as ' + htmlEscape(deobfuscate(this.alias_)) + ']' : ''
];
if (this.path_) {
canonical.push(' at ');
canonical.push(htmlEscape(this.path_));
}
return canonical.join('');
};
/**
* Maximum number of steps while the call chain is followed.
* @private {number}
* @const
*/
goog.testing.stacktrace.MAX_DEPTH_ = 20;
/**
* Maximum length of a string that can be matched with a RegExp on
* Firefox 3x. Exceeding this approximate length will cause string.match
* to exceed Firefox's stack quota. This situation can be encountered
* when goog.globalEval is invoked with a long argument; such as
* when loading a module.
* @private {number}
* @const
*/
goog.testing.stacktrace.MAX_FIREFOX_FRAMESTRING_LENGTH_ = 500000;
/**
* RegExp pattern for JavaScript identifiers. We don't support Unicode
* identifiers defined in ECMAScript v3.
* @private {string}
* @const
*/
goog.testing.stacktrace.IDENTIFIER_PATTERN_ = '[a-zA-Z_$][\\w$]*';
/**
* RegExp pattern for function name alias in the V8 stack trace.
* @private {string}
* @const
*/
goog.testing.stacktrace.V8_ALIAS_PATTERN_ =
'(?: \\[as (' + goog.testing.stacktrace.IDENTIFIER_PATTERN_ + ')\\])?';
/**
* RegExp pattern for the context of a function call in a V8 stack trace.
* Creates an optional submatch for the namespace identifier including the
* "new" keyword for constructor calls (e.g. "new foo.Bar").
* @private {string}
* @const
*/
goog.testing.stacktrace.V8_CONTEXT_PATTERN_ =
'(?:((?:new )?(?:\\[object Object\\]|' +
goog.testing.stacktrace.IDENTIFIER_PATTERN_ + '(?:\\.' +
goog.testing.stacktrace.IDENTIFIER_PATTERN_ + ')*))\\.)?';
/**
* RegExp pattern for function names and constructor calls in the V8 stack
* trace.
* @private {string}
* @const
*/
goog.testing.stacktrace.V8_FUNCTION_NAME_PATTERN_ = '(?:new )?(?:' +
goog.testing.stacktrace.IDENTIFIER_PATTERN_ + '|<anonymous>)';
/**
* RegExp pattern for function call in the V8 stack trace. Creates 3 submatches
* with context object (optional), function name and function alias (optional).
* @private {string}
* @const
*/
goog.testing.stacktrace.V8_FUNCTION_CALL_PATTERN_ = ' ' +
goog.testing.stacktrace.V8_CONTEXT_PATTERN_ + '(' +
goog.testing.stacktrace.V8_FUNCTION_NAME_PATTERN_ + ')' +
goog.testing.stacktrace.V8_ALIAS_PATTERN_;
/**
* RegExp pattern for an URL + position inside the file.
* @private {string}
* @const
*/
goog.testing.stacktrace.URL_PATTERN_ =
'((?:http|https|file)://[^\\s)]+|javascript:.*)';
/**
* RegExp pattern for an URL + line number + column number in V8.
* The URL is either in submatch 1 or submatch 2.
* @private {string}
* @const
*/
goog.testing.stacktrace.CHROME_URL_PATTERN_ = ' (?:' +
'\\(unknown source\\)' +
'|' +
'\\(native\\)' +
'|' +
'\\((.+)\\)|(.+))';
/**
* Regular expression for parsing one stack frame in V8. For more information
* on V8 stack frame formats, see
* https://code.google.com/p/v8/wiki/JavaScriptStackTraceApi.
* @private {!RegExp}
* @const
*/
goog.testing.stacktrace.V8_STACK_FRAME_REGEXP_ = new RegExp(
'^ at' +
'(?:' + goog.testing.stacktrace.V8_FUNCTION_CALL_PATTERN_ + ')?' +
goog.testing.stacktrace.CHROME_URL_PATTERN_ + '$');
/**
* RegExp pattern for function call in the Firefox stack trace.
* Creates 2 submatches with function name (optional) and arguments.
*
* Modern FF produces stack traces like:
* foo@url:1:2
* a.b.foo@url:3:4
*
* @private {string}
* @const
*/
goog.testing.stacktrace.FIREFOX_FUNCTION_CALL_PATTERN_ = '(' +
goog.testing.stacktrace.IDENTIFIER_PATTERN_ + '(?:\\.' +
goog.testing.stacktrace.IDENTIFIER_PATTERN_ + ')*' +
')?' +
'(\\(.*\\))?@';
/**
* Regular expression for parsing one stack frame in Firefox.
* @private {!RegExp}
* @const
*/
goog.testing.stacktrace.FIREFOX_STACK_FRAME_REGEXP_ = new RegExp(
'^' + goog.testing.stacktrace.FIREFOX_FUNCTION_CALL_PATTERN_ + '(?::0|' +
goog.testing.stacktrace.URL_PATTERN_ + ')$');
/**
* RegExp pattern for an anonymous function call in an Opera stack frame.
* Creates 2 (optional) submatches: the context object and function name.
* @private {string}
* @const
*/
goog.testing.stacktrace.OPERA_ANONYMOUS_FUNCTION_NAME_PATTERN_ =
'<anonymous function(?:\\: ' +
'(?:(' + goog.testing.stacktrace.IDENTIFIER_PATTERN_ + '(?:\\.' +
goog.testing.stacktrace.IDENTIFIER_PATTERN_ + ')*)\\.)?' +
'(' + goog.testing.stacktrace.IDENTIFIER_PATTERN_ + '))?>';
/**
* RegExp pattern for a function call in an Opera stack frame.
* Creates 4 (optional) submatches: the function name (if not anonymous),
* the aliased context object and function name (if anonymous), and the
* function call arguments.
* @private {string}
* @const
*/
goog.testing.stacktrace.OPERA_FUNCTION_CALL_PATTERN_ = '(?:(?:(' +
goog.testing.stacktrace.IDENTIFIER_PATTERN_ + ')|' +
goog.testing.stacktrace.OPERA_ANONYMOUS_FUNCTION_NAME_PATTERN_ +
')(\\(.*\\)))?@';
/**
* Regular expression for parsing on stack frame in Opera 11.68 - 12.17.
* Newer versions of Opera use V8 and stack frames should match against
* goog.testing.stacktrace.V8_STACK_FRAME_REGEXP_.
* @private {!RegExp}
* @const
*/
goog.testing.stacktrace.OPERA_STACK_FRAME_REGEXP_ = new RegExp(
'^' + goog.testing.stacktrace.OPERA_FUNCTION_CALL_PATTERN_ +
goog.testing.stacktrace.URL_PATTERN_ + '?$');
/**
* Regular expression for finding the function name in its source.
* @private {!RegExp}
* @const
*/
goog.testing.stacktrace.FUNCTION_SOURCE_REGEXP_ = new RegExp(
'^function (' + goog.testing.stacktrace.IDENTIFIER_PATTERN_ + ')');
/**
* RegExp pattern for function call in a IE stack trace. This expression allows
* for identifiers like 'Anonymous function', 'eval code', and 'Global code'.
* @private {string}
* @const
*/
goog.testing.stacktrace.IE_FUNCTION_CALL_PATTERN_ = '(' +
goog.testing.stacktrace.IDENTIFIER_PATTERN_ + '(?:\\.' +
goog.testing.stacktrace.IDENTIFIER_PATTERN_ + ')*' +
'(?:\\s+\\w+)*)';
/**
* Regular expression for parsing a stack frame in IE.
* @private {!RegExp}
* @const
*/
goog.testing.stacktrace.IE_STACK_FRAME_REGEXP_ = new RegExp(
'^ at ' + goog.testing.stacktrace.IE_FUNCTION_CALL_PATTERN_ + '\\s*\\(' +
'(' +
'eval code:[^)]*' +
'|' +
'Unknown script code:[^)]*' +
'|' + goog.testing.stacktrace.URL_PATTERN_ + ')\\)?$');
/**
* Creates a stack trace by following the call chain. Based on
* {@link goog.debug.getStacktrace}.
* @return {!Array<!goog.testing.stacktrace.Frame>} Stack frames.
* @private
* @suppress {es5Strict}
*/
goog.testing.stacktrace.followCallChain_ = function() {
var frames = [];
var fn = arguments.callee.caller;
var depth = 0;
while (fn && depth < goog.testing.stacktrace.MAX_DEPTH_) {
var fnString = Function.prototype.toString.call(fn);
var match = fnString.match(goog.testing.stacktrace.FUNCTION_SOURCE_REGEXP_);
var functionName = match ? match[1] : '';
frames.push(new goog.testing.stacktrace.Frame('', functionName, '', ''));
try {
fn = fn.caller;
} catch (e) {
break;
}
depth++;
}
return frames;
};
/**
* Parses one stack frame.
* @param {string} frameStr The stack frame as string.
* @return {goog.testing.stacktrace.Frame} Stack frame object or null if the
* parsing failed.
* @private
*/
goog.testing.stacktrace.parseStackFrame_ = function(frameStr) {
// This match includes newer versions of Opera (15+).
var m = frameStr.match(goog.testing.stacktrace.V8_STACK_FRAME_REGEXP_);
if (m) {
return new goog.testing.stacktrace.Frame(
m[1] || '', m[2] || '', m[3] || '', m[4] || m[5] || m[6] || '');
}
// TODO(johnlenz): remove this. It seems like if this was useful it would
// need to be before the V8 check.
if (frameStr.length >
goog.testing.stacktrace.MAX_FIREFOX_FRAMESTRING_LENGTH_) {
return null;
}
m = frameStr.match(goog.testing.stacktrace.FIREFOX_STACK_FRAME_REGEXP_);
if (m) {
return new goog.testing.stacktrace.Frame('', m[1] || '', '', m[3] || '');
}
// Match against Presto Opera 11.68 - 12.17.
m = frameStr.match(goog.testing.stacktrace.OPERA_STACK_FRAME_REGEXP_);
if (m) {
return new goog.testing.stacktrace.Frame(
m[2] || '', m[1] || m[3] || '', '', m[5] || '');
}
m = frameStr.match(goog.testing.stacktrace.IE_STACK_FRAME_REGEXP_);
if (m) {
return new goog.testing.stacktrace.Frame('', m[1] || '', '', m[2] || '');
}
return null;
};
/**
* Function to deobfuscate function names.
* @type {function(string): string}
* @private
*/
goog.testing.stacktrace.deobfuscateFunctionName_;
/**
* Sets function to deobfuscate function names.
* @param {function(string): string} fn function to deobfuscate function names.
*/
goog.testing.stacktrace.setDeobfuscateFunctionName = function(fn) {
goog.testing.stacktrace.deobfuscateFunctionName_ = fn;
};
/**
* Deobfuscates a compiled function name with the function passed to
* {@link #setDeobfuscateFunctionName}. Returns the original function name if
* the deobfuscator hasn't been set.
* @param {string} name The function name to deobfuscate.
* @return {string} The deobfuscated function name.
* @private
*/
goog.testing.stacktrace.maybeDeobfuscateFunctionName_ = function(name) {
return goog.testing.stacktrace.deobfuscateFunctionName_ ?
goog.testing.stacktrace.deobfuscateFunctionName_(name) :
name;
};
/**
* Escapes the special character in HTML.
* @param {string} text Plain text.
* @return {string} Escaped text.
* @private
*/
goog.testing.stacktrace.htmlEscape_ = function(text) {
return text.replace(/&/g, '&')
.replace(/</g, '<')
.replace(/>/g, '>')
.replace(/"/g, '"');
};
/**
* Converts the stack frames into canonical format. Chops the beginning and the
* end of it which come from the testing environment, not from the test itself.
* @param {!Array<goog.testing.stacktrace.Frame>} frames The frames.
* @return {string} Canonical, pretty printed stack trace.
* @private
*/
goog.testing.stacktrace.framesToString_ = function(frames) {
// Removes the anonymous calls from the end of the stack trace (they come
// from testrunner.js, testcase.js and asserts.js), so the stack trace will
// end with the test... method.
var lastIndex = frames.length - 1;
while (frames[lastIndex] && frames[lastIndex].isAnonymous()) {
lastIndex--;
}
// Removes the beginning of the stack trace until the call of the private
// _assert function (inclusive), so the stack trace will begin with a public
// asserter. Does nothing if _assert is not present in the stack trace.
var privateAssertIndex = -1;
for (var i = 0; i < frames.length; i++) {
if (frames[i] && frames[i].getName() == '_assert') {
privateAssertIndex = i;
break;
}
}
var canonical = [];
for (var i = privateAssertIndex + 1; i <= lastIndex; i++) {
canonical.push('> ');
if (frames[i]) {
canonical.push(frames[i].toCanonicalString());
} else {
canonical.push('(unknown)');
}
canonical.push('\n');
}
return canonical.join('');
};
/**
* Parses the browser's native stack trace.
* @param {string} stack Stack trace.
* @return {!Array<goog.testing.stacktrace.Frame>} Stack frames. The
* unrecognized frames will be nulled out.
* @private
*/
goog.testing.stacktrace.parse_ = function(stack) {
var lines = stack.replace(/\s*$/, '').split('\n');
var frames = [];
for (var i = 0; i < lines.length; i++) {
frames.push(goog.testing.stacktrace.parseStackFrame_(lines[i]));
}
return frames;
};
/**
* Brings the stack trace into a common format across browsers.
* @param {string} stack Browser-specific stack trace.
* @return {string} Same stack trace in common format.
*/
goog.testing.stacktrace.canonicalize = function(stack) {
var frames = goog.testing.stacktrace.parse_(stack);
return goog.testing.stacktrace.framesToString_(frames);
};
/**
* Returns the native stack trace.
* @return {string|!Array<!CallSite>}
* @private
*/
goog.testing.stacktrace.getNativeStack_ = function() {
var tmpError = new Error();
if (tmpError.stack) {
return tmpError.stack;
}
// IE10 will only create a stack trace when the Error is thrown.
// We use null.x() to throw an exception because the closure compiler may
// replace "throw" with a function call in an attempt to minimize the binary
// size, which in turn has the side effect of adding an unwanted stack frame.
try {
null.x();
} catch (e) {
return e.stack;
}
return '';
};
/**
* Gets the native stack trace if available otherwise follows the call chain.
* @return {string} The stack trace in canonical format.
*/
goog.testing.stacktrace.get = function() {
var stack = goog.testing.stacktrace.getNativeStack_();
var frames;
if (!stack) {
frames = goog.testing.stacktrace.followCallChain_();
} else if (goog.isArray(stack)) {
frames = goog.testing.stacktrace.callSitesToFrames_(stack);
} else {
frames = goog.testing.stacktrace.parse_(stack);
}
return goog.testing.stacktrace.framesToString_(frames);
};
/**
* Converts an array of CallSite (elements of a stack trace in V8) to an array
* of Frames.
* @param {!Array<!CallSite>} stack The stack as an array of CallSites.
* @return {!Array<!goog.testing.stacktrace.Frame>} The stack as an array of
* Frames.
* @private
*/
goog.testing.stacktrace.callSitesToFrames_ = function(stack) {
var frames = [];
for (var i = 0; i < stack.length; i++) {
var callSite = stack[i];
var functionName = callSite.getFunctionName() || 'unknown';
var fileName = callSite.getFileName();
var path = fileName ?
fileName + ':' + callSite.getLineNumber() + ':' +
callSite.getColumnNumber() :
'unknown';
frames.push(new goog.testing.stacktrace.Frame('', functionName, '', path));
}
return frames;
};
goog.exportSymbol(
'setDeobfuscateFunctionName',
goog.testing.stacktrace.setDeobfuscateFunctionName);
|