2021-02-01 20:23:14 +00:00
|
|
|
'use strict';
|
|
|
|
|
2020-11-23 13:21:51 -05:00
|
|
|
describe('Automatic pad reload on Force Reconnect message', function () {
|
|
|
|
let padId, $originalPadFrame;
|
2020-05-29 18:27:16 +01:00
|
|
|
|
2021-03-31 21:14:02 -04:00
|
|
|
beforeEach(async function () {
|
|
|
|
padId = await helper.aNewPad();
|
2020-05-29 18:27:16 +01:00
|
|
|
|
2021-03-31 21:14:02 -04:00
|
|
|
// enable userdup error to have timer to force reconnect
|
|
|
|
const $errorMessageModal = helper.padChrome$('#connectivity .userdup');
|
|
|
|
$errorMessageModal.addClass('with_reconnect_timer');
|
2020-05-29 18:27:16 +01:00
|
|
|
|
2021-03-31 21:14:02 -04:00
|
|
|
// make sure there's a timeout set, otherwise automatic reconnect won't be enabled
|
|
|
|
helper.padChrome$.window.clientVars.automaticReconnectionTimeout = 2;
|
2020-05-29 18:27:16 +01:00
|
|
|
|
2021-03-31 21:14:02 -04:00
|
|
|
// open same pad on another iframe, to force userdup error
|
|
|
|
const $otherIframeWithSamePad = $(`<iframe src="/p/${padId}" style="height: 1px;"></iframe>`);
|
|
|
|
$originalPadFrame = $('#iframe-container iframe');
|
|
|
|
$otherIframeWithSamePad.insertAfter($originalPadFrame);
|
2020-05-29 18:27:16 +01:00
|
|
|
|
2021-03-31 21:14:02 -04:00
|
|
|
// wait for modal to be displayed
|
|
|
|
await helper.waitForPromise(() => $errorMessageModal.is(':visible'), 50000);
|
2020-05-29 18:27:16 +01:00
|
|
|
});
|
|
|
|
|
2021-03-31 21:14:02 -04:00
|
|
|
it('displays a count down timer to automatically reconnect', async function () {
|
2020-11-23 13:21:51 -05:00
|
|
|
const $errorMessageModal = helper.padChrome$('#connectivity .userdup');
|
|
|
|
const $countDownTimer = $errorMessageModal.find('.reconnecttimer');
|
2020-05-29 18:27:16 +01:00
|
|
|
|
|
|
|
expect($countDownTimer.is(':visible')).to.be(true);
|
|
|
|
});
|
|
|
|
|
2020-11-23 13:21:51 -05:00
|
|
|
context('and user clicks on Cancel', function () {
|
2021-02-07 06:39:03 +00:00
|
|
|
beforeEach(async function () {
|
2020-11-23 13:21:51 -05:00
|
|
|
const $errorMessageModal = helper.padChrome$('#connectivity .userdup');
|
2020-05-29 18:27:16 +01:00
|
|
|
$errorMessageModal.find('#cancelreconnect').click();
|
2021-02-07 06:39:03 +00:00
|
|
|
await helper.waitForPromise(
|
|
|
|
() => helper.padChrome$('#connectivity .userdup').is(':visible') === true);
|
2020-05-29 18:27:16 +01:00
|
|
|
});
|
|
|
|
|
2021-03-31 21:14:02 -04:00
|
|
|
it('does not show Cancel button nor timer anymore', async function () {
|
2020-11-23 13:21:51 -05:00
|
|
|
const $errorMessageModal = helper.padChrome$('#connectivity .userdup');
|
|
|
|
const $countDownTimer = $errorMessageModal.find('.reconnecttimer');
|
|
|
|
const $cancelButton = $errorMessageModal.find('#cancelreconnect');
|
2020-05-29 18:27:16 +01:00
|
|
|
|
|
|
|
expect($countDownTimer.is(':visible')).to.be(false);
|
|
|
|
expect($cancelButton.is(':visible')).to.be(false);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2020-11-23 13:21:51 -05:00
|
|
|
context('and user does not click on Cancel until timer expires', function () {
|
2021-03-31 21:14:02 -04:00
|
|
|
it('reloads the pad', async function () {
|
2021-02-07 06:39:03 +00:00
|
|
|
this.timeout(10000);
|
2021-03-31 21:14:02 -04:00
|
|
|
await new Promise((resolve) => $originalPadFrame.one('load', resolve));
|
2020-05-29 18:27:16 +01:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|