/* * 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 . */ const { ThumbnailInfo } = require( 'mmv' ); ( function () { QUnit.module( 'mmv.provider.ThumbnailInfo', QUnit.newMwEnvironment( { // mw.Title relies on these three config vars // Restore them after each test run config: { wgFormattedNamespaces: { '-2': 'Media', '-1': 'Special', 0: '', 1: 'Talk', 2: 'User', 3: 'User talk', 4: 'Wikipedia', 5: 'Wikipedia talk', 6: 'File', 7: 'File talk', 8: 'MediaWiki', 9: 'MediaWiki talk', 10: 'Template', 11: 'Template talk', 12: 'Help', 13: 'Help talk', 14: 'Category', 15: 'Category talk', // testing custom / localized namespace 100: 'Penguins' }, wgNamespaceIds: { /* eslint-disable camelcase */ media: -2, special: -1, '': 0, talk: 1, user: 2, user_talk: 3, wikipedia: 4, wikipedia_talk: 5, file: 6, file_talk: 7, mediawiki: 8, mediawiki_talk: 9, template: 10, template_talk: 11, help: 12, help_talk: 13, category: 14, category_talk: 15, image: 6, image_talk: 7, project: 4, project_talk: 5, // Testing custom namespaces and aliases penguins: 100, antarctic_waterfowl: 100 /* eslint-enable camelcase */ }, wgCaseSensitiveNamespaces: [] } } ) ); QUnit.test( 'ThumbnailInfo constructor sense check', function ( assert ) { const api = { get: function () {} }; const thumbnailInfoProvider = new ThumbnailInfo( api ); assert.true( thumbnailInfoProvider instanceof ThumbnailInfo ); } ); QUnit.test( 'ThumbnailInfo get test', function ( assert ) { let apiCallCount = 0; const api = { get: function () { apiCallCount++; return $.Deferred().resolve( { query: { pages: [ { ns: 6, title: 'File:Stuff.jpg', missing: true, imagerepository: 'shared', imageinfo: [ { thumburl: 'https://upload.wikimedia.org/wikipedia/commons/thumb/1/19/Stuff.jpg/51px-Stuff.jpg', thumbwidth: 95, thumbheight: 200, url: 'https://upload.wikimedia.org/wikipedia/commons/1/19/Stuff.jpg', descriptionurl: 'https://commons.wikimedia.org/wiki/File:Stuff.jpg' } ] } ] } } ); } }; const file = new mw.Title( 'File:Stuff.jpg' ); const thumbnailInfoProvider = new ThumbnailInfo( api ); return thumbnailInfoProvider.get( file, 100 ).then( function ( thumbnail ) { assert.strictEqual( thumbnail.url, 'https://upload.wikimedia.org/wikipedia/commons/thumb/1/19/Stuff.jpg/51px-Stuff.jpg', 'URL is set correctly' ); assert.strictEqual( thumbnail.width, 95, 'actual width is set correctly' ); assert.strictEqual( thumbnail.height, 200, 'actual height is set correctly' ); } ).then( function () { assert.strictEqual( apiCallCount, 1 ); // call the data provider a second time to check caching return thumbnailInfoProvider.get( file, 100 ); } ).then( function () { assert.strictEqual( apiCallCount, 1 ); // call a third time with different size to check caching return thumbnailInfoProvider.get( file, 110 ); } ).then( function () { assert.strictEqual( apiCallCount, 2 ); // call it again, with a height specified, to check caching return thumbnailInfoProvider.get( file, 110, 100 ); } ).then( function () { assert.strictEqual( apiCallCount, 3 ); } ); } ); QUnit.test( 'ThumbnailInfo fail test', function ( assert ) { const api = { get: function () { return $.Deferred().resolve( {} ); } }; const file = new mw.Title( 'File:Stuff.jpg' ); const done = assert.async(); const thumbnailInfoProvider = new ThumbnailInfo( api ); thumbnailInfoProvider.get( file, 100 ).fail( function () { assert.true( true, 'promise rejected when no data is returned' ); done(); } ); } ); QUnit.test( 'ThumbnailInfo fail test 2', function ( assert ) { const api = { get: function () { return $.Deferred().resolve( { query: { pages: [ { title: 'File:Stuff.jpg' } ] } } ); } }; const file = new mw.Title( 'File:Stuff.jpg' ); const done = assert.async(); const thumbnailInfoProvider = new ThumbnailInfo( api ); thumbnailInfoProvider.get( file, 100 ).fail( function () { assert.true( true, 'promise rejected when imageinfo is missing' ); done(); } ); } ); QUnit.test( 'ThumbnailInfo missing page test', function ( assert ) { const api = { get: function () { return $.Deferred().resolve( { query: { pages: [ { title: 'File:Stuff.jpg', missing: true, imagerepository: '' } ] } } ); } }; const file = new mw.Title( 'File:Stuff.jpg' ); const done = assert.async(); const thumbnailInfoProvider = new ThumbnailInfo( api ); thumbnailInfoProvider.get( file ).fail( function ( errorMessage ) { assert.strictEqual( errorMessage, 'file does not exist: File:Stuff.jpg', 'error message is set correctly for missing file' ); done(); } ); } ); QUnit.test( 'ThumbnailInfo fail test 3', function ( assert ) { const api = { get: function () { return $.Deferred().resolve( { query: { pages: [ { title: 'File:Stuff.jpg', imageinfo: [ {} ] } ] } } ); } }; const file = new mw.Title( 'File:Stuff.jpg' ); const done = assert.async(); const thumbnailInfoProvider = new ThumbnailInfo( api ); thumbnailInfoProvider.get( file, 100 ).fail( function () { assert.true( true, 'promise rejected when thumbnail info is missing' ); done(); } ); } ); }() );