1
0
Fork 0
firefox/dom/notification/test/unit/test_notificationdb_bug1024090.js
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

59 lines
1.6 KiB
JavaScript

"use strict";
function run_test() {
do_get_profile();
run_next_test();
}
// For bug 1024090: test edge case of notificationstore.json
add_test(function test_bug1024090_purge() {
const NOTIFICATION_STORE_PATH = PathUtils.join(
PathUtils.profileDir,
"notificationstore"
);
let cleanup = IOUtils.remove(NOTIFICATION_STORE_PATH, { recursive: true });
cleanup
.then(
function onSuccess() {
ok(true, "Notification database cleaned.");
},
function onError(reason) {
ok(false, "Notification database error when cleaning: " + reason);
}
)
.then(function next() {
info("Cleanup steps completed: " + NOTIFICATION_STORE_PATH);
startNotificationDB();
run_next_test();
});
});
// Store one notification
add_test(function test_bug1024090_send_one() {
let requestID = 1;
let msgReply = "Notification:Save:Return:OK";
let msgHandler = function (message) {
equal(requestID, message.data.requestID, "Checking requestID");
};
addAndSend("Notification:Save", msgReply, msgHandler, {
origin: systemNotification.origin,
notification: systemNotification,
requestID,
});
});
// Get one notification, one exists
add_test(function test_bug1024090_get_one() {
let requestID = 2;
let msgReply = "Notification:GetAll:Return:OK";
let msgHandler = function (message) {
equal(requestID, message.data.requestID, "Checking requestID");
equal(1, message.data.notifications.length, "One notification stored");
};
addAndSend("Notification:GetAll", msgReply, msgHandler, {
origin: systemNotification.origin,
requestID,
});
});