summaryrefslogtreecommitdiff
path: root/toolkit/devtools/performance/test/browser_profiler_tree-view-05.js
diff options
context:
space:
mode:
Diffstat (limited to 'toolkit/devtools/performance/test/browser_profiler_tree-view-05.js')
-rw-r--r--toolkit/devtools/performance/test/browser_profiler_tree-view-05.js66
1 files changed, 66 insertions, 0 deletions
diff --git a/toolkit/devtools/performance/test/browser_profiler_tree-view-05.js b/toolkit/devtools/performance/test/browser_profiler_tree-view-05.js
new file mode 100644
index 000000000..40c6531b6
--- /dev/null
+++ b/toolkit/devtools/performance/test/browser_profiler_tree-view-05.js
@@ -0,0 +1,66 @@
+/* Any copyright is dedicated to the Public Domain.
+ http://creativecommons.org/publicdomain/zero/1.0/ */
+
+/**
+ * Tests if the profiler's tree view implementation works properly and
+ * can toggle categories hidden or visible.
+ */
+
+function test() {
+ let { ThreadNode } = devtools.require("devtools/shared/profiler/tree-model");
+ let { CallView } = devtools.require("devtools/shared/profiler/tree-view");
+
+ let threadNode = new ThreadNode(gSamples);
+ let treeRoot = new CallView({ frame: threadNode });
+
+ let container = document.createElement("vbox");
+ treeRoot.attachTo(container);
+
+ let categories = container.querySelectorAll(".call-tree-category");
+ is(categories.length, 7,
+ "The call tree displays a correct number of categories.");
+ ok(!container.hasAttribute("categories-hidden"),
+ "All categories should be visible in the tree.");
+
+ treeRoot.toggleCategories(false);
+ is(categories.length, 7,
+ "The call tree displays the same number of categories.");
+ ok(container.hasAttribute("categories-hidden"),
+ "All categories should now be hidden in the tree.");
+
+ finish();
+}
+
+let gSamples = [{
+ time: 5,
+ frames: [
+ { category: 8, location: "(root)" },
+ { category: 8, location: "A (http://foo/bar/baz:12)" },
+ { category: 16, location: "B (http://foo/bar/baz:34)" },
+ { category: 32, location: "C (http://foo/bar/baz:56)" }
+ ]
+}, {
+ time: 5 + 1,
+ frames: [
+ { category: 8, location: "(root)" },
+ { category: 8, location: "A (http://foo/bar/baz:12)" },
+ { category: 16, location: "B (http://foo/bar/baz:34)" },
+ { category: 64, location: "D (http://foo/bar/baz:78)" }
+ ]
+}, {
+ time: 5 + 1 + 2,
+ frames: [
+ { category: 8, location: "(root)" },
+ { category: 8, location: "A (http://foo/bar/baz:12)" },
+ { category: 16, location: "B (http://foo/bar/baz:34)" },
+ { category: 64, location: "D (http://foo/bar/baz:78)" }
+ ]
+}, {
+ time: 5 + 1 + 2 + 7,
+ frames: [
+ { category: 8, location: "(root)" },
+ { category: 8, location: "A (http://foo/bar/baz:12)" },
+ { category: 128, location: "E (http://foo/bar/baz:90)" },
+ { category: 256, location: "F (http://foo/bar/baz:99)" }
+ ]
+}];