function run_test() {
do_get_profile();
startNotificationDB();
run_next_test();
}
// Get one notification, none exists
add_test(function test_get_none() {
let requestID = 0;
let msgReply = "Notification:GetAll:Return:OK";
let msgHandler = function (message) { Assert.equal(requestID, message.data.requestID); Assert.equal(0, message.data.notifications.length);
};
// Store one notification
add_test(function test_send_one() {
let requestID = 1;
let msgReply = "Notification:Save:Return:OK";
let msgHandler = function (message) { Assert.equal(requestID, message.data.requestID);
};
// Get one notification, one exists
add_test(function test_get_one() {
let requestID = 2;
let msgReply = "Notification:GetAll:Return:OK";
let msgHandler = function (message) { Assert.equal(requestID, message.data.requestID); Assert.equal(1, message.data.notifications.length); // compare the content
compareNotification(systemNotification, message.data.notifications[0]);
};
// Delete one notification
add_test(function test_delete_one() {
let requestID = 3;
let msgReply = "Notification:Delete:Return:OK";
let msgHandler = function (message) { Assert.equal(requestID, message.data.requestID);
};
// Get one notification, none exists
add_test(function test_get_none_again() {
let requestID = 4;
let msgReply = "Notification:GetAll:Return:OK";
let msgHandler = function (message) { Assert.equal(requestID, message.data.requestID); Assert.equal(0, message.data.notifications.length);
};
// Delete one notification that do not exists anymore
add_test(function test_delete_one_nonexistent() {
let requestID = 5;
let msgReply = "Notification:Delete:Return:OK";
let msgHandler = function (message) { Assert.equal(requestID, message.data.requestID);
};
// Store two notifications from same origin with the same tag
add_test(function test_send_two_get_one() {
let requestID = 10;
let tag = "voicemail";
let systemNotification1 = getNotificationObject( "system", "{f271f9ee-3955-4c10-b1f2-af552fb270ee}",
tag
);
let systemNotification2 = getNotificationObject( "system", "{8ef9a628-f0f4-44b4-820d-c117573c33e3}",
tag
);
let msgGetReply = "Notification:GetAll:Return:OK";
let msgGetNotifHandler = {
receiveMessage(message) { if (message.name === msgGetReply) {
Services.cpmm.removeMessageListener(msgGetReply, msgGetNotifHandler);
let notifications = message.data.notifications; // same tag, so replaced Assert.equal(1, notifications.length); // compare the content
compareNotification(systemNotification2, notifications[0]);
run_next_test();
}
},
};
let msgSaveReply = "Notification:Save:Return:OK";
let msgSaveCalls = 0;
let msgSaveHandler = function (message) {
msgSaveCalls++; // Once both request have been sent, trigger getall if (msgSaveCalls === 2) {
Services.cpmm.sendAsyncMessage("Notification:GetAll", {
origin: systemNotification1.origin,
requestID: message.data.requestID + 2, // 12, 13
});
}
};
// Store two notifications from two origins with the same tag
add_test(function test_send_two_get_two() {
let requestID = 20;
let tag = "voicemail";
let systemNotification1 = systemNotification;
systemNotification1.tag = tag;
let calendarNotification2 = calendarNotification;
calendarNotification2.tag = tag;
let msgGetReply = "Notification:GetAll:Return:OK";
let msgGetCalls = 0;
let msgGetHandler = {
receiveMessage(message) { if (message.name === msgGetReply) {
msgGetCalls++;
let notifications = message.data.notifications;
// one notification per origin Assert.equal(1, notifications.length);
// first call should be system notification if (msgGetCalls === 1) {
compareNotification(systemNotification1, notifications[0]);
}
// second and last call should be calendar notification if (msgGetCalls === 2) {
Services.cpmm.removeMessageListener(msgGetReply, msgGetHandler);
compareNotification(calendarNotification2, notifications[0]);
run_next_test();
}
}
},
};
Services.cpmm.addMessageListener(msgGetReply, msgGetHandler);
let msgSaveReply = "Notification:Save:Return:OK";
let msgSaveCalls = 0;
let msgSaveHandler = {
receiveMessage(message) { if (message.name === msgSaveReply) {
msgSaveCalls++; if (msgSaveCalls === 2) {
Services.cpmm.removeMessageListener(msgSaveReply, msgSaveHandler);
// Trigger getall for each origin
Services.cpmm.sendAsyncMessage("Notification:GetAll", {
origin: systemNotification1.origin,
requestID: message.data.requestID + 1, // 22
});
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.