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
|
<!-- This Source Code Form is subject to the terms of the Mozilla Public
- License, v. 2.0. If a copy of the MPL was not distributed with this
- file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
<!DOCTYPE HTML>
<html>
<!--
Test the rendering of a stack trace
-->
<head>
<meta charset="utf-8">
<title>StackTrace component test</title>
<script src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"></script>
<script src="chrome://mochikit/content/tests/SimpleTest/SpawnTask.js"></script>
<link rel="stylesheet" type="text/css" href="chrome://mochikit/content/tests/SimpleTest/test.css">
</head>
<body>
<script src="head.js"></script>
<script>
/* import-globals-from head.js */
"use strict";
window.onload = function () {
let ReactDOM = browserRequire("devtools/client/shared/vendor/react-dom");
let React = browserRequire("devtools/client/shared/vendor/react");
let StackTrace = React.createFactory(
browserRequire("devtools/client/shared/components/stack-trace")
);
ok(StackTrace, "Got the StackTrace factory");
add_task(function* () {
let stacktrace = [
{
filename: "http://myfile.com/mahscripts.js",
lineNumber: 55,
columnNumber: 10
},
{
asyncCause: "because",
functionName: "loadFunc",
filename: "http://myfile.com/loader.js -> http://myfile.com/loadee.js",
lineNumber: 10
}
];
let props = {
stacktrace,
onViewSourceInDebugger: () => {}
};
let trace = ReactDOM.render(StackTrace(props), window.document.body);
yield forceRender(trace);
let traceEl = trace.getDOMNode();
ok(traceEl, "Rendered StackTrace has an element");
// Get the child nodes and filter out the text-only whitespace ones
let frameEls = Array.from(traceEl.childNodes)
.filter(n => n.className.includes("frame"));
ok(frameEls, "Rendered StackTrace has frames");
is(frameEls.length, 3, "StackTrace has 3 frames");
// Check the top frame, function name should be anonymous
checkFrameString({
el: frameEls[0],
functionName: "<anonymous>",
source: "http://myfile.com/mahscripts.js",
file: "http://myfile.com/mahscripts.js",
line: 55,
column: 10,
shouldLink: true,
tooltip: "View source in Debugger → http://myfile.com/mahscripts.js:55:10",
});
// Check the async cause node
is(frameEls[1].className, "frame-link-async-cause",
"Async cause has the right class");
is(frameEls[1].textContent, "(Async: because)", "Async cause has the right label");
// Check the third frame, the source should be parsed into a valid source URL
checkFrameString({
el: frameEls[2],
functionName: "loadFunc",
source: "http://myfile.com/loadee.js",
file: "http://myfile.com/loadee.js",
line: 10,
column: null,
shouldLink: true,
tooltip: "View source in Debugger → http://myfile.com/loadee.js:10",
});
// Check the tabs and newlines in the stack trace textContent
let traceText = traceEl.textContent;
let traceLines = traceText.split("\n");
ok(traceLines.length > 0, "There are newlines in the stack trace text");
is(traceLines.pop(), "", "There is a newline at the end of the stack trace text");
is(traceLines.length, 3, "The stack trace text has 3 lines");
ok(traceLines.every(l => l[0] == "\t"), "Every stack trace line starts with tab");
});
};
</script>
</body>
</html>
|