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
|
/* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";
const PAGE_CONSOLE_EVENTS =
"http://example.com/browser/remote/test/browser/runtime/doc_console_events.html";
add_task(async function noEventsWhenRuntimeDomainDisabled({ client }) {
await runExceptionThrownTest(client, 0, async () => {
await throwScriptError({ text: "foo" });
});
});
add_task(async function noEventsAfterRuntimeDomainDisabled({ client }) {
const { Runtime } = client;
await Runtime.enable();
await Runtime.disable();
await runExceptionThrownTest(client, 0, async () => {
await throwScriptError({ text: "foo" });
});
});
add_task(async function noEventsForScriptErrorWithoutException({ client }) {
const { Runtime } = client;
await Runtime.enable();
await runExceptionThrownTest(client, 0, async () => {
await throwScriptError({ text: "foo" });
});
});
add_task(async function eventsForScriptErrorWithException({ client }) {
await loadURL(PAGE_CONSOLE_EVENTS);
const context = await enableRuntime(client);
const events = await runExceptionThrownTest(client, 1, async () => {
evaluate(client, context.id, () => {
document.getElementById("js-error").click();
});
});
is(
typeof events[0].exceptionId,
"number",
"Got expected type for exception id"
);
is(
events[0].text,
"TypeError: foo.click is not a function",
"Got expected text"
);
is(events[0].lineNumber, 9, "Got expected line number");
is(events[0].columnNumber, 11, "Got expected column number");
is(events[0].url, PAGE_CONSOLE_EVENTS, "Got expected url");
is(
events[0].executionContextId,
context.id,
"Got event from current execution context"
);
const callFrames = events[0].stackTrace.callFrames;
is(callFrames.length, 2, "Got expected amount of call frames");
is(callFrames[0].functionName, "throwError", "Got expected function name");
is(callFrames[0].url, PAGE_CONSOLE_EVENTS, "Got expected url");
is(callFrames[0].lineNumber, 9, "Got expected line number");
is(callFrames[0].columnNumber, 11, "Got expected column number");
is(callFrames[1].functionName, "onclick", "Got expected function name");
is(callFrames[1].url, PAGE_CONSOLE_EVENTS, "Got expected url");
});
async function runExceptionThrownTest(
client,
eventCount,
callback,
options = {}
) {
const { Runtime } = client;
const EVENT_EXCEPTION_THROWN = "Runtime.exceptionThrown";
const history = new RecordEvents(eventCount);
history.addRecorder({
event: Runtime.exceptionThrown,
eventName: EVENT_EXCEPTION_THROWN,
messageFn: payload => `Received "${payload.name}"`,
});
const timeBefore = Date.now();
await callback();
const exceptionThrownEvents = await history.record();
is(exceptionThrownEvents.length, eventCount, "Got expected amount of events");
if (eventCount == 0) {
return [];
}
const timeAfter = Date.now();
// Check basic details for entryAdded events
exceptionThrownEvents.forEach(event => {
const details = event.payload.exceptionDetails;
const timestamp = event.payload.timestamp;
is(typeof details, "object", "Got expected 'exceptionDetails' property");
ok(
timestamp >= timeBefore && timestamp <= timeAfter,
"Got valid timestamp"
);
});
return exceptionThrownEvents.map(event => event.payload.exceptionDetails);
}
|