2014-01-10 21:11:21 +00:00
|
|
|
/*
|
|
|
|
* 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/>.
|
|
|
|
*/
|
|
|
|
|
2023-05-20 08:30:52 +00:00
|
|
|
const { Thumbnail, ThumbnailWidth } = require( 'mmv' );
|
|
|
|
|
2018-11-12 16:33:24 +00:00
|
|
|
( function () {
|
2014-01-23 21:44:26 +00:00
|
|
|
QUnit.module( 'mmv.model', QUnit.newMwEnvironment() );
|
2014-01-10 21:11:21 +00:00
|
|
|
|
2021-12-10 00:43:28 +00:00
|
|
|
QUnit.test( 'Thumbnail constructor sense check', function ( assert ) {
|
2023-10-24 09:53:23 +00:00
|
|
|
const width = 23;
|
|
|
|
const height = 42;
|
|
|
|
const url = 'http://example.com/foo.jpg';
|
|
|
|
let thumbnail = new Thumbnail( url, width, height );
|
2014-02-05 01:06:10 +00:00
|
|
|
|
|
|
|
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' );
|
|
|
|
|
2022-05-20 00:18:43 +00:00
|
|
|
assert.throws( function () {
|
2023-05-20 08:30:52 +00:00
|
|
|
thumbnail = new Thumbnail( url, width );
|
2022-05-20 00:18:43 +00:00
|
|
|
}, 'Exception is thrown when parameters are missing' );
|
2014-02-05 01:06:10 +00:00
|
|
|
} );
|
2014-02-06 23:18:47 +00:00
|
|
|
|
2021-12-10 00:43:28 +00:00
|
|
|
QUnit.test( 'ThumbnailWidth constructor sense check', function ( assert ) {
|
2023-10-24 09:53:23 +00:00
|
|
|
const cssWidth = 23;
|
|
|
|
const cssHeight = 29;
|
|
|
|
const screenWidth = 42;
|
|
|
|
const realWidth = 123;
|
|
|
|
let thumbnailWidth = new ThumbnailWidth(
|
|
|
|
cssWidth, cssHeight, screenWidth, realWidth );
|
2014-02-06 23:18:47 +00:00
|
|
|
|
2014-03-04 01:58:27 +00:00
|
|
|
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' );
|
2014-02-06 23:18:47 +00:00
|
|
|
|
2022-05-20 00:18:43 +00:00
|
|
|
assert.throws( function () {
|
2023-05-20 08:30:52 +00:00
|
|
|
thumbnailWidth = new ThumbnailWidth( cssWidth, screenWidth );
|
2022-05-20 00:18:43 +00:00
|
|
|
}, 'Exception is thrown when parameters are missing' );
|
2014-02-06 23:18:47 +00:00
|
|
|
} );
|
2014-02-13 09:52:40 +00:00
|
|
|
|
2018-11-12 16:33:24 +00:00
|
|
|
}() );
|