forked from mirrors/gecko-dev
We do not support Adobe Primetime anymore, so there is no need to handle related issues. MozReview-Commit-ID: AvKarZabyDM --HG-- extra : rebase_source : 911fb3e689add4e42e80fd94c5f155f0a7a96bd4
85 lines
3.2 KiB
JavaScript
85 lines
3.2 KiB
JavaScript
"use strict";
|
|
|
|
function* test_decoder_doctor_notification(type, notificationMessage, options) {
|
|
yield BrowserTestUtils.withNewTab({ gBrowser }, function*(browser) {
|
|
let awaitNotificationBar =
|
|
BrowserTestUtils.waitForNotificationBar(gBrowser, browser, "decoder-doctor-notification");
|
|
|
|
yield ContentTask.spawn(browser, type, function*(aType) {
|
|
Services.obs.notifyObservers(content.window,
|
|
"decoder-doctor-notification",
|
|
JSON.stringify({type: aType,
|
|
isSolved: false,
|
|
decoderDoctorReportId: "test",
|
|
formats: "test"}));
|
|
});
|
|
|
|
let notification;
|
|
try {
|
|
notification = yield awaitNotificationBar;
|
|
} catch (ex) {
|
|
ok(false, ex);
|
|
return;
|
|
}
|
|
ok(notification, "Got decoder-doctor-notification notification");
|
|
|
|
is(notification.getAttribute("label"), notificationMessage,
|
|
"notification message should match expectation");
|
|
let button = notification.childNodes[0];
|
|
if (options && options.noLearnMoreButton) {
|
|
ok(!button, "There should not be a Learn More button");
|
|
return;
|
|
}
|
|
|
|
is(button.getAttribute("label"), gNavigatorBundle.getString("decoder.noCodecs.button"),
|
|
"notification button should be 'Learn more'");
|
|
is(button.getAttribute("accesskey"), gNavigatorBundle.getString("decoder.noCodecs.accesskey"),
|
|
"notification button should have accesskey");
|
|
|
|
let baseURL = Services.urlFormatter.formatURLPref("app.support.baseURL");
|
|
let url = baseURL + ((options && options.sumo) ||
|
|
"fix-video-audio-problems-firefox-windows");
|
|
let awaitNewTab = BrowserTestUtils.waitForNewTab(gBrowser, url);
|
|
button.click();
|
|
let sumoTab = yield awaitNewTab;
|
|
yield BrowserTestUtils.removeTab(sumoTab);
|
|
});
|
|
}
|
|
|
|
add_task(function* test_platform_decoder_not_found() {
|
|
let message;
|
|
let isLinux = AppConstants.platform == "linux";
|
|
if (isLinux) {
|
|
message = gNavigatorBundle.getString("decoder.noCodecsLinux.message");
|
|
} else {
|
|
message = gNavigatorBundle.getString("decoder.noHWAcceleration.message");
|
|
}
|
|
|
|
yield test_decoder_doctor_notification("platform-decoder-not-found",
|
|
message,
|
|
{noLearnMoreButton: isLinux});
|
|
});
|
|
|
|
add_task(function* test_cannot_initialize_pulseaudio() {
|
|
// This is only sent on Linux.
|
|
if (AppConstants.platform != "linux") {
|
|
return;
|
|
}
|
|
|
|
let message = gNavigatorBundle.getString("decoder.noPulseAudio.message");
|
|
yield test_decoder_doctor_notification("cannot-initialize-pulseaudio",
|
|
message,
|
|
{sumo: "fix-common-audio-and-video-issues"});
|
|
});
|
|
|
|
add_task(function* test_unsupported_libavcodec() {
|
|
// This is only sent on Linux.
|
|
if (AppConstants.platform != "linux") {
|
|
return;
|
|
}
|
|
|
|
let message = gNavigatorBundle.getString("decoder.unsupportedLibavcodec.message");
|
|
yield test_decoder_doctor_notification("unsupported-libavcodec",
|
|
message,
|
|
{noLearnMoreButton: true});
|
|
});
|