mirror of
https://github.com/classilla/tenfourfox.git
synced 2024-11-04 10:05:51 +00:00
62 lines
2.2 KiB
JavaScript
62 lines
2.2 KiB
JavaScript
/* Any copyright is dedicated to the Public Domain.
|
|
* http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
|
|
const MARIONETTE_TIMEOUT = 60000;
|
|
const MARIONETTE_HEAD_JS = 'head.js';
|
|
|
|
// TODO: Add tests for store/discard once they are implemented
|
|
// See RadioInterfaceLayer.js / Bug #768441
|
|
|
|
function checkEventStatus(aEvent, aServiceId, aHasMessages, aMessageCount,
|
|
aReturnNumber, aReturnMessage) {
|
|
let status = aEvent.status;
|
|
ok(true, "status = " + JSON.stringify(status));
|
|
ok(status instanceof MozVoicemailStatus);
|
|
|
|
checkVoicemailStatus(status, 0, aHasMessages, aMessageCount, aReturnNumber,
|
|
aReturnMessage);
|
|
|
|
compareVoicemailStatus(voicemail.getStatus(0), status);
|
|
compareVoicemailStatus(voicemail.getStatus(), status);
|
|
}
|
|
|
|
function testLevel2Discard(aActive) {
|
|
log(" Active: " + aActive);
|
|
|
|
let sender = "+15125551235";
|
|
let body = "1 new voicemail";
|
|
let pdu = PDUBuilder.buildLevel2DiscardMwi(aActive, sender, body);
|
|
return sendIndicatorPDUAndWait(pdu)
|
|
.then((aResults) => checkEventStatus(aResults[0], 0, aActive,
|
|
(aActive ? -1 : 0), sender, body));
|
|
}
|
|
|
|
// Tests for Level 3 MWI with a message count in the User Data Header
|
|
function testLevel3Discard(aMessageCount, aBody) {
|
|
log(" Message Count: " + aMessageCount + ", Body: " + aBody);
|
|
|
|
let sender = "+15125551236";
|
|
let pdu = PDUBuilder.buildLevel3DiscardMwi(aMessageCount, sender, aBody);
|
|
return sendIndicatorPDUAndWait(pdu)
|
|
.then((aResults) => checkEventStatus(aResults[0], 0, !!aMessageCount,
|
|
aMessageCount, sender, aBody));
|
|
}
|
|
|
|
startTestCommon(function() {
|
|
return Promise.resolve()
|
|
|
|
.then(() => log("Testing Message Waiting Indication Group"))
|
|
// Level 2 discarded active/inactive MWI.
|
|
.then(() => log(" Discard Message"))
|
|
.then(() => testLevel2Discard(true))
|
|
.then(() => testLevel2Discard(false))
|
|
|
|
.then(() => log("Testing Special SMS Message Indication"))
|
|
.then(() => log(" Discard Message"))
|
|
// Level 3 discarded active/inactive MWI.
|
|
.then(() => testLevel3Discard(3, "3 voicemails"))
|
|
.then(() => testLevel3Discard(0, "0 voicemail"))
|
|
.then(() => testLevel3Discard(3, null))
|
|
.then(() => testLevel3Discard(0, null));
|
|
});
|