mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-07 20:17:37 +00:00
97018538cd
--HG-- extra : commitid : 8CPpVl9sAYo extra : rebase_source : d4e6330e3717c89f39686c620ae0aeb90e2156c8
87 lines
2.5 KiB
JavaScript
87 lines
2.5 KiB
JavaScript
/* Any copyright is dedicated to the Public Domain.
|
|
http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
|
|
'use strict';
|
|
|
|
const {PushDB, PushService, PushServiceWebSocket} = serviceExports;
|
|
|
|
function run_test() {
|
|
do_get_profile();
|
|
setPrefs();
|
|
disableServiceWorkerEvents(
|
|
'https://example.com/1',
|
|
'https://example.com/2'
|
|
);
|
|
run_next_test();
|
|
}
|
|
|
|
// Should acknowledge duplicate notifications, but not notify apps.
|
|
add_task(function* test_notification_duplicate() {
|
|
let db = PushServiceWebSocket.newPushDB();
|
|
do_register_cleanup(() => {return db.drop().then(_ => db.close());});
|
|
let records = [{
|
|
channelID: '8d2d9400-3597-4c5a-8a38-c546b0043bcc',
|
|
pushEndpoint: 'https://example.org/update/1',
|
|
scope: 'https://example.com/1',
|
|
originAttributes: "",
|
|
version: 2,
|
|
quota: Infinity,
|
|
}, {
|
|
channelID: '27d1e393-03ef-4c72-a5e6-9e890dfccad0',
|
|
pushEndpoint: 'https://example.org/update/2',
|
|
scope: 'https://example.com/2',
|
|
originAttributes: "",
|
|
version: 2,
|
|
quota: Infinity,
|
|
}];
|
|
for (let record of records) {
|
|
yield db.put(record);
|
|
}
|
|
|
|
let notifyPromise = promiseObserverNotification('push-notification');
|
|
|
|
let acks = 0;
|
|
let ackDefer = Promise.defer();
|
|
let ackDone = after(2, ackDefer.resolve);
|
|
PushService.init({
|
|
serverURI: "wss://push.example.org/",
|
|
networkInfo: new MockDesktopNetworkInfo(),
|
|
db,
|
|
makeWebSocket(uri) {
|
|
return new MockWebSocket(uri, {
|
|
onHello(request) {
|
|
this.serverSendMsg(JSON.stringify({
|
|
messageType: 'hello',
|
|
status: 200,
|
|
uaid: '1500e7d9-8cbe-4ee6-98da-7fa5d6a39852'
|
|
}));
|
|
this.serverSendMsg(JSON.stringify({
|
|
messageType: 'notification',
|
|
updates: [{
|
|
channelID: '8d2d9400-3597-4c5a-8a38-c546b0043bcc',
|
|
version: 2
|
|
}, {
|
|
channelID: '27d1e393-03ef-4c72-a5e6-9e890dfccad0',
|
|
version: 3
|
|
}]
|
|
}));
|
|
},
|
|
onACK: ackDone
|
|
});
|
|
}
|
|
});
|
|
|
|
yield waitForPromise(notifyPromise, DEFAULT_TIMEOUT,
|
|
'Timed out waiting for notifications');
|
|
yield waitForPromise(ackDefer.promise, DEFAULT_TIMEOUT,
|
|
'Timed out waiting for stale acknowledgement');
|
|
|
|
let staleRecord = yield db.getByKeyID(
|
|
'8d2d9400-3597-4c5a-8a38-c546b0043bcc');
|
|
strictEqual(staleRecord.version, 2, 'Wrong stale record version');
|
|
|
|
let updatedRecord = yield db.getByKeyID(
|
|
'27d1e393-03ef-4c72-a5e6-9e890dfccad0');
|
|
strictEqual(updatedRecord.version, 3, 'Wrong updated record version');
|
|
});
|