summaryrefslogtreecommitdiffstats
path: root/comm/mailnews/local/test/unit/test_msgCopy.js
blob: c49bff465b5bd50dcb982f04d17056e6395cf4b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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();
}