summaryrefslogtreecommitdiff
path: root/browser/devtools/profiler/test/browser_profiler_bug_855244_multiple_tabs.js
blob: 74a831d0ee275d3979222d59ce5082440fd9d0a3 (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
/* Any copyright is dedicated to the Public Domain.
   http://creativecommons.org/publicdomain/zero/1.0/ */

const URL = "data:text/html;charset=utf8,<p>JavaScript Profiler test</p>";

let gTab1, gPanel1;
let gTab2, gPanel2;

// Tests that you can run the profiler in multiple tabs at the same
// time and that closing the debugger panel in one tab doesn't lock
// profilers in other tabs.

registerCleanupFunction(function () {
  gTab1 = gTab2 = gPanel1 = gPanel2 = null;
});

function test() {
  waitForExplicitFinish();

  openTwoTabs()
    .then(startTwoProfiles)
    .then(stopFirstProfile)
    .then(stopSecondProfile)
    .then(closeTabs)
    .then(openTwoTabs)
    .then(startTwoProfiles)
    .then(closeFirstPanel)
    .then(stopSecondProfile)
    .then(closeTabs)
    .then(finish);
}

function openTwoTabs() {
  let deferred = Promise.defer();

  setUp(URL, (tab, browser, panel) => {
    gTab1 = tab;
    gPanel1 = panel;

    loadTab(URL, (tab, browser) => {
      gTab2 = tab;
      openProfiler(tab, () => {
        let target = TargetFactory.forTab(tab);
        gPanel2 = gDevTools.getToolbox(target).getPanel("jsprofiler");
        deferred.resolve();
      });
    });
  });

  return deferred.promise;
}

function startTwoProfiles() {
  let deferred = Promise.defer();
  gPanel1.controller.start("Profile 1", (err) => {
    ok(!err, "Profile in tab 1 started without errors");
    gPanel2.controller.start("Profile 1", (err) => {
      ok(!err, "Profile in tab 2 started without errors");
      gPanel1.controller.isActive((err, isActive) => {
        ok(isActive, "Profiler is active");
        deferred.resolve();
      });
    });
  });

  return deferred.promise;
}

function stopFirstProfile() {
  let deferred = Promise.defer();

  gPanel1.controller.stop("Profile 1", (err, data) => {
    ok(!err, "Profile in tab 1 stopped without errors");
    ok(data, "Profile in tab 1 returned some data");
    deferred.resolve();
  });

  return deferred.promise;
}

function stopSecondProfile() {
  let deferred = Promise.defer();

  gPanel2.controller.stop("Profile 1", (err, data) => {
    ok(!err, "Profile in tab 2 stopped without errors");
    ok(data, "Profile in tab 2 returned some data");
    deferred.resolve();
  });

  return deferred.promise;
}

function closeTabs() {
  while (gBrowser.tabs.length > 1) {
    gBrowser.removeCurrentTab();
  }
}

function closeFirstPanel() {
  let target = TargetFactory.forTab(gTab1);
  let toolbox = gDevTools.getToolbox(target);
  return toolbox.destroy;
}