mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-05-27 13:28:42 +00:00
48 lines
1.1 KiB
JavaScript
48 lines
1.1 KiB
JavaScript
/* Any copyright is dedicated to the Public Domain.
|
|
http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
|
|
"use strict";
|
|
|
|
/**
|
|
* Tests whether the profiler responds to "getFeatures" adequately.
|
|
*/
|
|
|
|
const Profiler = Cc["@mozilla.org/tools/profiler;1"].getService(Ci.nsIProfiler);
|
|
|
|
function connect_client(callback)
|
|
{
|
|
let client = new DebuggerClient(DebuggerServer.connectPipe());
|
|
client.connect(() => {
|
|
client.listTabs(response => {
|
|
callback(client, response.profilerActor);
|
|
});
|
|
});
|
|
}
|
|
|
|
function run_test()
|
|
{
|
|
DebuggerServer.init();
|
|
DebuggerServer.addBrowserActors();
|
|
|
|
connect_client((client, actor) => {
|
|
test_getfeatures(client, actor, () => {
|
|
client.close(() => {
|
|
do_test_finished();
|
|
});
|
|
});
|
|
});
|
|
|
|
do_test_pending();
|
|
}
|
|
|
|
function test_getfeatures(client, actor, callback)
|
|
{
|
|
client.request({ to: actor, type: "getFeatures" }, response => {
|
|
do_check_eq(typeof response.features, "object");
|
|
do_check_true(response.features.length >= 1);
|
|
do_check_eq(typeof response.features[0], "string");
|
|
do_check_true(response.features.indexOf("js") != -1);
|
|
callback();
|
|
});
|
|
}
|