Bug 949325 - C++ wrapper to support DataStore API on the worker (part 3-1, fix tests to support navigator.getDataStores on worker). r=khuey

This commit is contained in:
Gene Lian 2014-02-24 21:57:42 +08:00
parent 96ce5c1c53
commit dd4520e3cf
2 changed files with 45 additions and 7 deletions

View File

@ -2,10 +2,13 @@
* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/publicdomain/zero/1.0/
*/
// IMPORTANT: Do not change the list below without review from a DOM peer!
var supportedProps = [
"appCodeName",
"appName",
"appVersion",
{ name: "getDataStores", b2g: true },
"platform",
"product",
"taintEnabled",
@ -13,26 +16,55 @@ var supportedProps = [
"onLine"
];
var isDesktop = !/Mobile|Tablet/.test(navigator.userAgent);
var isB2G = !isDesktop && !navigator.userAgent.contains("Android");
// Prepare the interface map showing if a propery should exist in this build.
// For example, if interfaceMap[foo] = true means navigator.foo should exist.
var interfaceMap = {};
for (var prop of supportedProps) {
if (typeof(prop) === "string") {
interfaceMap[prop] = true;
continue;
}
if (prop.b2g === !isB2G) {
interfaceMap[prop.name] = false;
continue;
}
interfaceMap[prop.name] = true;
}
for (var prop in navigator) {
// Make sure the list is current!
if (supportedProps.indexOf(prop) == -1) {
if (!interfaceMap[prop]) {
throw "Navigator has the '" + prop + "' property that isn't in the list!";
}
}
var obj;
for (var index = 0; index < supportedProps.length; index++) {
var prop = supportedProps[index];
for (var prop in interfaceMap) {
// Skip the property that is not supposed to exist in this build.
if (!interfaceMap[prop]) {
continue;
}
if (typeof navigator[prop] == "undefined") {
throw "Navigator has no '" + prop + "' property!";
}
obj = {
name: prop,
value: prop === "taintEnabled" ? navigator[prop]() : navigator[prop]
};
obj = { name: prop };
if (prop === "taintEnabled") {
obj.value = navigator[prop]();
} else if (prop === "getDataStores") {
obj.value = typeof navigator[prop];
} else {
obj.value = navigator[prop];
}
postMessage(JSON.stringify(obj));
}

View File

@ -40,6 +40,12 @@ Tests of DOM Worker Navigator
return;
}
if (args.name === "getDataStores") {
var type = typeof navigator[args.name];
is(type, args.value, "getDataStores() exists and it's a function.");
return;
}
is(navigator[args.name], args.value,
"Mismatched navigator string for " + args.name + "!");
};