mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 22:55:23 +00:00
aa32ce7f03
--HG-- extra : commitid : iw129GcjoZ
44 lines
1021 B
JavaScript
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.");
|
|
}
|