summaryrefslogtreecommitdiffstats
path: root/devtools/client/debugger/test/mochitest/browser_dbg_source-maps-02.js
blob: 980d1859f18b221f9ef3897431ea15bcbf2a0b10 (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
/* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */
/* Any copyright is dedicated to the Public Domain.
 * http://creativecommons.org/publicdomain/zero/1.0/ */

/**
 * Test that we can toggle between the original and generated sources.
 */

const TAB_URL = EXAMPLE_URL + "doc_binary_search.html";
const JS_URL = EXAMPLE_URL + "code_binary_search.js";

var gTab, gPanel, gDebugger, gEditor;
var gSources, gFrames, gPrefs, gOptions;

function test() {
  let options = {
    source: EXAMPLE_URL + "code_binary_search.coffee",
    line: 1
  };
  initDebugger(TAB_URL, options).then(([aTab,, aPanel]) => {
    gTab = aTab;
    gPanel = aPanel;
    gDebugger = gPanel.panelWin;
    gEditor = gDebugger.DebuggerView.editor;
    gSources = gDebugger.DebuggerView.Sources;
    gFrames = gDebugger.DebuggerView.StackFrames;
    gPrefs = gDebugger.Prefs;
    gOptions = gDebugger.DebuggerView.Options;

    testToggleGeneratedSource()
      .then(testSetBreakpoint)
      .then(testToggleOnPause)
      .then(testResume)
      .then(() => closeDebuggerAndFinish(gPanel))
      .then(null, aError => {
        ok(false, "Got an error: " + aError.message + "\n" + aError.stack);
      });
  });
}

function testToggleGeneratedSource() {
  let finished = waitForSourceShown(gPanel, ".js").then(() => {
    is(gPrefs.sourceMapsEnabled, false,
      "The source maps pref should have been set to false.");
    is(gOptions._showOriginalSourceItem.getAttribute("checked"), "false",
      "Source maps should now be disabled.");

    is(gSources.selectedItem.attachment.source.url.indexOf(".coffee"), -1,
      "The debugger should not show the source mapped coffee source file.");
    isnot(gSources.selectedItem.attachment.source.url.indexOf(".js"), -1,
      "The debugger should show the generated js source file.");

    is(gEditor.getText().indexOf("isnt"), -1,
      "The debugger's editor should not have the coffee source source displayed.");
    is(gEditor.getText().indexOf("function"), 36,
      "The debugger's editor should have the JS source displayed.");
  });

  gOptions._showOriginalSourceItem.setAttribute("checked", "false");
  gOptions._toggleShowOriginalSource();
  gOptions._onPopupHidden();

  return finished;
}

function testSetBreakpoint() {
  let deferred = promise.defer();
  let sourceForm = getSourceForm(gSources, JS_URL);
  let source = gDebugger.gThreadClient.source(sourceForm);

  source.setBreakpoint({ line: 7 }, aResponse => {
    ok(!aResponse.error,
      "Should be able to set a breakpoint in a js file.");

    gDebugger.gClient.addOneTimeListener("resumed", () => {
      waitForCaretAndScopes(gPanel, 7).then(() => {
        // Make sure that we have JavaScript stack frames.
        is(gFrames.itemCount, 1,
          "Should have only one frame.");
        is(gFrames.getItemAtIndex(0).attachment.url.indexOf(".coffee"), -1,
          "First frame should not be a coffee source frame.");
        isnot(gFrames.getItemAtIndex(0).attachment.url.indexOf(".js"), -1,
          "First frame should be a JS frame.");

        deferred.resolve();
      });

      // This will cause the breakpoint to be hit, and put us back in the
      // paused state.
      callInTab(gTab, "binary_search", [0, 2, 3, 5, 7, 10], 5);
    });
  });

  return deferred.promise;
}

function testToggleOnPause() {
  let finished = waitForSourceAndCaretAndScopes(gPanel, ".coffee", 5).then(() => {
    is(gPrefs.sourceMapsEnabled, true,
      "The source maps pref should have been set to true.");
    is(gOptions._showOriginalSourceItem.getAttribute("checked"), "true",
      "Source maps should now be enabled.");

    isnot(gSources.selectedItem.attachment.source.url.indexOf(".coffee"), -1,
      "The debugger should show the source mapped coffee source file.");
    is(gSources.selectedItem.attachment.source.url.indexOf(".js"), -1,
      "The debugger should not show the generated js source file.");

    is(gEditor.getText().indexOf("isnt"), 218,
      "The debugger's editor should have the coffee source source displayed.");
    is(gEditor.getText().indexOf("function"), -1,
      "The debugger's editor should not have the JS source displayed.");

    // Make sure that we have coffee source stack frames.
    is(gFrames.itemCount, 1,
      "Should have only one frame.");
    is(gFrames.getItemAtIndex(0).attachment.url.indexOf(".js"), -1,
      "First frame should not be a JS frame.");
    isnot(gFrames.getItemAtIndex(0).attachment.url.indexOf(".coffee"), -1,
      "First frame should be a coffee source frame.");
  });

  gOptions._showOriginalSourceItem.setAttribute("checked", "true");
  gOptions._toggleShowOriginalSource();
  gOptions._onPopupHidden();

  return finished;
}

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

  gDebugger.gThreadClient.resume(aResponse => {
    ok(!aResponse.error, "Shouldn't get an error resuming.");
    is(aResponse.type, "resumed", "Type should be 'resumed'.");

    deferred.resolve();
  });

  return deferred.promise;
}

registerCleanupFunction(function () {
  gTab = null;
  gPanel = null;
  gDebugger = null;
  gEditor = null;
  gSources = null;
  gFrames = null;
  gPrefs = null;
  gOptions = null;
});