mediawiki-extensions-Popups/tests/node-qunit/previewBehavior.test.js
WMDE-Fisch a3f3cf9e3f build: Update eslint 0.26.0 and apply fixes
Mainly auto fixes but also getting rid of some straight forward lint
warnings to reduce the wall of issues a bit when running the tests.

Also removing some rule exceptions that seem to got more relaxed
upstream.

Change-Id: Icb4d73374583675be74517e6df6508314d61e8c2
2024-01-12 13:50:19 -05:00

115 lines
2.7 KiB
JavaScript

import createPreviewBehavior from '../../src/previewBehavior';
import { createStubUser } from './stubs';
QUnit.module( 'ext.popups.preview.settingsBehavior', {
beforeEach() {
function newFromText( title ) {
return {
getUrl() {
return `url/${ title }`;
}
};
}
mw.Title = { newFromText };
},
afterEach() {
mw.Title = null;
}
} );
QUnit.test( 'it should set the settingsUrl', function ( assert ) {
const user = createStubUser( /* isAnon = */ false ),
actions = {};
const behavior = createPreviewBehavior( user, actions );
assert.deepEqual(
behavior.settingsUrl,
'url/Special:Preferences#mw-prefsection-rendering'
);
} );
QUnit.test( 'it shouldn\'t set the settingsUrl if the user is logged out', function ( assert ) {
const user = createStubUser( /* isAnon = */ true ),
actions = {},
behavior = createPreviewBehavior( user, actions );
assert.strictEqual(
behavior.settingsUrl,
undefined,
'No settings URL is set.'
);
} );
QUnit.test( 'it shouldn\'t set a showSettings handler if the user is logged in', function ( assert ) {
const
user = createStubUser( /* isAnon = */ false ),
event = {
preventDefault: this.sandbox.spy()
},
actions = {
showSettings: () => assert.true( false, 'No show settings handler is set.' )
},
behavior = createPreviewBehavior( user, actions );
behavior.showSettings( event );
assert.true( true );
} );
QUnit.test( 'it should set a showSettings handler if the user is logged out', function ( assert ) {
const user = createStubUser( /* isAnon = */ true ),
event = {
preventDefault: this.sandbox.spy()
},
actions = {
showSettings: this.sandbox.spy()
},
behavior = createPreviewBehavior( user, actions );
behavior.showSettings( event );
assert.true(
event.preventDefault.called,
'It should prevent the default action of the event.'
);
assert.true(
actions.showSettings.called,
'It should dispatch the SETTINGS_SHOW action.'
);
} );
QUnit.test( 'it should mix in default actions', function ( assert ) {
const user = createStubUser( /* isAnon = */ true ),
actions = {};
actions.previewDwell = () => {};
actions.abandon = () => {};
actions.previewShow = () => {};
actions.linkClick = () => {};
const behavior = createPreviewBehavior( user, actions );
assert.strictEqual(
behavior.previewDwell,
actions.previewDwell,
'Preview dwelled action is mixed.'
);
assert.strictEqual(
behavior.previewAbandon,
actions.abandon,
'Preview action is mixed.'
);
assert.strictEqual(
behavior.previewShow,
actions.previewShow,
'Preview shown action is mixed.'
);
assert.strictEqual(
behavior.click,
actions.linkClick,
'Link click action is mixed.'
);
} );