summaryrefslogtreecommitdiffstats
path: root/comm/mailnews/base/test/unit/test_bccInDatabase.js
blob: ad9ff039b7b5e349b33ebf3002b661def833c1e3 (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/* 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/. */

/*
 * Testing of bcc in message summary file added in bug 481667
 */

var { MailServices } = ChromeUtils.import(
  "resource:///modules/MailServices.jsm"
);

var hdr;

function run_test() {
  localAccountUtils.loadLocalMailAccount();

  var copyListener = {
    OnStartCopy() {},
    OnProgress(aProgress, aProgressMax) {},
    SetMessageKey(aKey) {
      hdr = localAccountUtils.inboxFolder.GetMessageHeader(aKey);
    },
    SetMessageId(aMessageId) {},
    OnStopCopy(aStatus) {
      continueTest();
    },
  };

  // Get a message into the local filestore.
  var draft = do_get_file("../../../data/draft1");
  do_test_pending();
  MailServices.copy.copyFileMessage(
    draft,
    localAccountUtils.inboxFolder,
    null,
    false,
    0,
    "",
    copyListener,
    null
  );
}

function continueTest() {
  // dump("\nbccList >" + hdr.bccList);
  // dump("\nccList >" + hdr.ccList);
  // dump("\n");
  Assert.ok(hdr.bccList.includes("Another Person"));
  Assert.ok(hdr.bccList.includes("<u1@example.com>"));
  Assert.ok(!hdr.bccList.includes("IDoNotExist"));
  hdr = null;
  do_test_finished();
}