mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/MultimediaViewer
synced 2024-12-01 03:06:17 +00:00
3481080251
Use the eslint rule "no-var": "error" in resources/.eslintrc.json and in .eslintrc.json to require the use of `const` and `let` instead of `var`. Bug: T337102 Change-Id: I3b3d6d426966a97c13f62494443f62bd5b790920
45 lines
2.1 KiB
JavaScript
45 lines
2.1 KiB
JavaScript
const { Description } = require( 'mmv' );
|
|
|
|
( function () {
|
|
QUnit.module( 'mmv.ui.description', QUnit.newMwEnvironment() );
|
|
|
|
QUnit.test( 'Sense test, object creation and UI construction', function ( assert ) {
|
|
const description = new Description( $( '#qunit-fixture' ) );
|
|
|
|
assert.true( description instanceof Description, 'Image description UI element is created' );
|
|
assert.strictEqual( description.$imageDescDiv.length, 1, 'Image description div is created' );
|
|
assert.strictEqual( description.$imageDesc.length, 1, 'Image description element is created' );
|
|
} );
|
|
|
|
QUnit.test( 'Setting data in different combinations works well', function ( assert ) {
|
|
const description = new Description( $( '#qunit-fixture' ) );
|
|
|
|
description.set( null, null );
|
|
assert.strictEqual( description.$imageDescDiv.hasClass( 'empty' ), true,
|
|
'Image description div is marked empty when neither description nor caption is available' );
|
|
|
|
description.set( null, 'foo' );
|
|
assert.strictEqual( description.$imageDescDiv.hasClass( 'empty' ), true,
|
|
'Image description div is marked empty when there is no description' );
|
|
|
|
description.set( 'blah', null );
|
|
assert.strictEqual( description.$imageDescDiv.hasClass( 'empty' ), true,
|
|
'Image description div is marked empty when there is no caption (description will be shown in title)' );
|
|
|
|
description.set( 'foo', 'bar' );
|
|
assert.strictEqual( description.$imageDescDiv.hasClass( 'empty' ), false,
|
|
'Image description div is not marked empty when both description and caption are available' );
|
|
assert.strictEqual( description.$imageDesc.text(), 'foo',
|
|
'Image description text is set correctly, caption is ignored' );
|
|
} );
|
|
|
|
QUnit.test( 'Emptying data works as expected', function ( assert ) {
|
|
const description = new Description( $( '#qunit-fixture' ) );
|
|
|
|
description.set( 'foo', 'bar' );
|
|
description.empty();
|
|
assert.strictEqual( description.$imageDescDiv.hasClass( 'empty' ), true, 'Image description div is marked empty when emptied' );
|
|
assert.strictEqual( description.$imageDesc.text(), '', 'Image description text is emptied correctly' );
|
|
} );
|
|
}() );
|