gecko-dev/toolkit/content/tests/widgets/head.js
Bernard Igiri 61cba40702 Bug 1781917 - Add logging to test_videocontrols_audio.html to get information about the frequent failures. r=mhowell
Adding more logging to test test_videocontrols_audio.html test to gather more information about test failure.

Differential Revision: https://phabricator.services.mozilla.com/D155424
2022-09-09 15:22:57 +00:00

67 lines
1.4 KiB
JavaScript

"use strict";
const InspectorUtils = SpecialPowers.InspectorUtils;
var tests = [];
function waitForCondition(condition, nextTest, errorMsg) {
var tries = 0;
var interval = setInterval(function() {
if (tries >= 30) {
ok(false, errorMsg);
moveOn();
}
var conditionPassed;
try {
conditionPassed = condition();
} catch (e) {
ok(false, e + "\n" + e.stack);
conditionPassed = false;
}
if (conditionPassed) {
moveOn();
}
tries++;
}, 100);
var moveOn = function() {
clearInterval(interval);
nextTest();
};
}
function getElementWithinVideo(video, aValue) {
const shadowRoot = SpecialPowers.wrap(video).openOrClosedShadowRoot;
return shadowRoot.getElementById(aValue);
}
/**
* Runs querySelectorAll on an element's shadow root.
* @param {Element} element
* @param {string} selector
*/
function shadowRootQuerySelectorAll(element, selector) {
const shadowRoot = SpecialPowers.wrap(element).openOrClosedShadowRoot;
return shadowRoot?.querySelectorAll(selector);
}
function executeTests() {
return tests
.map(fn => () => new Promise(fn))
.reduce((promise, task) => promise.then(task), Promise.resolve());
}
function once(target, name, cb) {
let p = new Promise(function(resolve, reject) {
target.addEventListener(
name,
function() {
resolve();
},
{ once: true }
);
});
if (cb) {
p.then(cb);
}
return p;
}