diff options
author | Matt A. Tobin <email@mattatobin.com> | 2020-02-25 15:07:00 -0500 |
---|---|---|
committer | wolfbeast <mcwerewolf@wolfbeast.com> | 2020-04-14 12:55:19 +0200 |
commit | eb70e6e3d0bff11c25f14b1196025791bf2308fb (patch) | |
tree | 5ef4ce17db83c74d7b05ec12c8f59e095a6dd5bd /toolkit/components/satchel/test/unit/head_satchel.js | |
parent | 32ead795290b3399d56b4708fc75b77d296f6a1a (diff) | |
download | UXP-eb70e6e3d0bff11c25f14b1196025791bf2308fb.tar UXP-eb70e6e3d0bff11c25f14b1196025791bf2308fb.tar.gz UXP-eb70e6e3d0bff11c25f14b1196025791bf2308fb.tar.lz UXP-eb70e6e3d0bff11c25f14b1196025791bf2308fb.tar.xz UXP-eb70e6e3d0bff11c25f14b1196025791bf2308fb.zip |
Issue #439 - Remove tests from toolkit/
Diffstat (limited to 'toolkit/components/satchel/test/unit/head_satchel.js')
-rw-r--r-- | toolkit/components/satchel/test/unit/head_satchel.js | 102 |
1 files changed, 0 insertions, 102 deletions
diff --git a/toolkit/components/satchel/test/unit/head_satchel.js b/toolkit/components/satchel/test/unit/head_satchel.js deleted file mode 100644 index 282d07ba5..000000000 --- a/toolkit/components/satchel/test/unit/head_satchel.js +++ /dev/null @@ -1,102 +0,0 @@ -/* This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ - -Components.utils.import("resource://gre/modules/XPCOMUtils.jsm"); -Components.utils.import("resource://gre/modules/Services.jsm"); -Components.utils.import("resource://gre/modules/FormHistory.jsm"); - -var Ci = Components.interfaces; -var Cc = Components.classes; -var Cu = Components.utils; - -const CURRENT_SCHEMA = 4; -const PR_HOURS = 60 * 60 * 1000000; - -do_get_profile(); - -var dirSvc = Cc["@mozilla.org/file/directory_service;1"]. - getService(Ci.nsIProperties); - -// Send the profile-after-change notification to the form history component to ensure -// that it has been initialized. -var formHistoryStartup = Cc["@mozilla.org/satchel/form-history-startup;1"]. - getService(Ci.nsIObserver); -formHistoryStartup.observe(null, "profile-after-change", null); - -function getDBVersion(dbfile) { - var ss = Cc["@mozilla.org/storage/service;1"]. - getService(Ci.mozIStorageService); - var dbConnection = ss.openDatabase(dbfile); - var version = dbConnection.schemaVersion; - dbConnection.close(); - - return version; -} - -const isGUID = /[A-Za-z0-9\+\/]{16}/; - -// Find form history entries. -function searchEntries(terms, params, iter) { - let results = []; - FormHistory.search(terms, params, { handleResult: result => results.push(result), - handleError: function (error) { - do_throw("Error occurred searching form history: " + error); - }, - handleCompletion: function (reason) { if (!reason) iter.next(results); } - }); -} - -// Count the number of entries with the given name and value, and call then(number) -// when done. If name or value is null, then the value of that field does not matter. -function countEntries(name, value, then) { - var obj = {}; - if (name !== null) - obj.fieldname = name; - if (value !== null) - obj.value = value; - - let count = 0; - FormHistory.count(obj, { handleResult: result => count = result, - handleError: function (error) { - do_throw("Error occurred searching form history: " + error); - }, - handleCompletion: function (reason) { if (!reason) then(count); } - }); -} - -// Perform a single form history update and call then() when done. -function updateEntry(op, name, value, then) { - var obj = { op: op }; - if (name !== null) - obj.fieldname = name; - if (value !== null) - obj.value = value; - updateFormHistory(obj, then); -} - -// Add a single form history entry with the current time and call then() when done. -function addEntry(name, value, then) { - let now = Date.now() * 1000; - updateFormHistory({ op: "add", fieldname: name, value: value, timesUsed: 1, - firstUsed: now, lastUsed: now }, then); -} - -// Wrapper around FormHistory.update which handles errors. Calls then() when done. -function updateFormHistory(changes, then) { - FormHistory.update(changes, { handleError: function (error) { - do_throw("Error occurred updating form history: " + error); - }, - handleCompletion: function (reason) { if (!reason) then(); }, - }); -} - -/** - * Logs info to the console in the standard way (includes the filename). - * - * @param aMessage - * The message to log to the console. - */ -function do_log_info(aMessage) { - print("TEST-INFO | " + _TEST_FILE + " | " + aMessage); -} |