summaryrefslogtreecommitdiffstats
path: root/devtools/client/debugger/test/mochitest/browser_dbg_variables-view-filter-04.js
blob: 3915afce8aae250af25000c5e9b2bf1ca4a894a4 (plain)
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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
/* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */
/* Any copyright is dedicated to the Public Domain.
 * http://creativecommons.org/publicdomain/zero/1.0/ */

/**
 * Make sure that the variables view correctly shows/hides nodes when various
 * keyboard shortcuts are pressed in the debugger's searchbox.
 */

const TAB_URL = EXAMPLE_URL + "doc_with-frame.html";

var gTab, gPanel, gDebugger;
var gEditor, gVariables, gSearchBox;

function test() {
  // Debug test slaves are a bit slow at this test.
  requestLongerTimeout(2);

  let options = {
    source: TAB_URL,
    line: 1
  };
  initDebugger(TAB_URL, options).then(([aTab,, aPanel]) => {
    gTab = aTab;
    gPanel = aPanel;
    gDebugger = gPanel.panelWin;
    gEditor = gDebugger.DebuggerView.editor;
    gVariables = gDebugger.DebuggerView.Variables;
    gSearchBox = gDebugger.DebuggerView.Filtering._searchbox;

    // The first 'with' scope should be expanded by default, but the
    // variables haven't been fetched yet. This is how 'with' scopes work.
    promise.all([
      waitForCaretAndScopes(gPanel, 22),
      waitForDebuggerEvents(gPanel, gDebugger.EVENTS.FETCHED_VARIABLES)
    ]).then(prepareVariablesAndProperties)
      .then(testVariablesAndPropertiesFiltering)
      .then(() => resumeDebuggerThenCloseAndFinish(gPanel))
      .then(null, aError => {
        ok(false, "Got an error: " + aError.message + "\n" + aError.stack);
      });

    generateMouseClickInTab(gTab, "content.document.querySelector('button')");
  });
}

