mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/MultimediaViewer
synced 2024-12-11 15:56:14 +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
57 lines
2.2 KiB
JavaScript
57 lines
2.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/>.
|
|
*/
|
|
|
|
const { Thumbnail, ThumbnailWidth } = require( 'mmv' );
|
|
|
|
( function () {
|
|
QUnit.module( 'mmv.model', QUnit.newMwEnvironment() );
|
|
|
|
QUnit.test( 'Thumbnail constructor sense check', function ( assert ) {
|
|
const width = 23;
|
|
const height = 42;
|
|
const url = 'http://example.com/foo.jpg';
|
|
let thumbnail = new 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' );
|
|
|
|
assert.throws( function () {
|
|
thumbnail = new Thumbnail( url, width );
|
|
}, 'Exception is thrown when parameters are missing' );
|
|
} );
|
|
|
|
QUnit.test( 'ThumbnailWidth constructor sense check', function ( assert ) {
|
|
const cssWidth = 23;
|
|
const cssHeight = 29;
|
|
const screenWidth = 42;
|
|
const realWidth = 123;
|
|
let thumbnailWidth = new 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' );
|
|
|
|
assert.throws( function () {
|
|
thumbnailWidth = new ThumbnailWidth( cssWidth, screenWidth );
|
|
}, 'Exception is thrown when parameters are missing' );
|
|
} );
|
|
|
|
}() );
|