diff options
author | Matt A. Tobin <email@mattatobin.com> | 2018-02-03 06:00:38 -0500 |
---|---|---|
committer | Matt A. Tobin <email@mattatobin.com> | 2018-02-03 06:00:38 -0500 |
commit | 8148615da179fdd60f19018e13b4e94b95609cc6 (patch) | |
tree | 771fccdd99fa3adf35fdd2c81d8197b415a89b91 /browser/components/selfsupport | |
parent | 494802c1be7888025b95260d23db187467d2b9dd (diff) | |
download | UXP-8148615da179fdd60f19018e13b4e94b95609cc6.tar UXP-8148615da179fdd60f19018e13b4e94b95609cc6.tar.gz UXP-8148615da179fdd60f19018e13b4e94b95609cc6.tar.lz UXP-8148615da179fdd60f19018e13b4e94b95609cc6.tar.xz UXP-8148615da179fdd60f19018e13b4e94b95609cc6.zip |
Remove browser tests - Part 1: The Tests (except for experiments)
Diffstat (limited to 'browser/components/selfsupport')
-rw-r--r-- | browser/components/selfsupport/test/.eslintrc.js | 7 | ||||
-rw-r--r-- | browser/components/selfsupport/test/browser.ini | 3 | ||||
-rw-r--r-- | browser/components/selfsupport/test/browser_selfsupportAPI.js | 88 |
3 files changed, 0 insertions, 98 deletions
diff --git a/browser/components/selfsupport/test/.eslintrc.js b/browser/components/selfsupport/test/.eslintrc.js deleted file mode 100644 index c764b133d..000000000 --- a/browser/components/selfsupport/test/.eslintrc.js +++ /dev/null @@ -1,7 +0,0 @@ -"use strict"; - -module.exports = { - "extends": [ - "../../../../testing/mochitest/browser.eslintrc.js" - ] -}; diff --git a/browser/components/selfsupport/test/browser.ini b/browser/components/selfsupport/test/browser.ini deleted file mode 100644 index ba56857b3..000000000 --- a/browser/components/selfsupport/test/browser.ini +++ /dev/null @@ -1,3 +0,0 @@ -[DEFAULT] - -[browser_selfsupportAPI.js] diff --git a/browser/components/selfsupport/test/browser_selfsupportAPI.js b/browser/components/selfsupport/test/browser_selfsupportAPI.js deleted file mode 100644 index 2a54d4ae6..000000000 --- a/browser/components/selfsupport/test/browser_selfsupportAPI.js +++ /dev/null @@ -1,88 +0,0 @@ -Cu.import("resource://gre/modules/Preferences.jsm"); - -function test_resetPref() { - const prefNewName = "browser.newpref.fake"; - Assert.ok(!Preferences.has(prefNewName), "pref should not exist"); - - const prefExistingName = "extensions.hotfix.id"; - Assert.ok(Preferences.has(prefExistingName), "pref should exist"); - Assert.ok(!Preferences.isSet(prefExistingName), "pref should not be user-set"); - let prefExistingOriginalValue = Preferences.get(prefExistingName); - - registerCleanupFunction(function() { - Preferences.set(prefExistingName, prefExistingOriginalValue); - Services.prefs.deleteBranch(prefNewName); - }); - - // 1. do nothing on an inexistent pref - MozSelfSupport.resetPref(prefNewName); - Assert.ok(!Preferences.has(prefNewName), "pref should still not exist"); - - // 2. creation of a new pref - Preferences.set(prefNewName, 10); - Assert.ok(Preferences.has(prefNewName), "pref should exist"); - Assert.equal(Preferences.get(prefNewName), 10, "pref value should be 10"); - - MozSelfSupport.resetPref(prefNewName); - Assert.ok(!Preferences.has(prefNewName), "pref should not exist any more"); - - // 3. do nothing on an unchanged existing pref - MozSelfSupport.resetPref(prefExistingName); - Assert.ok(Preferences.has(prefExistingName), "pref should still exist"); - Assert.equal(Preferences.get(prefExistingName), prefExistingOriginalValue, "pref value should be the same as original"); - - // 4. change the value of an existing pref - Preferences.set(prefExistingName, "anyone@mozilla.org"); - Assert.ok(Preferences.has(prefExistingName), "pref should exist"); - Assert.equal(Preferences.get(prefExistingName), "anyone@mozilla.org", "pref value should have changed"); - - MozSelfSupport.resetPref(prefExistingName); - Assert.ok(Preferences.has(prefExistingName), "pref should still exist"); - Assert.equal(Preferences.get(prefExistingName), prefExistingOriginalValue, "pref value should be the same as original"); - - // 5. delete an existing pref - // deleteBranch is implemented in such a way that - // clearUserPref can't undo its action - // see discussion in bug 1075160 -} - -function test_resetSearchEngines() -{ - const defaultEngineOriginal = Services.search.defaultEngine; - const visibleEnginesOriginal = Services.search.getVisibleEngines(); - - // 1. do nothing on unchanged search configuration - MozSelfSupport.resetSearchEngines(); - Assert.equal(Services.search.defaultEngine, defaultEngineOriginal, "default engine should be reset"); - Assert.deepEqual(Services.search.getVisibleEngines(), visibleEnginesOriginal, - "default visible engines set should be reset"); - - // 2. change the default search engine - const defaultEngineNew = visibleEnginesOriginal[3]; - Assert.notEqual(defaultEngineOriginal, defaultEngineNew, "new default engine should be different from original"); - Services.search.defaultEngine = defaultEngineNew; - Assert.equal(Services.search.defaultEngine, defaultEngineNew, "default engine should be set to new"); - MozSelfSupport.resetSearchEngines(); - Assert.equal(Services.search.defaultEngine, defaultEngineOriginal, "default engine should be reset"); - Assert.deepEqual(Services.search.getVisibleEngines(), visibleEnginesOriginal, - "default visible engines set should be reset"); - - // 3. remove an engine - const engineRemoved = visibleEnginesOriginal[2]; - Services.search.removeEngine(engineRemoved); - Assert.ok(Services.search.getVisibleEngines().indexOf(engineRemoved) == -1, - "removed engine should not be visible any more"); - MozSelfSupport.resetSearchEngines(); - Assert.equal(Services.search.defaultEngine, defaultEngineOriginal, "default engine should be reset"); - Assert.deepEqual(Services.search.getVisibleEngines(), visibleEnginesOriginal, - "default visible engines set should be reset"); - - // 4. add an angine - // we don't remove user-added engines as they are only used if selected -} - -function test() -{ - test_resetPref(); - test_resetSearchEngines(); -} |