function testVariablesAndPropertiesFiltering() {
  let localScope = gVariables.getScopeAtIndex(0);
  let withScope = gVariables.getScopeAtIndex(1);
  let functionScope = gVariables.getScopeAtIndex(2);
  let globalLexicalScope = gVariables.getScopeAtIndex(3);
  let globalScope = gVariables.getScopeAtIndex(4);
  let step = 0;

  let tests = [
    function () {
      assertExpansion([true, false, false, false, false]);
      EventUtils.sendKey("RETURN", gDebugger);
    },
    function () {
      assertExpansion([true, false, false, false, false]);
      EventUtils.sendKey("RETURN", gDebugger);
    },
    function () {
      assertExpansion([true, false, false, false, false]);
      gEditor.focus();
    },
    function () {
      assertExpansion([true, false, false, false, false]);
      typeText(gSearchBox, "*");
    },
    function () {
      assertExpansion([true, true, true, true, true]);
      EventUtils.sendKey("RETURN", gDebugger);
    },
    function () {
      assertExpansion([true, true, true, true, true]);
      EventUtils.sendKey("RETURN", gDebugger);
    },
    function () {
      assertExpansion([true, true, true, true, true]);
      gEditor.focus();
    },
    function () {
      assertExpansion([true, true, true, true, true]);
      backspaceText(gSearchBox, 1);
    },
    function () {
      assertExpansion([true, true, true, true, true]);
      EventUtils.sendKey("RETURN", gDebugger);
    },
    function () {
      assertExpansion([true, true, true, true, true]);
      EventUtils.sendKey("RETURN", gDebugger);
    },
    function () {
      assertExpansion([true, true, true, true, true]);
      gEditor.focus();
    },
    function () {
      assertExpansion([true, true, true, true, true]);
      localScope.collapse();
      withScope.collapse();
      functionScope.collapse();
      globalLexicalScope.collapse();
      globalScope.collapse();
    },
    function () {
      assertExpansion([false, false, false, false, false]);
      EventUtils.sendKey("RETURN", gDebugger);
    },
    function () {
      assertExpansion([false, false, false, false, false]);
      EventUtils.sendKey("RETURN", gDebugger);
    },
    function () {
      assertExpansion([false, false, false, false, false]);
      gEditor.focus();
    },
    function () {
      assertExpansion([false, false, false, false, false]);
      clearText(gSearchBox);
      typeText(gSearchBox, "*");
    },
    function () {
      assertExpansion([true, true, true, true, true]);
      EventUtils.sendKey("RETURN", gDebugger);
    },
    function () {
      assertExpansion([true, true, true, true, true]);
      EventUtils.sendKey("RETURN", gDebugger);
    },
    function () {
      assertExpansion([true, true, true, true, true]);
      gEditor.focus();
    },
    function () {
      assertExpansion([true, true, true, true, true]);
      backspaceText(gSearchBox, 1);
    },
    function () {
      assertExpansion([true, true, true, true, true]);
      EventUtils.sendKey("RETURN", gDebugger);
    },
    function () {
      assertExpansion([true, true, true, true, true]);
      EventUtils.sendKey("RETURN", gDebugger);
    },
    function () {
      assertExpansion([true, true, true, true, true]);
      gEditor.focus();
    },
    function () {
      assertExpansion([true, true, true, true, true]);
    }
  ];

  function assertExpansion(aFlags) {
    is(localScope.expanded, aFlags[0],
      "The localScope should " + (aFlags[0] ? "" : "not ") +
      "be expanded at this point (" + step + ").");

    is(withScope.expanded, aFlags[1],
      "The withScope should " + (aFlags[1] ? "" : "not ") +
      "be expanded at this point (" + step + ").");

    is(functionScope.expanded, aFlags[2],
      "The functionScope should " + (aFlags[2] ? "" : "not ") +
      "be expanded at this point (" + step + ").");

    is(globalLexicalScope.expanded, aFlags[3],
      "The globalLexicalScope should " + (aFlags[3] ? "" : "not ") +
      "be expanded at this point (" + step + ").");

    is(globalScope.expanded, aFlags[4],
      "The globalScope should " + (aFlags[4] ? "" : "not ") +
      "be expanded at this point (" + step + ").");

    step++;
  }

  return promise.all(tests.map(f => f()));
}

function prepareVariablesAndProperties() {
  let deferred = promise.defer();

  let localScope = gVariables.getScopeAtIndex(0);
  let withScope = gVariables.getScopeAtIndex(1);
  let functionScope = gVariables.getScopeAtIndex(2);
  let globalLexicalScope = gVariables.getScopeAtIndex(3);
  let globalScope = gVariables.getScopeAtIndex(4);

  is(localScope.expanded, true,
    "The localScope should be expanded.");
  is(withScope.expanded, false,
    "The withScope should not be expanded yet.");
  is(functionScope.expanded, false,
    "The functionScope should not be expanded yet.");
  is(globalLexicalScope.expanded, false,
    "The globalLexicalScope should not be expanded yet.");
  is(globalScope.expanded, false,
    "The globalScope should not be expanded yet.");

  // Wait for only two events to be triggered, because the Function scope is
  // an environment to which scope arguments and variables are already attached.
  waitForDebuggerEvents(gPanel, gDebugger.EVENTS.FETCHED_VARIABLES, 2).then(() => {
    is(localScope.expanded, true,
      "The localScope should now be expanded.");
    is(withScope.expanded, true,
      "The withScope should now be expanded.");
    is(functionScope.expanded, true,
      "The functionScope should now be expanded.");
    is(globalLexicalScope.expanded, true,
      "The globalLexicalScope should now be expanded.");
    is(globalScope.expanded, true,
      "The globalScope should now be expanded.");

    withScope.collapse();
    functionScope.collapse();
    globalLexicalScope.collapse();
    globalScope.collapse();

    deferred.resolve();
  });

  withScope.expand();
  functionScope.expand();
  globalLexicalScope.expand();
  globalScope.expand();

  return deferred.promise;
}

registerCleanupFunction(function () {
  gTab = null;
  gPanel = null;
  gDebugger = null;
  gEditor = null;
  gVariables = null;
  gSearchBox = null;
});