mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-24 21:31:04 +00:00
5dec0e0beb
This patch was autogenerated by my decomponents.py It covers almost every file with the extension js, jsm, html, py, xhtml, or xul. It removes blank lines after removed lines, when the removed lines are preceded by either blank lines or the start of a new block. The "start of a new block" is defined fairly hackily: either the line starts with //, ends with */, ends with {, <![CDATA[, """ or '''. The first two cover comments, the third one covers JS, the fourth covers JS embedded in XUL, and the final two cover JS embedded in Python. This also applies if the removed line was the first line of the file. It covers the pattern matching cases like "var {classes: Cc, interfaces: Ci, utils: Cu, results: Cr} = Components;". It'll remove the entire thing if they are all either Ci, Cr, Cc or Cu, or it will remove the appropriate ones and leave the residue behind. If there's only one behind, then it will turn it into a normal, non-pattern matching variable definition. (For instance, "const { classes: Cc, Constructor: CC, interfaces: Ci, utils: Cu } = Components" becomes "const CC = Components.Constructor".) MozReview-Commit-ID: DeSHcClQ7cG --HG-- extra : rebase_source : d9c41878036c1ef7766ef5e91a7005025bc1d72b
114 lines
3.0 KiB
JavaScript
114 lines
3.0 KiB
JavaScript
|
|
"use strict";
|
|
|
|
this.EXPORTED_SYMBOLS = ["MockRegistry"];
|
|
|
|
ChromeUtils.import("resource://testing-common/MockRegistrar.jsm");
|
|
ChromeUtils.import("resource://gre/modules/XPCOMUtils.jsm");
|
|
|
|
class MockRegistry {
|
|
constructor() {
|
|
// Three level structure of Maps pointing to Maps pointing to Maps
|
|
// this.roots is the top of the structure and has ROOT_KEY_* values
|
|
// as keys. Maps at the second level are the values of the first
|
|
// level Map, they have registry keys (also called paths) as keys.
|
|
// Third level maps are the values in second level maps, they have
|
|
// map registry names to corresponding values (which in this implementation
|
|
// are always strings).
|
|
this.roots = new Map([
|
|
[Ci.nsIWindowsRegKey.ROOT_KEY_LOCAL_MACHINE, new Map()],
|
|
[Ci.nsIWindowsRegKey.ROOT_KEY_CURRENT_USER, new Map()],
|
|
[Ci.nsIWindowsRegKey.ROOT_KEY_CLASSES_ROOT, new Map()],
|
|
]);
|
|
|
|
let registry = this;
|
|
|
|
/**
|
|
* This is a mock nsIWindowsRegistry implementation. It only implements a
|
|
* subset of the interface used in tests. In particular, only values
|
|
* of type string are supported.
|
|
*/
|
|
function MockWindowsRegKey() { }
|
|
MockWindowsRegKey.prototype = {
|
|
values: null,
|
|
|
|
// --- Overridden nsISupports interface functions ---
|
|
QueryInterface: XPCOMUtils.generateQI([Ci.nsIWindowsRegKey]),
|
|
|
|
// --- Overridden nsIWindowsRegKey interface functions ---
|
|
open(root, path, mode) {
|
|
let rootKey = registry.getRoot(root);
|
|
if (!rootKey.has(path)) {
|
|
rootKey.set(path, new Map());
|
|
}
|
|
this.values = rootKey.get(path);
|
|
},
|
|
|
|
close() {
|
|
this.values = null;
|
|
},
|
|
|
|
get valueCount() {
|
|
if (!this.values)
|
|
throw Components.results.NS_ERROR_FAILURE;
|
|
return this.values.size;
|
|
},
|
|
|
|
hasValue(name) {
|
|
if (!this.values) {
|
|
return false;
|
|
}
|
|
return this.values.has(name);
|
|
},
|
|
|
|
getValueType(name) {
|
|
return Ci.nsIWindowsRegKey.TYPE_STRING;
|
|
},
|
|
|
|
getValueName(index) {
|
|
if (!this.values || index >= this.values.size)
|
|
throw Components.results.NS_ERROR_FAILURE;
|
|
let names = Array.from(this.values.keys());
|
|
return names[index];
|
|
},
|
|
|
|
readStringValue(name) {
|
|
if (!this.values) {
|
|
throw new Error("invalid registry path");
|
|
}
|
|
return this.values.get(name);
|
|
}
|
|
};
|
|
|
|
this.cid = MockRegistrar.register("@mozilla.org/windows-registry-key;1", MockWindowsRegKey);
|
|
}
|
|
|
|
shutdown() {
|
|
MockRegistrar.unregister(this.cid);
|
|
this.cid = null;
|
|
}
|
|
|
|
getRoot(root) {
|
|
if (!this.roots.has(root)) {
|
|
throw new Error(`No such root ${root}`);
|
|
}
|
|
return this.roots.get(root);
|
|
}
|
|
|
|
setValue(root, path, name, value) {
|
|
let rootKey = this.getRoot(root);
|
|
|
|
if (!rootKey.has(path)) {
|
|
rootKey.set(path, new Map());
|
|
}
|
|
|
|
let pathmap = rootKey.get(path);
|
|
if (value == null) {
|
|
pathmap.delete(name);
|
|
} else {
|
|
pathmap.set(name, value);
|
|
}
|
|
}
|
|
}
|
|
|