Chromium Code Reviews| Index: chrome/test/data/webui/settings/mock_settings_private.js |
| diff --git a/chrome/test/data/webui/settings/mock_settings_private.js b/chrome/test/data/webui/settings/mock_settings_private.js |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..039d316a7eee251f7ef474159acdee2eebbbf863 |
| --- /dev/null |
| +++ b/chrome/test/data/webui/settings/mock_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 Mock 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)); |
| + } |
| + |
| + /** |
| + * Mock of chrome.settingsPrivate API. Override chrome.settingsPrivate by |
| + * creating a MockSettingsPrivate and calling register() on it. |
| + * @constructor |
| + * @extends {chrome.settingsPrivate} |
| + */ |
| + function MockSettingsPrivate() { |
| + 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), |
| + }; |
| + |
| + for (var testCase of prefsTestCases) |
|
stevenjb
2015/11/16 18:51:13
Where does prefsTestCases come from?
michaelpg
2015/11/17 01:07:40
oops, it comes from prefs_test_cases.js which is s
|
| + this.addPref_(testCase.type, testCase.key, testCase.values[0]); |
| + } |
| + |
| + MockSettingsPrivate.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. |
| + |
| + /** Replaces chrome.settingsPrivate with MockSettingsPrivate. */ |
| + register: function() { |
| + this.settingsPrivate_ = chrome.settingsPrivate; |
| + chrome.settingsPrivate = this; |
| + }, |
| + |
| + /** Restores chrome.settingsPrivate. */ |
| + unregister: function() { |
| + chrome.settingsPrivate = this.settingsPrivate_; |
| + }, |
| + |
| + /** 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 mock 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 {MockSettingsPrivate: MockSettingsPrivate}; |
| +}); |