mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/MultimediaViewer
synced 2024-11-17 04:43:18 +00:00
caa624d711
Change-Id: I538f7734e1c06a179ee98a5cd843ccee4d91349f Mingle: https://wikimedia.mingle.thoughtworks.com/projects/multimedia/cards/835
89 lines
3.2 KiB
JavaScript
89 lines
3.2 KiB
JavaScript
/*
|
|
* This file is part of the MediaWiki extension MultimediaViewer.
|
|
*
|
|
* MultimediaViewer is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* MultimediaViewer is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with MultimediaViewer. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
( function ( mw ) {
|
|
QUnit.module( 'mmv.model', QUnit.newMwEnvironment() );
|
|
|
|
QUnit.test( 'Thumbnail constructor sanity check', 4, function ( assert ) {
|
|
var width = 23,
|
|
height = 42,
|
|
url = 'http://example.com/foo.jpg',
|
|
thumbnail = new mw.mmv.model.Thumbnail( url, width, height );
|
|
|
|
assert.strictEqual( thumbnail.url, url, 'Url is set correctly' );
|
|
assert.strictEqual( thumbnail.width, width, 'Width is set correctly' );
|
|
assert.strictEqual( thumbnail.height, height, 'Height is set correctly' );
|
|
|
|
try {
|
|
thumbnail = new mw.mmv.model.Thumbnail( url, width );
|
|
} catch (e) {
|
|
assert.ok( e, 'Exception is thrown when parameters are missing');
|
|
}
|
|
} );
|
|
|
|
QUnit.test( 'ThumbnailWidth constructor sanity check', 5, function ( assert ) {
|
|
var cssWidth = 23,
|
|
cssHeight = 29,
|
|
screenWidth = 42,
|
|
realWidth = 123,
|
|
thumbnailWidth = new mw.mmv.model.ThumbnailWidth(
|
|
cssWidth, cssHeight, screenWidth, realWidth );
|
|
|
|
assert.strictEqual( thumbnailWidth.cssWidth, cssWidth, 'Width is set correctly' );
|
|
assert.strictEqual( thumbnailWidth.cssHeight, cssHeight, 'Height is set correctly' );
|
|
assert.strictEqual( thumbnailWidth.screen, screenWidth, 'Screen width is set correctly' );
|
|
assert.strictEqual( thumbnailWidth.real, realWidth, 'Real width is set correctly' );
|
|
|
|
try {
|
|
thumbnailWidth = new mw.mmv.model.ThumbnailWidth( cssWidth, screenWidth );
|
|
} catch (e) {
|
|
assert.ok( e, 'Exception is thrown when parameters are missing');
|
|
}
|
|
} );
|
|
|
|
QUnit.test( 'User constructor sanity check', 3, function ( assert ) {
|
|
var username = 'John Doe',
|
|
gender = 'male',
|
|
user = new mw.mmv.model.User( username, gender );
|
|
|
|
assert.strictEqual( user.username, username, 'Username is set correctly' );
|
|
assert.strictEqual( user.gender , gender , 'Gender is set correctly' );
|
|
|
|
try {
|
|
user = new mw.mmv.model.User();
|
|
} catch (e) {
|
|
assert.ok( e, 'Exception is thrown when parameters are missing');
|
|
}
|
|
} );
|
|
|
|
QUnit.test( 'User constructor gender validation', 4, function ( assert ) {
|
|
var user,
|
|
username = 'John Doe';
|
|
|
|
assert.ok( new mw.mmv.model.User( username, mw.mmv.model.User.Gender.MALE ), 'Male gender is valid' );
|
|
assert.ok( new mw.mmv.model.User( username, mw.mmv.model.User.Gender.FEMALE ), 'Female gender is valid' );
|
|
assert.ok( new mw.mmv.model.User( username, mw.mmv.model.User.Gender.UNKNOWN ), 'Unknown gender is valid' );
|
|
|
|
try {
|
|
user = new mw.mmv.model.User( username, '???' );
|
|
} catch (e) {
|
|
assert.ok( e, 'Exception is thrown when gender parameter is not understood');
|
|
}
|
|
} );
|
|
|
|
}( mediaWiki ) );
|