In a following patch, all DevTools moz.build files will use DevToolsModules to install JS modules at a path that corresponds directly to their source tree location. Here we rewrite all require and import calls to match the new location that these files are installed to.
79 lines
2.7 KiB
JavaScript
79 lines
2.7 KiB
JavaScript
/* Any copyright is dedicated to the Public Domain.
|
|
http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
|
|
/**
|
|
* Test basic functionality of PerformanceFront without a mock Timeline actor.
|
|
*/
|
|
|
|
var WAIT_TIME = 100;
|
|
|
|
const { TargetFactory } = require("devtools/client/framework/target");
|
|
const { LegacyPerformanceFront } = require("devtools/shared/performance/legacy/front");
|
|
const { merge } = require("sdk/util/object");
|
|
|
|
add_task(function*() {
|
|
let tab = yield getTab(MAIN_DOMAIN + "doc_perf.html");
|
|
let target = TargetFactory.forTab(tab);
|
|
yield target.makeRemote();
|
|
|
|
merge(target, {
|
|
TEST_PERFORMANCE_LEGACY_FRONT: true,
|
|
});
|
|
|
|
let front = new LegacyPerformanceFront(target);
|
|
yield front.connect();
|
|
|
|
ok(front.LEGACY_FRONT, true, "Using legacy front");
|
|
|
|
let recording = yield front.startRecording({
|
|
withTicks: true,
|
|
withMarkers: true,
|
|
withMemory: true,
|
|
withAllocations: true,
|
|
});
|
|
|
|
is(recording.getConfiguration().withMarkers, true, "allows withMarkers based off of actor support");
|
|
is(recording.getConfiguration().withTicks, true, "allows withTicks based off of actor support");
|
|
is(recording.getConfiguration().withMemory, false, "overrides withMemory based off of actor support");
|
|
is(recording.getConfiguration().withAllocations, false, "overrides withAllocations based off of actor support");
|
|
|
|
yield waitUntil(() => recording.getMarkers().length);
|
|
yield waitUntil(() => recording.getTicks().length);
|
|
|
|
yield front.stopRecording(recording);
|
|
|
|
ok(recording.getMarkers().length, "we have several markers");
|
|
ok(recording.getTicks().length, "we have several ticks");
|
|
|
|
ok(typeof recording.getDuration() === "number",
|
|
"The front.stopRecording() allows recording to get a duration.");
|
|
ok(recording.getDuration() >= 0, "duration is a positive number");
|
|
isEmptyArray(recording.getMemory(), "memory");
|
|
isEmptyArray(recording.getAllocations().sites, "allocations.sites");
|
|
isEmptyArray(recording.getAllocations().timestamps, "allocations.timestamps");
|
|
isEmptyArray(recording.getAllocations().frames, "allocations.frames");
|
|
ok(recording.getProfile().threads[0].samples.data.length, "profile data has some samples");
|
|
|
|
yield front.destroy();
|
|
yield closeDebuggerClient(target.client);
|
|
gBrowser.removeCurrentTab();
|
|
});
|
|
|
|
function isEmptyArray (array, name) {
|
|
ok(Array.isArray(array), `${name} is an array`);
|
|
ok(array.length === 0, `${name} is empty`);
|
|
}
|
|
|
|
function getTab (url) {
|
|
let tab = gBrowser.selectedTab = gBrowser.addTab();
|
|
let loaded = once(gBrowser.selectedBrowser, "load", true);
|
|
|
|
content.location = url;
|
|
return loaded.then(() => {
|
|
return new Promise(resolve => {
|
|
let isBlank = url == "about:blank";
|
|
waitForFocus(() => resolve(tab), content, isBlank);
|
|
});
|
|
});
|
|
}
|