summaryrefslogtreecommitdiffstats
path: root/devtools/client/canvasdebugger/test/browser_canvas-frontend-stepping.js
blob: d76449b91eff844a0c67ca92892ad6ee6b787e9e (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
/* Any copyright is dedicated to the Public Domain.
   http://creativecommons.org/publicdomain/zero/1.0/ */

/**
 * Tests if the stepping buttons in the call list toolbar work as advertised.
 */

function* ifTestingSupported() {
  let { target, panel } = yield initCanvasDebuggerFrontend(SIMPLE_CANVAS_URL);
  let { window, $, EVENTS, SnapshotsListView, CallsListView } = panel.panelWin;

  yield reload(target);

  let recordingFinished = once(window, EVENTS.SNAPSHOT_RECORDING_FINISHED);
  let callListPopulated = once(window, EVENTS.CALL_LIST_POPULATED);
  SnapshotsListView._onRecordButtonClick();
  yield promise.all([recordingFinished, callListPopulated]);

  checkSteppingButtons(1, 1, 1, 1);
  is(CallsListView.selectedIndex, -1,
    "There should be no selected item in the calls list view initially.");

  CallsListView._onResume();
  checkSteppingButtons(1, 1, 1, 1);
  is(CallsListView.selectedIndex, 0,
    "The first draw call should now be selected.");

  CallsListView._onResume();
  checkSteppingButtons(1, 1, 1, 1);
  is(CallsListView.selectedIndex, 2,
    "The second draw call should now be selected.");

  CallsListView._onStepOver();
  checkSteppingButtons(1, 1, 1, 1);
  is(CallsListView.selectedIndex, 3,
    "The next context call should now be selected.");

  CallsListView._onStepOut();
  checkSteppingButtons(0, 0, 1, 0);
  is(CallsListView.selectedIndex, 7,
    "The last context call should now be selected.");

  function checkSteppingButtons(resume, stepOver, stepIn, stepOut) {
    if (!resume) {
      is($("#resume").getAttribute("disabled"), "true",
        "The resume button doesn't have the expected disabled state.");
    } else {
      is($("#resume").hasAttribute("disabled"), false,
        "The resume button doesn't have the expected enabled state.");
    }
    if (!stepOver) {
      is($("#step-over").getAttribute("disabled"), "true",
        "The stepOver button doesn't have the expected disabled state.");
    } else {
      is($("#step-over").hasAttribute("disabled"), false,
        "The stepOver button doesn't have the expected enabled state.");
    }
    if (!stepIn) {
      is($("#step-in").getAttribute("disabled"), "true",
        "The stepIn button doesn't have the expected disabled state.");
    } else {
      is($("#step-in").hasAttribute("disabled"), false,
        "The stepIn button doesn't have the expected enabled state.");
    }
    if (!stepOut) {
      is($("#step-out").getAttribute("disabled"), "true",
        "The stepOut button doesn't have the expected disabled state.");
    } else {
      is($("#step-out").hasAttribute("disabled"), false,
        "The stepOut button doesn't have the expected enabled state.");
    }
  }

  yield teardown(panel);
  finish();
}