summaryrefslogtreecommitdiffstats
path: root/comm/mailnews/test/resources/passwordStorage.js
diff options
context:
space:
mode:
Diffstat (limited to 'comm/mailnews/test/resources/passwordStorage.js')
-rw-r--r--comm/mailnews/test/resources/passwordStorage.js23
1 files changed, 23 insertions, 0 deletions
diff --git a/comm/mailnews/test/resources/passwordStorage.js b/comm/mailnews/test/resources/passwordStorage.js
new file mode 100644
index 0000000000..26db74c5a7
--- /dev/null
+++ b/comm/mailnews/test/resources/passwordStorage.js
@@ -0,0 +1,23 @@
+/* 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/. */
+
+/* globals gDEPTH */
+
+if (typeof gDEPTH == "undefined") {
+ do_throw("gDEPTH must be defined when using passwordStorage.js");
+}
+
+/**
+ * Use the given storage database as the current signon database.
+ *
+ * @returns {Promise} Promive for when the storage database is usable.
+ */
+function setupForPassword(storageName) {
+ let keyDB = do_get_file(gDEPTH + "mailnews/data/key4.db");
+ keyDB.copyTo(do_get_profile(), "key4.db");
+
+ let signons = do_get_file(gDEPTH + "mailnews/data/" + storageName);
+ signons.copyTo(do_get_profile(), "logins.json");
+ return Services.logins.initializationPromise;
+}