mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-05-26 14:18:48 +00:00
c4d71010c8
- Bug 1200445 - Expose android native apps trough the navigator.mozApps api r=snorp,ferjm (5f2e5df93a)
- Bug 1199844 - limit webapp debug logging to webapp tests; r=fabrice (59bf73deb2)
- Bug 1199295 - Pass right loadingPrincipal to uriloader/prefetch - dom/apps (r=fabrice) (8bdab29703)
- Bug 1213170 - followup r=bustage on a CLOSED TREE (9ac5f0a677)
- Bug 1194243 - Keep the message manager alive in doUninstall() to be able to signal the result back; r=myk (3093189372)
- Bug 1154864 - Fix getScopeByLocalId use in PushService.jsm r=nsm (0f67e9de60)
- Bug 1196963 - Make extensions work without being in developer mode r=jduell (e120108628)
- Bug 1200851 - DataStoreService should update its permission map when the homescreen changes, r=fabrice (1582ac0320)
- Bug 1200851 - DataStoreService should update its permission map when the homescreen changes, r=fabrice (7949555b43)
- Bug 1186805 - Replace nsBaseHashtable::EnumerateRead() calls in dom/datastore/ with iterators, r=njn (0c6f234576)
- Bug 1208355 - Fix -Wshadow warnings in dom/datastore. r=baku (8b617685d4)
- Bug 1214092 - Part 1 of 1: Exposed WebSpeech API SpeechRecognition Interface to privileged apps. r=smaug (e33c92d4e8)
- Bug 1218337 - Part 1 of 1: Introduced permission 'speech-recognition' and used it in place of the app-check. r=smaug (1cdf67a55f)
- Bug 1051604 - Adapt VAD strategy on SpeechRecognition to be less strict on some devices with poor mics. r=smaug (911258b56e)
- Bug 1111135 - Part 1: Add audio-capture:3gpp perimission. r=fabrice (c98bee92a6)
- bit of 1196988 (a334242521)
- Bug 1193183 - Correctly implement SpeechRecognitionAlternative::confidence using ps_get_prob(). r=anatal (14a881b44f)
- Bug 1197455 - Call ps_set_search() only after successful grammar compilation. r=anatal (55d37ea0fb)
- Bug 1156560 - Prefer old CDMs on update if they are in use - r=cpearce (b763f1044a)
- Bug 1228215 - Add helper to do dir enumeration in GMPServiceParent. r=jwwang (1d3bc1eef0)
- Bug 1228215 - Store each GMP's storage and nodeId salt in separate directories. r=jwwang (20fb2b7a18)
- Bug 1172396 - Update GMP trial creation pref from chrome process - r=cpearce (123d97d03a)
- Bug 1228215 - Add a 'gmpName' parameter to GMPService::GetNodeId(), so each GMP can see a different nodeId for the same origin. r=jwwang (fceaef0c11)
- fixes for no EME (b70879a799)
- Bug 1228215 - Migrate existing GMP storage from post-42 pre-45 location to 45 location. r=jwwang (9da581744d)
- missing crash stuff (b537d416b3)
- Bug 1187193 - Use UserData() instead of Data() in ConstIter loops that used to be EnumerateRead's. r=njn (2a4c297f36)
- Bug 1211337 - Added crash report annotations tracking sync shutdown (60b3004394)
- Bug 1173195 - Don't assert success until successful in GMPSharedMemManager. r=edwin (3844ba6e20)
- Bug 1208289 - Log outstanding frames in GMP DrainComplete() and detect dropped ResetComplete. r=jwwang (eccf4dbecc)
- Bug 1224442: null-check GMP Parent Shmem messages from the Child to handle messages after shutdown r=cpearce (d12b9c57c2)
- add some defines (3c4fc2d5b9)
- Bug 1220929 - RemotePageManager should let us get all ports for a browser. r=Mossop (402fc2a536)
- Bug 1220929 - RemotePageManager should use documentURI and allow special URLs with query params. r=Mossop (9fc73b228e)
- Bug 1144422 - fix lightweight theme code to deal with invalid CSS so we don't mistakenly keep text colors, r=jaws (8b47394d6c)
- Bug 1229519: Fix download managers to pass eslint checks. r=mak (e4a684db58)
- Bug 1180113 - Introducing g2p algorithm inside pocketsphinx to allow out of dictionary words to be added to grammars. r=smaug (b3a23daf56)
- Bug 1202989 - Added check for 0 length phones string in addition to NULL. r=andrenatal (387faeb88c)
- Bug 1171082 - Now _WIN32_WINNT is defined to 0x0400 only if it is not defined, 0x0400 is the minimal version. Also modified update.sh to do this. r=smaug (bb7dd37c00)
- bits of Bug 1165518 - Part 2: Replace prlog.h with Logging.h. (fc0ca3ca20)
- Bug 1188970: Fix usage of forward slash in constructing webrtc trace file path. r=rjesup (8518b84be1)
- Bug 1225682 - Don't use nsAuto{,C}String as class member variables in docshell/. r=bz (839a57580e)
- Bug 1220916 - Remove "WARNING: TimelineConsumers could not be initialized" when running gtests, r=fitzgen (c89330afcc)
- Bug 1217836 - Add a readme file to our timeline backend, r=jsantell (df0ea6b198)
- enable shadow (dcad5bdb7a)
271 lines
7.8 KiB
JavaScript
271 lines
7.8 KiB
JavaScript
"use strict";
|
|
|
|
const Cu = Components.utils;
|
|
const Cc = Components.classes;
|
|
const Ci = Components.interfaces;
|
|
|
|
Cu.import("resource://gre/modules/OperatorApps.jsm");
|
|
Cu.import("resource://gre/modules/FileUtils.jsm");
|
|
Cu.import("resource://gre/modules/NetUtil.jsm");
|
|
|
|
// From prio.h
|
|
const PR_RDWR = 0x04;
|
|
const PR_CREATE_FILE = 0x08;
|
|
const PR_TRUNCATE = 0x20;
|
|
|
|
SimpleTest.waitForExplicitFinish();
|
|
|
|
var gApp = null;
|
|
|
|
var index = -1;
|
|
var singlevariantDir = undefined;
|
|
|
|
function debug(aMsg) {
|
|
//dump("== Tests debug == " + aMsg + "\n");
|
|
}
|
|
|
|
|
|
var updateData = {
|
|
name : "testOperatorApp1",
|
|
version : 2,
|
|
size : 767,
|
|
package_path: "http://test/tests/dom/apps/tests/file_packaged_app.sjs",
|
|
description: "Updated even faster than Firefox, just to annoy slashdotters",
|
|
developer: {
|
|
name: "Tester Operator App",
|
|
url: "http://mochi.test:8888"
|
|
}
|
|
};
|
|
|
|
var manifestData = {
|
|
name : "testOperatorApp1",
|
|
version : 2,
|
|
description: "Updated even faster than Firefox, just to annoy slashdotters",
|
|
launch_path: "index.html",
|
|
developer: {
|
|
name: "Tester Operator App",
|
|
url: "http://mochi.test:8888"
|
|
},
|
|
default_locale: "en-US"
|
|
};
|
|
|
|
var metadataData = {
|
|
id: "testOperatorApp1",
|
|
installOrigin: "http://mochi.test:8888",
|
|
manifestURL: "http://test/tests/dom/apps/tests/file_packaged_app.sjs",
|
|
origin: "http://test"
|
|
};
|
|
|
|
function writeFile(aFile, aData, aCb) {
|
|
debug("Saving " + aFile.path);
|
|
// Initialize the file output stream.
|
|
let ostream = FileUtils.openSafeFileOutputStream(aFile);
|
|
|
|
// Obtain a converter to convert our data to a UTF-8 encoded input stream.
|
|
let converter = Cc["@mozilla.org/intl/scriptableunicodeconverter"]
|
|
.createInstance(Ci.nsIScriptableUnicodeConverter);
|
|
converter.charset = "UTF-8";
|
|
|
|
// Asynchronously copy the data to the file.
|
|
let istream = converter.convertToInputStream(aData);
|
|
NetUtil.asyncCopy(istream, ostream, function(rc) {
|
|
FileUtils.closeSafeFileOutputStream(ostream);
|
|
if (aCb)
|
|
aCb();
|
|
});
|
|
}
|
|
|
|
// File and resources helpers
|
|
function addZipEntry(zipWriter, entry, entryName) {
|
|
var stream = Cc["@mozilla.org/io/string-input-stream;1"]
|
|
.createInstance(Ci.nsIStringInputStream);
|
|
stream.setData(entry, entry.length);
|
|
zipWriter.addEntryStream(entryName, Date.now(),
|
|
Ci.nsIZipWriter.COMPRESSION_BEST, stream, false);
|
|
}
|
|
|
|
function setupDataDirs(aCb) {
|
|
let dirNum = "tmp_" + Math.floor(Math.random() * 10000000 + 1);
|
|
let tmpDir = FileUtils.getDir("TmpD", [dirNum, "singlevariantapps"], true,
|
|
true);
|
|
let appDir = FileUtils.getDir("TmpD", [dirNum, "singlevariantapps",
|
|
"testOperatorApp1"], true, true);
|
|
|
|
singlevariantDir = tmpDir.path;
|
|
let singlevariantFile = tmpDir.clone();
|
|
singlevariantFile.append("singlevariantconf.json");
|
|
|
|
|
|
writeFile(singlevariantFile, JSON.stringify({"214-007":["testOperatorApp1"]}),
|
|
function() {
|
|
let indexhtml = "<html></html>";
|
|
let manifest = JSON.stringify(manifestData);
|
|
// Create the application package.
|
|
var zipWriter = Cc["@mozilla.org/zipwriter;1"]
|
|
.createInstance(Ci.nsIZipWriter);
|
|
var zipFile = FileUtils.getFile("TmpD", [
|
|
dirNum,
|
|
"singlevariantapps",
|
|
"testOperatorApp1",
|
|
"application.zip"]);
|
|
zipWriter.open(zipFile, PR_RDWR | PR_CREATE_FILE | PR_TRUNCATE);
|
|
addZipEntry(zipWriter, indexhtml, "index.html");
|
|
addZipEntry(zipWriter, manifest, "manifest.webapp");
|
|
zipWriter.close();
|
|
|
|
var metadataFile = appDir.clone();
|
|
metadataFile.append("metadata.json");
|
|
writeFile(metadataFile, JSON.stringify(metadataData), function() {
|
|
var updateFile = appDir.clone();
|
|
updateFile.append("update.webapp");
|
|
writeFile(updateFile, JSON.stringify(updateData), aCb);
|
|
});
|
|
});
|
|
}
|
|
|
|
function next() {
|
|
index += 1;
|
|
if (index >= steps.length) {
|
|
ok(false, "Shouldn't get here!");
|
|
return;
|
|
}
|
|
try {
|
|
steps[index]();
|
|
} catch(ex) {
|
|
ok(false, "Caught exception", ex);
|
|
}
|
|
}
|
|
|
|
function go() {
|
|
next();
|
|
}
|
|
|
|
function finish() {
|
|
SimpleTest.finish();
|
|
}
|
|
|
|
function mozAppsError() {
|
|
ok(false, "mozApps error: " + this.error.name);
|
|
finish();
|
|
}
|
|
|
|
function installOperatorApp(aMcc, aMnc) {
|
|
OperatorAppsRegistry.appsDir = singlevariantDir;
|
|
OperatorAppsRegistry._installOperatorApps(aMcc, aMnc);
|
|
}
|
|
|
|
function checkAppState(aApp,
|
|
aVersion,
|
|
aExpectedApp,
|
|
aCb) {
|
|
debug(JSON.stringify(aApp, null, 2));
|
|
if (aApp.manifest) {
|
|
debug(JSON.stringify(aApp.manifest, null, 2));
|
|
}
|
|
|
|
if (aExpectedApp.name) {
|
|
if (aApp.manifest) {
|
|
is(aApp.manifest.name, aExpectedApp.name, "Check name");
|
|
}
|
|
is(aApp.updateManifest.name, aExpectedApp.name, "Check name mini-manifest");
|
|
}
|
|
if (aApp.manifest) {
|
|
is(aApp.manifest.version, aVersion, "Check version");
|
|
}
|
|
if (typeof aExpectedApp.size !== "undefined" && aApp.manifest) {
|
|
is(aApp.manifest.size, aExpectedApp.size, "Check size");
|
|
}
|
|
if (aApp.manifest) {
|
|
is(aApp.manifest.launch_path, "index.html", "Check launch path");
|
|
}
|
|
if (aExpectedApp.manifestURL) {
|
|
is(aApp.manifestURL, aExpectedApp.manifestURL, "Check manifestURL");
|
|
}
|
|
if (aExpectedApp.installOrigin) {
|
|
is(aApp.installOrigin, aExpectedApp.installOrigin, "Check installOrigin");
|
|
}
|
|
ok(aApp.removable, "Removable app");
|
|
if (typeof aExpectedApp.progress !== "undefined") {
|
|
todo(aApp.progress == aExpectedApp.progress, "Check progress");
|
|
}
|
|
if (aExpectedApp.installState) {
|
|
is(aApp.installState, aExpectedApp.installState, "Check installState");
|
|
}
|
|
if (typeof aExpectedApp.downloadAvailable !== "undefined") {
|
|
is(aApp.downloadAvailable, aExpectedApp.downloadAvailable,
|
|
"Check download available");
|
|
}
|
|
if (typeof aExpectedApp.downloading !== "undefined") {
|
|
is(aApp.downloading, aExpectedApp.downloading, "Check downloading");
|
|
}
|
|
if (typeof aExpectedApp.downloadSize !== "undefined") {
|
|
is(aApp.downloadSize, aExpectedApp.downloadSize, "Check downloadSize");
|
|
}
|
|
if (typeof aExpectedApp.readyToApplyDownload !== "undefined") {
|
|
is(aApp.readyToApplyDownload, aExpectedApp.readyToApplyDownload,
|
|
"Check readyToApplyDownload");
|
|
}
|
|
if (aCb && typeof aCb === 'function') {
|
|
aCb();
|
|
}
|
|
return;
|
|
}
|
|
|
|
var steps = [
|
|
function() {
|
|
prepareEnv(next);
|
|
},
|
|
function() {
|
|
setupDataDirs(next);
|
|
ok(true, "Data directory set up to " + singlevariantDir);
|
|
},
|
|
function() {
|
|
ok(true, "autoConfirmAppInstall");
|
|
SpecialPowers.autoConfirmAppInstall(next);
|
|
},
|
|
function() {
|
|
ok(true, "== TEST == Install operator app");
|
|
|
|
navigator.mozApps.mgmt.oninstall = function(evt) {
|
|
ok(true, "Got oninstall event");
|
|
gApp = evt.application;
|
|
gApp.ondownloaderror = function() {
|
|
ok(false, "Download error " + gApp.downloadError.name);
|
|
finish();
|
|
};
|
|
let downloadsuccessHandler = function() {
|
|
gApp.ondownloadsuccess = null;
|
|
ok(true, "App downloaded");
|
|
|
|
var expected = {
|
|
name: manifestData.name,
|
|
manifestURL: metadataData.manifestURL,
|
|
installOrigin: metadataData.installOrigin,
|
|
progress: 0,
|
|
installState: "installed",
|
|
downloadAvailable: false,
|
|
downloading: false,
|
|
downloadSize: 767,
|
|
readyToApplyDownload: false
|
|
};
|
|
checkAppState(gApp, manifestData.version, expected, next);
|
|
};
|
|
gApp.ondownloadsuccess = downloadsuccessHandler;
|
|
if (!gApp.downloading && gApp.ondownloadsuccess) {
|
|
ok(true, "Got an earlier event");
|
|
// Seems we set the handler too late.
|
|
gApp.ondownloadsuccess = null;
|
|
downloadsuccessHandler();
|
|
}
|
|
};
|
|
installOperatorApp("214", "007");
|
|
},
|
|
function() {
|
|
ok(true, "all done!\n");
|
|
finish();
|
|
}
|
|
];
|
|
|
|
go();
|
|
|