summaryrefslogtreecommitdiff
path: root/browser/devtools/debugger/test/browser_dbg_propertyview-edit-watch.js
blob: 231b3a83aa569f0867d25685af6c9fbcb7555422 (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
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
/* vim:set ts=2 sw=2 sts=2 et: */
/*
 * Any copyright is dedicated to the Public Domain.
 * http://creativecommons.org/publicdomain/zero/1.0/
 */

/**
 * Make sure that the editing or removing watch expressions works properly.
 */

const TAB_URL = EXAMPLE_URL + "browser_dbg_watch-expressions.html";

var gPane = null;
var gTab = null;
var gDebuggee = null;
var gDebugger = null;
var gWatch = null;
var gVars = null;

requestLongerTimeout(3);

function test() {
  debug_tab_pane(TAB_URL, function(aTab, aDebuggee, aPane) {
    gTab = aTab;
    gDebuggee = aDebuggee;
    gPane = aPane;
    gDebugger = gPane.panelWin;
    gWatch = gDebugger.DebuggerView.WatchExpressions;
    gVars = gDebugger.DebuggerView.Variables;

    gDebugger.DebuggerController.StackFrames.autoScopeExpand = true;
    gDebugger.DebuggerView.Variables.nonEnumVisible = false;
    testFrameEval();
  });
}

function testFrameEval() {
  gDebugger.addEventListener("Debugger:FetchedWatchExpressions", function test() {
    gDebugger.removeEventListener("Debugger:FetchedWatchExpressions", test, false);
    Services.tm.currentThread.dispatch({ run: function() {

      is(gDebugger.DebuggerController.activeThread.state, "paused",
        "Should only be getting stack frames while paused.");

      var localScope = gDebugger.DebuggerView.Variables._list.querySelectorAll(".variables-view-scope")[1],
          localNodes = localScope.querySelector(".variables-view-element-details").childNodes,
          aArg = localNodes[1],
          varT = localNodes[3];

      is(aArg.querySelector(".name").getAttribute("value"), "aArg",
        "Should have the right name for 'aArg'.");
      is(varT.querySelector(".name").getAttribute("value"), "t",
        "Should have the right name for 't'.");

      is(aArg.querySelector(".value").getAttribute("value"), "undefined",
        "Should have the right initial value for 'aArg'.");
      is(varT.querySelector(".value").getAttribute("value"), "\"Browser Debugger Watch Expressions Test\"",
        "Should have the right initial value for 't'.");

      is(gWatch.widget._parent.querySelectorAll(".dbg-expression[hidden=true]").length, 5,
        "There should be 5 hidden nodes in the watch expressions container");
      is(gWatch.widget._parent.querySelectorAll(".dbg-expression:not([hidden=true])").length, 0,
        "There should be 0 visible nodes in the watch expressions container");

      let label = gDebugger.L10N.getStr("watchExpressionsScopeLabel");
      let scope = gVars._currHierarchy.get(label);

      ok(scope, "There should be a wach expressions scope in the variables view");
      is(scope._store.size, 5, "There should be 5 evaluations availalble");

      is(scope.get("this")._isContentVisible, true,
        "Should have the right visibility state for 'this'.");
      is(scope.get("this").target.querySelectorAll(".variables-view-delete").length, 1,
        "Should have the one close button visible for 'this'.");
      is(scope.get("this").name, "this",
        "Should have the right name for 'this'.");
      is(scope.get("this").value.type, "object",
        "Should have the right value type for 'this'.");
      is(scope.get("this").value.class, "Window",
        "Should have the right value type for 'this'.");

      is(scope.get("ermahgerd")._isContentVisible, true,
        "Should have the right visibility state for 'ermahgerd'.");
      is(scope.get("ermahgerd").target.querySelectorAll(".variables-view-delete").length, 1,
        "Should have the one close button visible for 'ermahgerd'.");
      is(scope.get("ermahgerd").name, "ermahgerd",
        "Should have the right name for 'ermahgerd'.");
      is(scope.get("ermahgerd").value.type, "object",
        "Should have the right value type for 'ermahgerd'.");
      is(scope.get("ermahgerd").value.class, "Function",
        "Should have the right value type for 'ermahgerd'.");

      is(scope.get("aArg")._isContentVisible, true,
        "Should have the right visibility state for 'aArg'.");
      is(scope.get("aArg").target.querySelectorAll(".variables-view-delete").length, 1,
        "Should have the one close button visible for 'aArg'.");
      is(scope.get("aArg").name, "aArg",
        "Should have the right name for 'aArg'.");
      is(scope.get("aArg").value.type, "undefined",
        "Should have the right value for 'aArg'.");
      is(scope.get("aArg").value.class, undefined,
        "Should have the right value for 'aArg'.");

      is(scope.get("document.title")._isContentVisible, true,
        "Should have the right visibility state for 'document.title'.");
      is(scope.get("document.title").target.querySelectorAll(".variables-view-delete").length, 1,
        "Should have the one close button visible for 'document.title'.");
      is(scope.get("document.title").name, "document.title",
        "Should have the right name for 'document.title'.");
      is(scope.get("document.title").value, "42",
        "Should have the right value for 'document.title'.");
      is(typeof scope.get("document.title").value, "string",
        "Should have the right value type for 'document.title'.");

      is(scope.get("document.title = 42")._isContentVisible, true,
        "Should have the right visibility state for 'document.title = 42'.");
      is(scope.get("document.title = 42").target.querySelectorAll(".variables-view-delete").length, 1,
        "Should have the one close button visible for 'document.title = 42'.");
      is(scope.get("document.title = 42").name, "document.title = 42",
        "Should have the right name for 'document.title = 42'.");
      is(scope.get("document.title = 42").value, 42,
        "Should have the right value for 'document.title = 42'.");
      is(typeof scope.get("document.title = 42").value, "number",
        "Should have the right value type for 'document.title = 42'.");

      testModification(scope.get("document.title = 42").target, test1, function(scope) {
        testModification(scope.get("aArg").target, test2, function(scope) {
          testModification(scope.get("aArg = 44").target, test3, function(scope) {
            testModification(scope.get("document.title = 43").target, test4, function(scope) {
              testModification(scope.get("document.title").target, test5, function(scope) {
                testExprDeletion(scope.get("this").target, test6, function(scope) {
                  testExprDeletion(null, test7, function(scope) {
                    resumeAndFinish();
                  }, 44, 0, true, true);
                }, 44);
              }, " \t\r\n", "\"43\"", 44, 1, true);
            }, " \t\r\ndocument.title \t\r\n", "\"43\"", 44);
          }, " \t\r\ndocument.title \t\r\n", "\"43\"", 44);
        }, "aArg = 44", 44, 44);
      }, "document.title = 43", 43, "undefined");
    }}, 0);
  }, false);

  addWatchExpression("this");
  addWatchExpression("ermahgerd");
  addWatchExpression("aArg");
  addWatchExpression("document.title");
  addCmdWatchExpression("document.title = 42");

  executeSoon(function() {
    gDebuggee.ermahgerd(); // ermahgerd!!
  });
}

function testModification(aVar, aTest, aCallback, aNewValue, aNewResult, aArgResult,
                          aLocalScopeIndex = 1, aDeletionFlag = null)
{
  function makeChangesAndExitInputMode() {
    EventUtils.sendString(aNewValue, gDebugger);
    EventUtils.sendKey("RETURN", gDebugger);
  }

  EventUtils.sendMouseEvent({ type: "dblclick" },
    aVar.querySelector(".name"),
    gDebugger);

  executeSoon(function() {
    ok(aVar.querySelector(".element-name-input"),
      "There should be an input element created.");

    let testContinued = false;
    let fetchedVariables = false;
    let fetchedExpressions = false;

    let countV = 0;
    gDebugger.addEventListener("Debugger:FetchedVariables", function testV() {
      // We expect 2 Debugger:FetchedVariables events, one from the global
      // object scope and the regular one.
      if (++countV < 2) {
        info("Number of received Debugger:FetchedVariables events: " + countV);
        return;
      }
      gDebugger.removeEventListener("Debugger:FetchedVariables", testV, false);
      fetchedVariables = true;
      executeSoon(continueTest);
    }, false);

    let countE = 0;
    gDebugger.addEventListener("Debugger:FetchedWatchExpressions", function testE() {
      // We expect only one Debugger:FetchedWatchExpressions event, since all
      // expressions are evaluated at the same time.
      if (++countE < 1) {
        info("Number of received Debugger:FetchedWatchExpressions events: " + countE);
        return;
      }
      gDebugger.removeEventListener("Debugger:FetchedWatchExpressions", testE, false);
      fetchedExpressions = true;
      executeSoon(continueTest);
    }, false);

    function continueTest() {
      if (testContinued || !fetchedVariables || !fetchedExpressions) {
        return;
      }
      testContinued = true;

      // Get the variable reference anew, since the old ones were discarded when
      // we resumed.
      var localScope = gDebugger.DebuggerView.Variables._list.querySelectorAll(".variables-view-scope")[aLocalScopeIndex],
          localNodes = localScope.querySelector(".variables-view-element-details").childNodes,
          aArg = localNodes[1];

      is(aArg.querySelector(".value").getAttribute("value"), aArgResult,
        "Should have the right value for 'aArg'.");

      let label = gDebugger.L10N.getStr("watchExpressionsScopeLabel");
      let scope = gVars._currHierarchy.get(label);
      info("Found the watch expressions scope: " + scope);

      let aExp = scope.get(aVar.querySelector(".name").getAttribute("value"));
      info("Found the watch expression variable: " + aExp);

      if (aDeletionFlag) {
        ok(fetchedVariables, "The variables should have been fetched.");
        ok(fetchedExpressions, "The variables should have been fetched.");
        is(aExp, undefined, "The watch expression should not have been found.");
        performCallback(scope);
        return;
      }

      is(aExp.target.querySelector(".name").getAttribute("value"), aNewValue.trim(),
        "Should have the right name for '" + aNewValue + "'.");
      is(aExp.target.querySelector(".value").getAttribute("value"), aNewResult,
        "Should have the right value for '" + aNewValue + "'.");

      performCallback(scope);
    }

    makeChangesAndExitInputMode();
  });

  function performCallback(scope) {
    executeSoon(function() {
      aTest(scope);
      aCallback(scope);
    });
  }
}

function testExprDeletion(aVar, aTest, aCallback, aArgResult,
                          aLocalScopeIndex = 1, aFinalFlag = null, aRemoveAllFlag = null)
{
  let testContinued = false;
  let fetchedVariables = false;
  let fetchedExpressions = false;

  let countV = 0;
  gDebugger.addEventListener("Debugger:FetchedVariables", function testV() {
    // We expect 2 Debugger:FetchedVariables events, one from the global
    // object scope and the regular one.
    if (++countV < 2) {
      info("Number of received Debugger:FetchedVariables events: " + countV);
      return;
    }
    gDebugger.removeEventListener("Debugger:FetchedVariables", testV, false);
    fetchedVariables = true;
    executeSoon(continueTest);
  }, false);

  let countE = 0;
  gDebugger.addEventListener("Debugger:FetchedWatchExpressions", function testE() {
    // We expect only one Debugger:FetchedWatchExpressions event, since all
    // expressions are evaluated at the same time.
    if (++countE < 1) {
      info("Number of received Debugger:FetchedWatchExpressions events: " + countE);
      return;
    }
    gDebugger.removeEventListener("Debugger:FetchedWatchExpressions", testE, false);
    fetchedExpressions = true;
    executeSoon(continueTest);
  }, false);

  function continueTest() {
    if ((testContinued || !fetchedVariables || !fetchedExpressions) && !aFinalFlag) {
      return;
    }
    testContinued = true;

    // Get the variable reference anew, since the old ones were discarded when
    // we resumed.
    var localScope = gDebugger.DebuggerView.Variables._list.querySelectorAll(".variables-view-scope")[aLocalScopeIndex],
        localNodes = localScope.querySelector(".variables-view-element-details").childNodes,
        aArg = localNodes[1];

    is(aArg.querySelector(".value").getAttribute("value"), aArgResult,
      "Should have the right value for 'aArg'.");

    let label = gDebugger.L10N.getStr("watchExpressionsScopeLabel");
    let scope = gVars._currHierarchy.get(label);
    info("Found the watch expressions scope: " + scope);

    if (aFinalFlag) {
      ok(fetchedVariables, "The variables should have been fetched.");
      ok(!fetchedExpressions, "The variables should never have been fetched.");
      is(scope, undefined, "The watch expressions scope should not have been found.");
      performCallback(scope);
      return;
    }

    let aExp = scope.get(aVar.querySelector(".name").getAttribute("value"));
    info("Found the watch expression variable: " + aExp);

    is(aExp, undefined, "Should not have found the watch expression after deletion.");
    performCallback(scope);
  }

  function performCallback(scope) {
    executeSoon(function() {
      aTest(scope);
      aCallback(scope);
    });
  }

  if (aRemoveAllFlag) {
    gWatch._onCmdRemoveAllExpressions();
    return;
  }

  EventUtils.sendMouseEvent({ type: "click" },
    aVar.querySelector(".variables-view-delete"),
    gDebugger);
}

function test1(scope) {
  is(gWatch.widget._parent.querySelectorAll(".dbg-expression[hidden=true]").length, 5,
    "There should be 5 hidden nodes in the watch expressions container");
  is(gWatch.widget._parent.querySelectorAll(".dbg-expression:not([hidden=true])").length, 0,
    "There should be 0 visible nodes in the watch expressions container");

  ok(scope, "There should be a wach expressions scope in the variables view");
  is(scope._store.size, 5, "There should be 5 evaluations availalble");

  is(gWatch.getItemAtIndex(0).attachment.inputNode.value, "document.title = 43",
    "The first textbox input value is not the correct one");
  is(gWatch.getItemAtIndex(0).attachment.currentExpression, "document.title = 43",
    "The first textbox input value is not the correct one");
  is(gWatch.getItemAtIndex(1).attachment.inputNode.value, "document.title",
    "The second textbox input value is not the correct one");
  is(gWatch.getItemAtIndex(1).attachment.currentExpression, "document.title",
    "The second textbox input value is not the correct one");
  is(gWatch.getItemAtIndex(2).attachment.inputNode.value, "aArg",
    "The third textbox input value is not the correct one");
  is(gWatch.getItemAtIndex(2).attachment.currentExpression, "aArg",
    "The third textbox input value is not the correct one");
  is(gWatch.getItemAtIndex(3).attachment.inputNode.value, "ermahgerd",
    "The fourth textbox input value is not the correct one");
  is(gWatch.getItemAtIndex(3).attachment.currentExpression, "ermahgerd",
    "The fourth textbox input value is not the correct one");
  is(gWatch.getItemAtIndex(4).attachment.inputNode.value, "this",
    "The fifth textbox input value is not the correct one");
  is(gWatch.getItemAtIndex(4).attachment.currentExpression, "this",
    "The fifth textbox input value is not the correct one");
}

function test2(scope) {
  is(gWatch.widget._parent.querySelectorAll(".dbg-expression[hidden=true]").length, 5,
    "There should be 5 hidden nodes in the watch expressions container");
  is(gWatch.widget._parent.querySelectorAll(".dbg-expression:not([hidden=true])").length, 0,
    "There should be 0 visible nodes in the watch expressions container");

  ok(scope, "There should be a wach expressions scope in the variables view");
  is(scope._store.size, 5, "There should be 5 evaluations availalble");

  is(gWatch.getItemAtIndex(0).attachment.inputNode.value, "document.title = 43",
    "The first textbox input value is not the correct one");
  is(gWatch.getItemAtIndex(0).attachment.currentExpression, "document.title = 43",
    "The first textbox input value is not the correct one");
  is(gWatch.getItemAtIndex(1).attachment.inputNode.value, "document.title",
    "The second textbox input value is not the correct one");
  is(gWatch.getItemAtIndex(1).attachment.currentExpression, "document.title",
    "The second textbox input value is not the correct one");
  is(gWatch.getItemAtIndex(2).attachment.inputNode.value, "aArg = 44",
    "The third textbox input value is not the correct one");
  is(gWatch.getItemAtIndex(2).attachment.currentExpression, "aArg = 44",
    "The third textbox input value is not the correct one");
  is(gWatch.getItemAtIndex(3).attachment.inputNode.value, "ermahgerd",
    "The fourth textbox input value is not the correct one");
  is(gWatch.getItemAtIndex(3).attachment.currentExpression, "ermahgerd",
    "The fourth textbox input value is not the correct one");
  is(gWatch.getItemAtIndex(4).attachment.inputNode.value, "this",
    "The fifth textbox input value is not the correct one");
  is(gWatch.getItemAtIndex(4).attachment.currentExpression, "this",
    "The fifth textbox input value is not the correct one");
}

function test3(scope) {
  is(gWatch.widget._parent.querySelectorAll(".dbg-expression[hidden=true]").length, 4,
    "There should be 4 hidden nodes in the watch expressions container");
  is(gWatch.widget._parent.querySelectorAll(".dbg-expression:not([hidden=true])").length, 0,
    "There should be 0 visible nodes in the watch expressions container");

  ok(scope, "There should be a wach expressions scope in the variables view");
  is(scope._store.size, 4, "There should be 4 evaluations availalble");

  is(gWatch.getItemAtIndex(0).attachment.inputNode.value, "document.title = 43",
    "The first textbox input value is not the correct one");
  is(gWatch.getItemAtIndex(0).attachment.currentExpression, "document.title = 43",
    "The first textbox input value is not the correct one");
  is(gWatch.getItemAtIndex(1).attachment.inputNode.value, "document.title",
    "The second textbox input value is not the correct one");
  is(gWatch.getItemAtIndex(1).attachment.currentExpression, "document.title",
    "The second textbox input value is not the correct one");
  is(gWatch.getItemAtIndex(2).attachment.inputNode.value, "ermahgerd",
    "The third textbox input value is not the correct one");
  is(gWatch.getItemAtIndex(2).attachment.currentExpression, "ermahgerd",
    "The third textbox input value is not the correct one");
  is(gWatch.getItemAtIndex(3).attachment.inputNode.value, "this",
    "The fourth textbox input value is not the correct one");
  is(gWatch.getItemAtIndex(3).attachment.currentExpression, "this",
    "The fourth textbox input value is not the correct one");
}

function test4(scope) {
  is(gWatch.widget._parent.querySelectorAll(".dbg-expression[hidden=true]").length, 3,
    "There should be 3 hidden nodes in the watch expressions container");
  is(gWatch.widget._parent.querySelectorAll(".dbg-expression:not([hidden=true])").length, 0,
    "There should be 0 visible nodes in the watch expressions container");

  ok(scope, "There should be a wach expressions scope in the variables view");
  is(scope._store.size, 3, "There should be 3 evaluations availalble");

  is(gWatch.getItemAtIndex(0).attachment.inputNode.value, "document.title",
    "The first textbox input value is not the correct one");
  is(gWatch.getItemAtIndex(0).attachment.currentExpression, "document.title",
    "The first textbox input value is not the correct one");
  is(gWatch.getItemAtIndex(1).attachment.inputNode.value, "ermahgerd",
    "The second textbox input value is not the correct one");
  is(gWatch.getItemAtIndex(1).attachment.currentExpression, "ermahgerd",
    "The second textbox input value is not the correct one");
  is(gWatch.getItemAtIndex(2).attachment.inputNode.value, "this",
    "The third textbox input value is not the correct one");
  is(gWatch.getItemAtIndex(2).attachment.currentExpression, "this",
    "The third textbox input value is not the correct one");
}

function test5(scope) {
  is(gWatch.widget._parent.querySelectorAll(".dbg-expression[hidden=true]").length, 2,
    "There should be 2 hidden nodes in the watch expressions container");
  is(gWatch.widget._parent.querySelectorAll(".dbg-expression:not([hidden=true])").length, 0,
    "There should be 0 visible nodes in the watch expressions container");

  ok(scope, "There should be a wach expressions scope in the variables view");
  is(scope._store.size, 2, "There should be 2 evaluations availalble");

  is(gWatch.getItemAtIndex(0).attachment.inputNode.value, "ermahgerd",
    "The second textbox input value is not the correct one");
  is(gWatch.getItemAtIndex(0).attachment.currentExpression, "ermahgerd",
    "The second textbox input value is not the correct one");
  is(gWatch.getItemAtIndex(1).attachment.inputNode.value, "this",
    "The third textbox input value is not the correct one");
  is(gWatch.getItemAtIndex(1).attachment.currentExpression, "this",
    "The third textbox input value is not the correct one");
}

function test6(scope) {
  is(gWatch.widget._parent.querySelectorAll(".dbg-expression[hidden=true]").length, 1,
    "There should be 1 hidden nodes in the watch expressions container");
  is(gWatch.widget._parent.querySelectorAll(".dbg-expression:not([hidden=true])").length, 0,
    "There should be 0 visible nodes in the watch expressions container");

  ok(scope, "There should be a wach expressions scope in the variables view");
  is(scope._store.size, 1, "There should be 1 evaluation availalble");

  is(gWatch.getItemAtIndex(0).attachment.inputNode.value, "ermahgerd",
    "The third textbox input value is not the correct one");
  is(gWatch.getItemAtIndex(0).attachment.currentExpression, "ermahgerd",
    "The third textbox input value is not the correct one");
}

function test7(scope) {
  is(gWatch.widget._parent.querySelectorAll(".dbg-expression[hidden=true]").length, 0,
    "There should be 0 hidden nodes in the watch expressions container");
  is(gWatch.widget._parent.querySelectorAll(".dbg-expression:not([hidden=true])").length, 0,
    "There should be 0 visible nodes in the watch expressions container");

  is(scope, undefined, "There should be no watch expressions scope available.");
  is(gWatch.itemCount, 0, "The watch expressions container should be empty.");
}

function addWatchExpression(string) {
  gWatch.addExpression(string);
  gDebugger.editor.focus();
}

function addCmdWatchExpression(string) {
  gWatch._onCmdAddExpression(string);
  gDebugger.editor.focus();
}

function resumeAndFinish() {
  gDebugger.DebuggerController.activeThread.resume(function() {
    closeDebuggerAndFinish();
  });
}

registerCleanupFunction(function() {
  removeTab(gTab);
  gPane = null;
  gTab = null;
  gDebuggee = null;
  gDebugger = null;
  gWatch = null;
  gVars = null;
});