gecko-dev/devtools/client/shared/test/browser_graphs-16.js
Brian Grinstead aa32ce7f03 Bug 1181852 - Use shared-head.js for devtools/client/shared;r=jryans
--HG--
extra : commitid : iw129GcjoZ
2015-11-10 11:48:51 -08:00

44 lines
1021 B
JavaScript

/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
// Tests that mounta graphs work as expected.
var MountainGraphWidget = require("devtools/client/shared/widgets/MountainGraphWidget");
const TEST_DATA = [
{ delta: 0, values: [0.1, 0.5, 0.3] },
{ delta: 1, values: [0.25, 0, 0.5] },
{ delta: 2, values: [0.5, 0.25, 0.1] },
{ delta: 3, values: [0, 0.75, 0] },
{ delta: 4, values: [0.75, 0, 0.25] }
];
const SECTIONS = [
{ color: "red" },
{ color: "green" },
{ color: "blue" }
];
add_task(function*() {
yield addTab("about:blank");
yield performTest();
gBrowser.removeCurrentTab();
});
function* performTest() {
let [host, win, doc] = yield createHost();
let graph = new MountainGraphWidget(doc.body);
yield graph.once("ready");
testGraph(graph);
yield graph.destroy();
host.destroy();
}
function testGraph(graph) {
graph.format = SECTIONS;
graph.setData(TEST_DATA);
ok(true, "The graph didn't throw any erorrs.");
}