mirror of
https://github.com/classilla/tenfourfox.git
synced 2024-11-04 10:05:51 +00:00
73 lines
2.2 KiB
JavaScript
73 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({
|
|
requestTimeout: 10000,
|
|
retryBaseInterval: 150
|
|
});
|
|
run_next_test();
|
|
}
|
|
|
|
add_task(function* test_reconnect_retry() {
|
|
let db = PushServiceWebSocket.newPushDB();
|
|
do_register_cleanup(() => {return db.drop().then(_ => db.close());});
|
|
|
|
let registers = 0;
|
|
let channelID;
|
|
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: '083e6c17-1063-4677-8638-ab705aebebc2'
|
|
}));
|
|
},
|
|
onRegister(request) {
|
|
registers++;
|
|
if (registers == 1) {
|
|
channelID = request.channelID;
|
|
this.serverClose();
|
|
return;
|
|
}
|
|
if (registers == 2) {
|
|
equal(request.channelID, channelID,
|
|
'Should retry registers after reconnect');
|
|
}
|
|
this.serverSendMsg(JSON.stringify({
|
|
messageType: 'register',
|
|
channelID: request.channelID,
|
|
pushEndpoint: 'https://example.org/push/' + request.channelID,
|
|
status: 200,
|
|
}));
|
|
}
|
|
});
|
|
}
|
|
});
|
|
|
|
let registration = yield PushNotificationService.register(
|
|
'https://example.com/page/1',
|
|
ChromeUtils.originAttributesToSuffix({ appId: Ci.nsIScriptSecurityManager.NO_APP_ID, inBrowser: false })
|
|
);
|
|
let retryEndpoint = 'https://example.org/push/' + channelID;
|
|
equal(registration.pushEndpoint, retryEndpoint, 'Wrong endpoint for retried request');
|
|
|
|
registration = yield PushNotificationService.register(
|
|
'https://example.com/page/2',
|
|
ChromeUtils.originAttributesToSuffix({ appId: Ci.nsIScriptSecurityManager.NO_APP_ID, inBrowser: false })
|
|
);
|
|
notEqual(registration.pushEndpoint, retryEndpoint, 'Wrong endpoint for new request')
|
|
|
|
equal(registers, 3, 'Wrong registration count');
|
|
});
|