Index: chrome/test/data/webui/settings/fake_settings_private.js |
diff --git a/chrome/test/data/webui/settings/fake_settings_private.js b/chrome/test/data/webui/settings/fake_settings_private.js |
new file mode 100644 |
index 0000000000000000000000000000000000000000..63b321f82bad959e4a96c4a150593d93a4a64590 |
--- /dev/null |
+++ b/chrome/test/data/webui/settings/fake_settings_private.js |
@@ -0,0 +1,145 @@ |
+// Copyright 2015 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+/** @fileoverview Fake implementation of chrome.settingsPrivate for testing. */ |
+cr.define('settings', function() { |
+ /** |
+ * Creates a deep copy of the object. |
+ * @param {!Object} obj |
+ * @return {!Object} |
+ */ |
+ function deepCopy(obj) { |
+ return JSON.parse(JSON.stringify(obj)); |
+ } |
+ |
+ /** |
+ * Fake of chrome.settingsPrivate API. Use by setting |
+ * CrSettingsPrefs.deferInitialization to true, then passing a |
+ * FakeSettingsPrivate to SettingsPrefs.initializeForTesting. |
+ * @constructor |
+ * @param {Array<!settings.FakeSettingsPrivate.Pref>=} opt_initialPrefs |
+ * @implements {SettingsPrivate} |
+ */ |
+ function FakeSettingsPrivate(opt_initialPrefs) { |
+ this.prefs = {}; |
+ |
+ // Hack alert: bind this instance's onPrefsChanged members to this. |
+ this.onPrefsChanged = { |
+ addListener: this.onPrefsChanged.addListener.bind(this), |
+ removeListener: this.onPrefsChanged.removeListener.bind(this), |
+ }; |
+ |
+ if (!opt_initialPrefs) |
+ return; |
+ for (var pref of opt_initialPrefs) |
+ this.addPref_(pref.type, pref.key, pref.value); |
+ } |
+ |
+ FakeSettingsPrivate.prototype = { |
+ // chrome.settingsPrivate overrides. |
+ onPrefsChanged: { |
+ addListener: function(listener) { |
+ this.listener_ = listener; |
+ }, |
+ |
+ removeListener: function(listener) { |
+ this.listener_ = null; |
+ }, |
+ }, |
+ |
+ getAllPrefs: function(callback) { |
+ // Send a copy of prefs to keep our internal state private. |
+ var prefs = []; |
+ for (var key in this.prefs) |
+ prefs.push(deepCopy(this.prefs[key])); |
+ |
+ // Run the callback asynchronously to test that the prefs aren't actually |
+ // used before they become available. |
+ setTimeout(callback.bind(null, prefs)); |
+ }, |
+ |
+ setPref: function(key, value, pageId, callback) { |
+ var pref = this.prefs[key]; |
+ assertNotEquals(undefined, pref); |
+ assertEquals(typeof value, typeof pref.value); |
+ assertEquals(Array.isArray(value), Array.isArray(pref.value)); |
+ |
+ if (this.failNextSetPref_) { |
+ callback(false); |
+ this.failNextSetPref_ = false; |
+ return; |
+ } |
+ assertNotEquals(true, this.disallowSetPref_); |
+ |
+ var changed = JSON.stringify(pref.value) != JSON.stringify(value); |
+ pref.value = deepCopy(value); |
+ callback(true); |
+ |
+ // Like chrome.settingsPrivate, send a notification when prefs change. |
+ if (changed) |
+ this.sendPrefChanges([{key: key, value: deepCopy(value)}]); |
+ }, |
+ |
+ getPref: function(key, callback) { |
+ var pref = this.prefs[key]; |
+ assertNotEquals(undefined, pref); |
+ callback(deepCopy(pref)); |
+ }, |
+ |
+ // Functions used by tests. |
+ |
+ /** Instructs the API to return a failure when setPref is next called. */ |
+ failNextSetPref: function() { |
+ this.failNextSetPref_ = true; |
+ }, |
+ |
+ /** Instructs the API to assert (fail the test) if setPref is called. */ |
+ disallowSetPref: function() { |
+ this.disallowSetPref_ = true; |
+ }, |
+ |
+ allowSetPref: function() { |
+ this.disallowSetPref_ = false; |
+ }, |
+ |
+ /** |
+ * Notifies the listener of pref changes. |
+ * @param {!Object<{key: string, value: *}>} changes |
+ */ |
+ sendPrefChanges: function(changes) { |
+ var prefs = []; |
+ for (var change of changes) { |
+ var pref = this.prefs[change.key]; |
+ assertNotEquals(undefined, pref); |
+ pref.value = change.value; |
+ prefs.push(deepCopy(pref)); |
+ } |
+ this.listener_(prefs); |
+ }, |
+ |
+ // Private methods for use by the fake API. |
+ |
+ /** |
+ * @param {!chrome.settingsPrivate.PrefType} type |
+ * @param {string} key |
+ * @param {*} value |
+ */ |
+ addPref_: function(type, key, value) { |
+ this.prefs[key] = { |
+ type: type, |
+ key: key, |
+ value: value, |
+ }; |
+ }, |
+ }; |
+ |
+ return {FakeSettingsPrivate: FakeSettingsPrivate}; |
+}); |
+ |
+/** |
+ * @type {Array<{key: string, |
+ * type: chrome.settingsPrivate.PrefType, |
+ * values: !Array<*>}>} |
+ */ |
+settings.FakeSettingsPrivate.Pref; |