summaryrefslogtreecommitdiffstats
path: root/comm/mailnews/mime/test/unit/test_alternate_p7m_handling.js
blob: 2dfeabf7ff4a42b18e8f3bbae8d825c71009cfed (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
55
56
57
58
/* 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/. */

var { MessageGenerator, SyntheticMessageSet } = ChromeUtils.import(
  "resource://testing-common/mailnews/MessageGenerator.jsm"
);
var { MessageInjection } = ChromeUtils.import(
  "resource://testing-common/mailnews/MessageInjection.jsm"
);
var { MsgHdrToMimeMessage } = ChromeUtils.import(
  "resource:///modules/gloda/MimeMessage.jsm"
);

const P7M_ATTACHMENT = "dGhpcyBpcyBub3QgYSByZWFsIHMvbWltZSBwN20gZW50aXR5";
var messageGenerator = new MessageGenerator();
var messageInjection = new MessageInjection({ mode: "local" });
var inbox = messageInjection.getInboxFolder();
var msgHdr;

add_setup(async function () {
  // Create a message with a p7m attachment.
  let synMsg = messageGenerator.makeMessage({
    attachments: [
      {
        body: P7M_ATTACHMENT,
        filename: "test.txt.p7m",
        contentType: "application/pkcs7-mime",
        format: "",
        encoding: "base64",
      },
    ],
  });
  let synSet = new SyntheticMessageSet([synMsg]);
  await messageInjection.addSetsToFolders([inbox], [synSet]);
  msgHdr = synSet.getMsgHdr(0);
});

add_task(async function test_mime_p7m_external_foo_pref() {
  Services.prefs.setBoolPref("mailnews.p7m_external", true);

  await new Promise(resolve => {
    MsgHdrToMimeMessage(msgHdr, null, function (aMsgHdr, aMimeMsg) {
      Assert.ok(aMimeMsg.allUserAttachments.length == 1);
      resolve();
    });
  });
});
add_task(async function test_mime_p7m_external_all_external_pref() {
  Services.prefs.setBoolPref("mailnews.p7m_external", false);

  await new Promise(resolve => {
    MsgHdrToMimeMessage(msgHdr, null, function (aMsgHdr, aMimeMsg) {
      Assert.ok(aMimeMsg.allUserAttachments.length == 1);
      resolve();
    });
  });
});