Revision control

Copy as Markdown

Other Tools

/* Any copyright is dedicated to the Public Domain.
/**
* Test telemetry related to mails sent.
*/
let server;
const kIdentityMail = "identity@foo.invalid";
const kSender = "from@foo.invalid";
const kTo = "to@foo.invalid";
const NUM_MAILS = 3;
const deliveryListener = {
count: 0,
onStartRequest() {},
onStopRequest() {
if (++this.count == NUM_MAILS) {
Assert.equal(
Glean.compose.mailsSent.testGetValue(),
NUM_MAILS,
"mails_sent must be correct"
);
}
},
};
/**
* Check that we're counting mails sent.
*/
add_task(async function test_mails_sent() {
Services.fog.testResetFOG();
server = setupServerDaemon();
registerCleanupFunction(() => {
server.stop();
});
// Test file
const testFile = do_get_file("data/message1.eml");
// Ensure we have at least one mail account
localAccountUtils.loadLocalMailAccount();
// Handle the server in a try/catch/finally loop so that we always will stop
// the server if something fails.
try {
// Start the fake SMTP server
server.start();
const smtpServer = getBasicSmtpServer(server.port);
const identity = getSmtpIdentity(kIdentityMail, smtpServer);
const messageId = Cc["@mozilla.org/messengercompose/computils;1"]
.createInstance(Ci.nsIMsgCompUtils)
.msgGenerateMessageId(identity, null);
for (let i = 0; i < NUM_MAILS; i++) {
smtpServer.sendMailMessage(
testFile,
MailServices.headerParser.parseEncodedHeaderW(kTo),
[],
identity,
kSender,
null,
null,
false,
messageId,
deliveryListener
);
}
} catch (e) {
do_throw(e);
}
});