mediawiki-extensions-Popups/tests/node-qunit/previewBehavior.test.js
Thiemo Kreuz 6d29d08de3 Unify /* global … */ annotations for ESLint
These are annotations for ESLint as described at:
https://eslint.org/docs/user-guide/configuring#specifying-globals

I'm not sure where the `…: false` comes from. I assume it is a mistake
and does not have an effect.

I tried to move these annotations closer to the line they are about in
case there is only one line. And move it to the top when there is more
than one line using the global.

Change-Id: I4bd112c5fddd8a97d829a9b91707b8eb7cd7a332
2019-02-20 14:29:24 -07:00

113 lines
2.6 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 }`; }
};
}
mediaWiki.Title = { newFromText };
},
afterEach() {
mediaWiki.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.ok( false, 'No show settings handler is set.' )
},
behavior = createPreviewBehavior( user, actions );
behavior.showSettings( event );
assert.ok( 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.ok(
event.preventDefault.called,
'It should prevent the default action of the event.'
);
assert.ok(
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.'
);
} );