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
|
/* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/publicdomain/zero/1.0/ */
// Check that message persistence works - bug 705921 / bug 1307881
"use strict";
const TEST_URI =
"http://example.com/browser/devtools/client/webconsole/" +
"test/browser/test-console.html";
registerCleanupFunction(() => {
Services.prefs.clearUserPref("devtools.webconsole.persistlog");
});
add_task(async function() {
info("Testing that messages disappear on a refresh if logs aren't persisted");
const hud = await openNewTabAndConsole(TEST_URI);
const INITIAL_LOGS_NUMBER = 5;
await SpecialPowers.spawn(
gBrowser.selectedBrowser,
[INITIAL_LOGS_NUMBER],
count => {
content.wrappedJSObject.doLogs(count);
}
);
await waitFor(() => findMessages(hud, "").length === INITIAL_LOGS_NUMBER);
ok(true, "Messages showed up initially");
const onReloaded = hud.ui.once("reloaded");
await refreshTab();
await onReloaded;
await waitFor(() => findMessages(hud, "").length === 0);
ok(true, "Messages disappeared");
await closeToolbox();
});
add_task(async function() {
info("Testing that messages persist on a refresh if logs are persisted");
const hud = await openNewTabAndConsole(TEST_URI);
await toggleConsoleSetting(
hud,
".webconsole-console-settings-menu-item-persistentLogs"
);
const INITIAL_LOGS_NUMBER = 5;
await SpecialPowers.spawn(
gBrowser.selectedBrowser,
[INITIAL_LOGS_NUMBER],
count => {
content.wrappedJSObject.doLogs(count);
}
);
await waitFor(() => findMessages(hud, "").length === INITIAL_LOGS_NUMBER);
ok(true, "Messages showed up initially");
const onNavigatedMessage = waitForMessage(hud, "Navigated to");
const onReloaded = hud.ui.once("reloaded");
refreshTab();
await onNavigatedMessage;
await onReloaded;
ok(true, "Navigation message appeared as expected");
is(
findMessages(hud, "").length,
INITIAL_LOGS_NUMBER + 1,
"Messages logged before navigation are still visible"
);
const {
visibleMessages,
messagesById,
} = hud.ui.wrapper.getStore().getState().messages;
const [commandId, resultId] = visibleMessages;
const commandMessage = messagesById.get(commandId).timeStamp;
const resultMessage = messagesById.get(resultId).timeStamp;
ok(
resultMessage > commandMessage && resultMessage < Date.now(),
"The result has a timestamp newer than the command and older than current time"
);
await closeToolbox();
});
|