mirror of
https://github.com/ManchildProductions/UXP-Fixed.git
synced 2026-05-27 18:18:46 +00:00
83 lines
2.3 KiB
HTML
83 lines
2.3 KiB
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<!--
|
|
Bug 1023018 - Tests whether or not the framerate actor can handle time ranges.
|
|
-->
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Framerate actor test</title>
|
|
<script type="application/javascript" src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"></script>
|
|
<link rel="stylesheet" type="text/css" href="chrome://mochikit/content/tests/SimpleTest/test.css">
|
|
</head>
|
|
<body>
|
|
<pre id="test">
|
|
<script>
|
|
|
|
window.onload = function() {
|
|
var Cu = Components.utils;
|
|
var Cc = Components.classes;
|
|
var Ci = Components.interfaces;
|
|
|
|
var {require} = Cu.import("resource://devtools/shared/Loader.jsm", {});
|
|
var {DebuggerClient} = require("devtools/shared/client/main");
|
|
var {DebuggerServer} = require("devtools/server/main");
|
|
var Services = require("Services");
|
|
|
|
// Always log packets when running tests.
|
|
Services.prefs.setBoolPref("devtools.debugger.log", true);
|
|
SimpleTest.registerCleanupFunction(function() {
|
|
Services.prefs.clearUserPref("devtools.debugger.log");
|
|
});
|
|
|
|
SimpleTest.waitForExplicitFinish();
|
|
|
|
var {FramerateFront} = require("devtools/shared/fronts/framerate");
|
|
var START_TICK = 2000;
|
|
var STOP_TICK = 3000;
|
|
var TOTAL_TIME = 5000;
|
|
|
|
if (!DebuggerServer.initialized) {
|
|
DebuggerServer.init();
|
|
DebuggerServer.addBrowserActors();
|
|
}
|
|
|
|
var client = new DebuggerClient(DebuggerServer.connectPipe());
|
|
client.connect().then(function onConnect() {
|
|
client.listTabs(function onListTabs(aResponse) {
|
|
var form = aResponse.tabs[aResponse.selected];
|
|
var front = FramerateFront(client, form);
|
|
|
|
front.startRecording().then(() => {
|
|
window.setTimeout(() => {
|
|
front.stopRecording(START_TICK, STOP_TICK).then(rawData => {
|
|
onRecordingStopped(front, rawData);
|
|
});
|
|
}, TOTAL_TIME);
|
|
});
|
|
});
|
|
});
|
|
|
|
function onRecordingStopped(front, rawData) {
|
|
ok(rawData, "There should be a recording available.");
|
|
|
|
ok(!rawData.find(e => e < START_TICK),
|
|
"There should be no tick before 2000ms.");
|
|
ok(!rawData.find(e => e > STOP_TICK),
|
|
"There should be no tick after 3000ms.");
|
|
|
|
for (var tick of rawData) {
|
|
info("Testing tick: " + tick);
|
|
is(typeof tick, "number", "All values should be numbers.");
|
|
}
|
|
|
|
client.close().then(() => {
|
|
DebuggerServer.destroy();
|
|
SimpleTest.finish()
|
|
});
|
|
}
|
|
}
|
|
</script>
|
|
</pre>
|
|
</body>
|
|
</html>
|