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
|
/* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";
// Check adding console calls as batch keep the order of the message.
const TEST_URI =
"http://example.com/browser/devtools/client/webconsole/" +
"test/browser/test-batching.html";
const { l10n } = require("devtools/client/webconsole/utils/messages");
add_task(async function() {
const hud = await openNewTabAndConsole(TEST_URI);
const messageNumber = 100;
await testSimpleBatchLogging(hud, messageNumber);
await testBatchLoggingAndClear(hud, messageNumber);
});
async function testSimpleBatchLogging(hud, messageNumber) {
await SpecialPowers.spawn(gBrowser.selectedBrowser, [messageNumber], function(
numMessages
) {
content.wrappedJSObject.batchLog(numMessages);
});
for (let i = 0; i < messageNumber; i++) {
const node = await waitFor(() => findMessageAtIndex(hud, i, i));
is(
node.textContent,
i.toString(),
`message at index "${i}" is the expected one`
);
}
}
async function testBatchLoggingAndClear(hud, messageNumber) {
await SpecialPowers.spawn(gBrowser.selectedBrowser, [messageNumber], function(
numMessages
) {
content.wrappedJSObject.batchLogAndClear(numMessages);
});
await waitFor(() => findMessage(hud, l10n.getStr("consoleCleared")));
ok(true, "console cleared message is displayed");
// Passing the text argument as an empty string will returns all the message,
// whatever their content is.
const messages = findMessages(hud, "");
is(messages.length, 1, "console was cleared as expected");
}
function findMessageAtIndex(hud, text, index) {
const selector = `.message:nth-of-type(${index + 1}) .message-body`;
return findMessage(hud, text, selector);
}
|