mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
123 lines
3.7 KiB
JavaScript
123 lines
3.7 KiB
JavaScript
/*=============================================================================
|
|
Common Helpers functions
|
|
=============================================================================*/
|
|
|
|
const kDefaultWait = 2000;
|
|
// Wait for a condition and call a supplied callback if condition is met within
|
|
// alloted time. If condition is not met, cause a hard failure, stopping the test.
|
|
function waitFor(callback, test, timeout) {
|
|
if (test()) {
|
|
callback();
|
|
return;
|
|
}
|
|
|
|
timeout = timeout || Date.now();
|
|
if (Date.now() - timeout > kDefaultWait)
|
|
throw "waitFor timeout";
|
|
setTimeout(waitFor, 50, callback, test, timeout);
|
|
};
|
|
|
|
// Wait for a condition and call a supplied callback if condition is met within
|
|
// alloted time. If condition is not met, continue anyway. Use this helper if the
|
|
// callback will test for the outcome, but not stop the entire test.
|
|
function waitForAndContinue(callback, test, timeout) {
|
|
if (test()) {
|
|
callback();
|
|
return;
|
|
}
|
|
|
|
timeout = timeout || Date.now();
|
|
if (Date.now() - timeout > kDefaultWait) {
|
|
callback();
|
|
return;
|
|
}
|
|
setTimeout(waitForAndContinue, 50, callback, test, timeout);
|
|
};
|
|
|
|
// Listen for the specified message once, then remove the listener.
|
|
function onMessageOnce(aMessageManager, aName, aCallback) {
|
|
aMessageManager.addMessageListener(aName, function onMessage(aMessage) {
|
|
aMessageManager.removeMessageListener(aName, onMessage);
|
|
setTimeout(function() {
|
|
aCallback(aMessage);
|
|
}, 0);
|
|
});
|
|
};
|
|
|
|
// This function is useful for debugging one test where you need to wait for
|
|
// application to be ready
|
|
function waitForFirstPaint(aCallback) {
|
|
function hasFirstPaint() {
|
|
let startupInfo = Cc["@mozilla.org/toolkit/app-startup;1"].getService(Ci.nsIAppStartup).getStartupInfo();
|
|
return ("firstPaint" in startupInfo);
|
|
}
|
|
|
|
if (!hasFirstPaint()) {
|
|
waitFor(aCallback, hasFirstPaint, Date.now() + 3000);
|
|
return;
|
|
}
|
|
|
|
aCallback();
|
|
};
|
|
|
|
function makeURI(spec) {
|
|
return Services.io.newURI(spec, null, null);
|
|
};
|
|
|
|
EventUtils.synthesizeString = function synthesizeString(aString, aWindow) {
|
|
for (let i = 0; i < aString.length; i++) {
|
|
EventUtils.synthesizeKey(aString.charAt(i), {}, aWindow);
|
|
}
|
|
};
|
|
|
|
EventUtils.synthesizeMouseForContent = function synthesizeMouseForContent(aElement, aOffsetX, aOffsetY, aEvent, aWindow) {
|
|
let container = document.getElementById("browsers");
|
|
let rect = container.getBoundingClientRect();
|
|
|
|
EventUtils.synthesizeMouse(aElement, rect.left + aOffsetX, rect.top + aOffsetY, aEvent, aWindow);
|
|
};
|
|
|
|
let AsyncTests = {
|
|
_tests: {},
|
|
waitFor: function(aMessage, aData, aCallback) {
|
|
messageManager.addMessageListener(aMessage, this);
|
|
if (!this._tests[aMessage])
|
|
this._tests[aMessage] = [];
|
|
|
|
this._tests[aMessage].push(aCallback || function() {});
|
|
setTimeout(function() {
|
|
Browser.selectedBrowser.messageManager.sendAsyncMessage(aMessage, aData || { });
|
|
}, 0);
|
|
},
|
|
|
|
receiveMessage: function(aMessage) {
|
|
let test = this._tests[aMessage.name];
|
|
let callback = test.shift();
|
|
if (callback)
|
|
callback(aMessage.json);
|
|
}
|
|
};
|
|
|
|
let gCurrentTest = null;
|
|
let gTests = [];
|
|
|
|
// Iterating tests by shifting test out one by one as runNextTest is called.
|
|
function runNextTest() {
|
|
// Run the next test until all tests completed
|
|
if (gTests.length > 0) {
|
|
gCurrentTest = gTests.shift();
|
|
info(gCurrentTest.desc);
|
|
gCurrentTest.run();
|
|
}
|
|
else {
|
|
finish();
|
|
}
|
|
}
|
|
|
|
let serverRoot = "http://example.com/browser/mobile/chrome/tests/";
|
|
let baseURI = "http://mochi.test:8888/browser/mobile/chrome/tests/";
|
|
|
|
let chromeRoot = getRootDirectory(gTestPath);
|
|
messageManager.loadFrameScript(chromeRoot + "remote_head.js", true);
|
|
messageManager.loadFrameScript("chrome://mochikit/content/tests/SimpleTest/EventUtils.js", true);
|