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
|
/* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */
/* vim: set ft=javascript ts=2 et sw=2 tw=80: */
/* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/publicdomain/zero/1.0/ */
/**
* Tests if the same source is shown after a page is reloaded.
*/
const TAB_URL = EXAMPLE_URL + "doc_script-switching-01.html";
const FIRST_URL = EXAMPLE_URL + "code_script-switching-01.js";
const SECOND_URL = EXAMPLE_URL + "code_script-switching-02.js";
function test() {
// Debug test slaves are a bit slow at this test.
requestLongerTimeout(2);
let options = {
source: FIRST_URL,
line: 1
};
initDebugger(TAB_URL, options).then(([aTab,, aPanel]) => {
const gTab = aTab;
const gPanel = aPanel;
const gDebugger = aPanel.panelWin;
const gTarget = gDebugger.gTarget;
const gSources = gDebugger.DebuggerView.Sources;
const queries = gDebugger.require("./content/queries");
const actions = bindActionCreators(gPanel);
const getState = gDebugger.DebuggerController.getState;
let gStep = 0;
function reloadPage() {
const navigated = waitForNavigation(gPanel);
reload(gPanel);
return navigated;
}
function switchAndReload(aUrl) {
actions.selectSource(getSourceForm(gSources, aUrl));
return reloadPage();
}
function testCurrentSource(aUrl, aExpectedUrl = aUrl) {
const prefSource = getSourceURL(gSources, gSources.preferredValue);
const selSource = getSourceURL(gSources, gSources.selectedValue);
info("Currently preferred source: '" + prefSource + "'.");
info("Currently selected source: '" + selSource + "'.");
is(prefSource, aExpectedUrl,
"The preferred source url wasn't set correctly (" + gStep + ").");
is(selSource, aUrl,
"The selected source isn't the correct one (" + gStep + ").");
}
function performTest() {
switch (gStep++) {
case 0:
testCurrentSource(FIRST_URL, null);
reloadPage().then(performTest);
break;
case 1:
testCurrentSource(FIRST_URL);
reloadPage().then(performTest);
break;
case 2:
testCurrentSource(FIRST_URL);
switchAndReload(SECOND_URL).then(performTest);
break;
case 3:
testCurrentSource(SECOND_URL);
reloadPage().then(performTest);
break;
case 4:
testCurrentSource(SECOND_URL);
reloadPage().then(performTest);
break;
case 5:
testCurrentSource(SECOND_URL);
closeDebuggerAndFinish(gPanel);
break;
}
}
performTest();
});
}
|