summaryrefslogtreecommitdiffstats
path: root/comm/mailnews/local/test/unit/test_msgCopy.js
diff options
context:
space:
mode:
Diffstat (limited to 'comm/mailnews/local/test/unit/test_msgCopy.js')
-rw-r--r--comm/mailnews/local/test/unit/test_msgCopy.js27
1 files changed, 27 insertions, 0 deletions
diff --git a/comm/mailnews/local/test/unit/test_msgCopy.js b/comm/mailnews/local/test/unit/test_msgCopy.js
new file mode 100644
index 0000000000..c49bff465b
--- /dev/null
+++ b/comm/mailnews/local/test/unit/test_msgCopy.js
@@ -0,0 +1,27 @@
+/* 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/. */
+
+// Test of setting keywords with copyFileMessage
+
+var bugmail11 = do_get_file("../../../data/bugmail11");
+
+// main test
+
+// tag used with test messages
+var tag1 = "istag";
+
+function run_test() {
+ do_test_pending();
+ copyFileMessageInLocalFolder(bugmail11, 0, tag1, null, test_keywords);
+}
+
+function test_keywords(aMessageHeaderKeys, aStatus) {
+ let headerKeys = aMessageHeaderKeys;
+ Assert.notEqual(headerKeys, null);
+ let copiedMessage = localAccountUtils.inboxFolder.GetMessageHeader(
+ headerKeys[0]
+ );
+ Assert.equal(copiedMessage.getStringProperty("keywords"), tag1);
+ do_test_finished();
+}