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
|
// Copyright 2007 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.
goog.provide('goog.debugEnhanceErrorTest');
goog.setTestOnly('goog.debugEnhanceErrorTest');
goog.require('goog.debug');
goog.require('goog.testing.jsunit');
var THROW_STRING = 1;
var THROW_NPE = 2;
var THROW_ERROR = 3;
var THROW_ENHANCED_ERROR = 4;
var THROW_ENHANCED_STRING = 5;
var THROW_OBJECT = 6;
if (typeof debug == 'undefined') {
function debug(str) {
if (window.console) window.console.log(str);
}
}
function testEnhanceError() {
// Tests are like this:
// [test num, expect something in the stack, expect an extra message]
var tests = [
[THROW_STRING], [THROW_OBJECT], [THROW_NPE], [THROW_ERROR],
[THROW_ENHANCED_ERROR, 'throwEnhancedError', 'an enhanced error'],
[THROW_ENHANCED_STRING, 'throwEnhancedString']
];
for (var i = 0; i < tests.length; ++i) {
var test = tests[i];
var testNum = test[0];
var testInStack = test[1];
var testExtraMessage = test[2] || null;
try {
foo(testNum);
} catch (e) {
debug(goog.debug.expose(e));
var s = e.stack.split('\n');
for (var j = 0; j < s.length; ++j) {
debug(s[j]);
}
// 'baz' is always in the stack
assertTrue('stack should contain "baz"', e.stack.indexOf('baz') != -1);
if (testInStack) {
assertTrue(
'stack should contain "' + testInStack + '"',
e.stack.indexOf(testInStack) != -1);
}
if (testExtraMessage) {
// 2 messages
assertTrue(
'message0 should contain "' + testExtraMessage + '"',
e.message0.indexOf(testExtraMessage) != -1);
assertTrue(
'message1 should contain "message from baz"',
e.message1.indexOf('message from baz') != -1);
} else {
// 1 message
assertTrue(
'message0 should contain "message from baz"',
e.message0.indexOf('message from baz') != -1);
}
continue;
}
fail('expected to catch an exception');
}
}
function foo(testNum) {
bar(testNum);
}
function bar(testNum) {
baz(testNum);
}
function baz(testNum) {
try {
switch (testNum) {
case THROW_STRING:
throwString();
break;
case THROW_NPE:
throwNpe();
break;
case THROW_ERROR:
throwError();
break;
case THROW_ENHANCED_ERROR:
throwEnhancedError();
break;
case THROW_ENHANCED_STRING:
throwEnhancedString();
break;
case THROW_OBJECT:
throwObject();
break;
}
} catch (e) {
throw goog.debug.enhanceError(e, 'message from baz');
}
}
function throwString() {
throw 'a string';
}
function throwNpe() {
var nada = null;
nada.noSuchFunction();
}
function throwError() {
throw new Error('an error');
}
function throwEnhancedError() {
throw goog.debug.enhanceError(Error('dang!'), 'an enhanced error');
}
function throwEnhancedString() {
throw goog.debug.enhanceError('oh nos!');
}
/**
* @throws {*}
*/
function throwObject() {
throw {property: 'value'};
}
|