mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/MultimediaViewer
synced 2024-12-04 20:48:22 +00:00
5bf1466e7f
* Removed deprecated testCount, which is no longer supported in this way. It's only useful when wanting to explicitly expect 0 assertions (normally considered an error). * Replaced use of testCount = 0, with assert.expect( 0 ). Change-Id: I8fe82032d3af2a1ad2ed7febdb90a95d56dd3fc4
43 lines
2 KiB
JavaScript
43 lines
2 KiB
JavaScript
( function ( mw, $ ) {
|
|
QUnit.module( 'mmv.ui.description', QUnit.newMwEnvironment() );
|
|
|
|
QUnit.test( 'Sanity test, object creation and UI construction', function ( assert ) {
|
|
var description = new mw.mmv.ui.Description( $( '#qunit-fixture' ) );
|
|
|
|
assert.ok( 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 ) {
|
|
var description = new mw.mmv.ui.Description( $( '#qunit-fixture' ) );
|
|
|
|
description.set( null, null );
|
|
assert.ok( description.$imageDescDiv.hasClass( 'empty' ),
|
|
'Image description div is marked empty when neither description nor caption is available' );
|
|
|
|
description.set( null, 'foo' );
|
|
assert.ok( description.$imageDescDiv.hasClass( 'empty' ),
|
|
'Image description div is marked empty when there is no description' );
|
|
|
|
description.set( 'blah', null );
|
|
assert.ok( description.$imageDescDiv.hasClass( 'empty' ),
|
|
'Image description div is marked empty when there is no caption (description will be shown in title)' );
|
|
|
|
description.set( 'foo', 'bar' );
|
|
assert.ok( !description.$imageDescDiv.hasClass( 'empty' ),
|
|
'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 ) {
|
|
var description = new mw.mmv.ui.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' );
|
|
} );
|
|
}( mediaWiki, jQuery ) );
|