mirror of
https://github.com/classilla/tenfourfox.git
synced 2024-11-04 10:05:51 +00:00
65 lines
1.8 KiB
JavaScript
65 lines
1.8 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: 1000,
|
|
retryBaseInterval: 150
|
|
});
|
|
disableServiceWorkerEvents(
|
|
'https://example.com/page/1'
|
|
);
|
|
run_next_test();
|
|
}
|
|
|
|
add_task(function* test_register_request_queue() {
|
|
let db = PushServiceWebSocket.newPushDB();
|
|
do_register_cleanup(() => {return db.drop().then(_ => db.close());});
|
|
|
|
let onHello;
|
|
let helloPromise = new Promise(resolve => onHello = after(2, function onHello(request) {
|
|
this.serverSendMsg(JSON.stringify({
|
|
messageType: 'hello',
|
|
status: 200,
|
|
uaid: '54b08a9e-59c6-4ed7-bb54-f4fd60d6f606'
|
|
}));
|
|
resolve();
|
|
}));
|
|
|
|
PushService.init({
|
|
serverURI: "wss://push.example.org/",
|
|
networkInfo: new MockDesktopNetworkInfo(),
|
|
db,
|
|
makeWebSocket(uri) {
|
|
return new MockWebSocket(uri, {
|
|
onHello,
|
|
onRegister() {
|
|
ok(false, 'Should cancel timed-out requests');
|
|
}
|
|
});
|
|
}
|
|
});
|
|
|
|
let firstRegister = PushNotificationService.register(
|
|
'https://example.com/page/1',
|
|
ChromeUtils.originAttributesToSuffix({ appId: Ci.nsIScriptSecurityManager.NO_APP_ID, inBrowser: false })
|
|
);
|
|
let secondRegister = PushNotificationService.register(
|
|
'https://example.com/page/1',
|
|
ChromeUtils.originAttributesToSuffix({ appId: Ci.nsIScriptSecurityManager.NO_APP_ID, inBrowser: false })
|
|
);
|
|
|
|
yield waitForPromise(Promise.all([
|
|
rejects(firstRegister, 'Should time out the first request'),
|
|
rejects(secondRegister, 'Should time out the second request')
|
|
]), DEFAULT_TIMEOUT, 'Queued requests did not time out');
|
|
|
|
yield waitForPromise(helloPromise, DEFAULT_TIMEOUT,
|
|
'Timed out waiting for reconnect');
|
|
});
|