gecko-dev/dom/media/webspeech/synth/test/common.js
Eitan Isaacson 72e93f95e2 Bug 1162699 - Replace mochitest test synth services with global services to simplify tests. r=smaug
Also, remove ipc tests since we now can enable these tests in e10s.

Also, make utterances very long in cancel test so that we actually interrupt them.
2015-05-14 16:24:14 -07:00

52 lines
1.5 KiB
JavaScript

function synthTestQueue(aTestArgs, aEndFunc) {
var utterances = [];
for (var i in aTestArgs) {
var uargs = aTestArgs[i][0];
var u = new SpeechSynthesisUtterance(uargs.text);
delete uargs.text;
for (var attr in uargs)
u[attr] = uargs[attr];
function onend_handler(e) {
is(e.target, utterances.shift(), "Target matches utterances");
ok(!speechSynthesis.speaking, "speechSynthesis is not speaking.");
isnot(e.eventType, 'error', "Error in utterance");
if (utterances.length) {
ok(speechSynthesis.pending, "other utterances queued");
} else {
ok(!speechSynthesis.pending, "queue is empty, nothing pending.");
if (aEndFunc)
aEndFunc();
}
}
u.addEventListener('start',
(function (expectedUri) {
return function (e) {
if (expectedUri) {
var chosenVoice = SpecialPowers.wrap(e).target.chosenVoiceURI;
is(chosenVoice, expectedUri, "Incorrect URI is used");
}
};
})(aTestArgs[i][1] ? aTestArgs[i][1].uri : null));
u.addEventListener('end', onend_handler);
u.addEventListener('error', onend_handler);
u.addEventListener(
'error', function onerror_handler(e) {
ok(false, "Error in speech utterance '" + e.target.text + "'");
});
utterances.push(u);
speechSynthesis.speak(u);
}
ok(!speechSynthesis.speaking, "speechSynthesis is not speaking yet.");
ok(speechSynthesis.pending, "speechSynthesis has an utterance queued.");
}