2014-12-06 20:08:10 +03:00
|
|
|
/* Any copyright is dedicated to the Public Domain.
|
|
|
|
http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
|
|
|
|
|
|
// Tests that line graphs hide the 'max' tooltip when the distance between
|
|
|
|
// the 'min' and 'max' tooltip is too small.
|
|
|
|
|
|
|
|
const TEST_DATA = [{ delta: 100, value: 60 }, { delta: 200, value: 59.9 }];
|
2015-09-21 20:04:18 +03:00
|
|
|
var LineGraphWidget = require("devtools/client/shared/widgets/LineGraphWidget");
|
2014-12-06 20:08:10 +03:00
|
|
|
|
2016-05-17 21:25:54 +03:00
|
|
|
add_task(function* () {
|
2015-11-10 22:48:51 +03:00
|
|
|
yield addTab("about:blank");
|
2014-12-06 20:08:10 +03:00
|
|
|
yield performTest();
|
|
|
|
gBrowser.removeCurrentTab();
|
|
|
|
});
|
|
|
|
|
|
|
|
function* performTest() {
|
|
|
|
let [host, win, doc] = yield createHost();
|
|
|
|
let graph = new LineGraphWidget(doc.body, "fps");
|
|
|
|
|
|
|
|
yield testGraph(graph);
|
|
|
|
|
2015-02-27 02:57:53 +03:00
|
|
|
yield graph.destroy();
|
2014-12-06 20:08:10 +03:00
|
|
|
host.destroy();
|
|
|
|
}
|
|
|
|
|
|
|
|
function* testGraph(graph) {
|
|
|
|
yield graph.setDataWhenReady(TEST_DATA);
|
|
|
|
|
|
|
|
is(graph._gutter.hidden, false,
|
|
|
|
"The gutter should not be hidden.");
|
|
|
|
is(graph._maxTooltip.hidden, true,
|
|
|
|
"The max tooltip should be hidden.");
|
|
|
|
is(graph._avgTooltip.hidden, false,
|
|
|
|
"The avg tooltip should not be hidden.");
|
|
|
|
is(graph._minTooltip.hidden, false,
|
|
|
|
"The min tooltip should not be hidden.");
|
|
|
|
}
|