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
76 lines
2.2 KiB
JavaScript
76 lines
2.2 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.net/case'
|
|
);
|
|
run_next_test();
|
|
}
|
|
|
|
add_task(function* test_notification_version_string() {
|
|
let db = PushServiceWebSocket.newPushDB();
|
|
do_register_cleanup(() => {return db.drop().then(_ => db.close());});
|
|
yield db.put({
|
|
channelID: '6ff97d56-d0c0-43bc-8f5b-61b855e1d93b',
|
|
pushEndpoint: 'https://example.org/updates/1',
|
|
scope: 'https://example.com/page/1',
|
|
originAttributes: '',
|
|
version: 2,
|
|
quota: Infinity,
|
|
});
|
|
|
|
let notifyPromise = promiseObserverNotification('push-notification');
|
|
|
|
let ackDefer = Promise.defer();
|
|
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: 'ba31ac13-88d4-4984-8e6b-8731315a7cf8'
|
|
}));
|
|
this.serverSendMsg(JSON.stringify({
|
|
messageType: 'notification',
|
|
updates: [{
|
|
channelID: '6ff97d56-d0c0-43bc-8f5b-61b855e1d93b',
|
|
version: '4'
|
|
}]
|
|
}));
|
|
},
|
|
onACK: ackDefer.resolve
|
|
});
|
|
}
|
|
});
|
|
|
|
let {subject: notification, data: scope} = yield waitForPromise(
|
|
notifyPromise,
|
|
DEFAULT_TIMEOUT,
|
|
'Timed out waiting for string notification'
|
|
);
|
|
let message = notification.QueryInterface(Ci.nsIPushObserverNotification);
|
|
equal(scope, 'https://example.com/page/1', 'Wrong scope');
|
|
equal(message.pushEndpoint, 'https://example.org/updates/1',
|
|
'Wrong push endpoint');
|
|
strictEqual(message.version, 4, 'Wrong version');
|
|
|
|
yield waitForPromise(ackDefer.promise, DEFAULT_TIMEOUT,
|
|
'Timed out waiting for string acknowledgement');
|
|
|
|
let storeRecord = yield db.getByKeyID(
|
|
'6ff97d56-d0c0-43bc-8f5b-61b855e1d93b');
|
|
strictEqual(storeRecord.version, 4, 'Wrong record version');
|
|
equal(storeRecord.quota, Infinity, 'Wrong quota');
|
|
});
|