tenfourfox/devtools/client/performance/test/browser_perf-overview-time-interval.js
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

71 lines
2.4 KiB
JavaScript

/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
/**
* Tests that the `setTimeInterval` and `getTimeInterval` functions
* work properly.
*/
function* spawnTest() {
let { panel } = yield initPerformance(SIMPLE_URL);
let { EVENTS, PerformanceController, OverviewView } = panel.panelWin;
try {
OverviewView.setTimeInterval({ starTime: 0, endTime: 1 });
ok(false, "Setting a time interval shouldn't have worked.");
} catch (e) {
ok(true, "Setting a time interval didn't work, as expected.");
}
try {
OverviewView.getTimeInterval();
ok(false, "Getting the time interval shouldn't have worked.");
} catch (e) {
ok(true, "Getting the time interval didn't work, as expected.");
}
yield startRecording(panel);
yield Promise.all([
once(OverviewView, EVENTS.FRAMERATE_GRAPH_RENDERED),
once(OverviewView, EVENTS.MARKERS_GRAPH_RENDERED),
once(OverviewView, EVENTS.OVERVIEW_RENDERED)
]);
yield stopRecording(panel);
// Get/set the time interval and wait for the event propagation.
let notified = once(OverviewView, EVENTS.OVERVIEW_RANGE_SELECTED);
OverviewView.setTimeInterval({ startTime: 10, endTime: 20 });
yield notified;
let firstInterval = OverviewView.getTimeInterval();
info("First interval start time: " + firstInterval.startTime);
info("First interval end time: " + firstInterval.endTime);
is(Math.round(firstInterval.startTime), 10,
"The interval's start time was properly set.");
is(Math.round(firstInterval.endTime), 20,
"The interval's end time was properly set.");
// Get/set another time interval and make sure there's no event propagation.
function fail() {
ok(false, "The selection event should not have propagated.");
}
OverviewView.on(EVENTS.OVERVIEW_RANGE_SELECTED, fail);
OverviewView.setTimeInterval({ startTime: 30, endTime: 40 }, { stopPropagation: true });
OverviewView.off(EVENTS.OVERVIEW_RANGE_SELECTED, fail);
let secondInterval = OverviewView.getTimeInterval();
info("Second interval start time: " + secondInterval.startTime);
info("Second interval end time: " + secondInterval.endTime);
is(Math.round(secondInterval.startTime), 30,
"The interval's start time was properly set again.");
is(Math.round(secondInterval.endTime), 40,
"The interval's end time was properly set again.");
yield teardown(panel);
finish();
}