/* * 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 . */ ( function ( mw, $ ) { QUnit.module( 'mmv.provider.ImageInfo', QUnit.newMwEnvironment() ); QUnit.test( 'ImageInfo constructor sanity check', 1, function ( assert ) { var api = { get: function() {} }, imageInfoProvider = new mw.mmv.provider.ImageInfo( api ); assert.ok( imageInfoProvider ); } ); QUnit.asyncTest( 'ImageInfo get test', 19, function ( assert ) { var apiCallCount = 0, api = { get: function() { apiCallCount++; return $.Deferred().resolve( { query: { pages: { '-1': { ns: 6, title: 'File:Stuff.jpg', missing: '', imagerepository: 'shared', imageinfo: [ { timestamp: '2013-08-25T14:41:02Z', user: 'Dylanbot11', userid: '3053121', size: 346684, width: 720, height: 1412, comment: 'User created page with UploadWizard', url: 'https://upload.wikimedia.org/wikipedia/commons/1/19/Stuff.jpg', descriptionurl: 'https://commons.wikimedia.org/wiki/File:Stuff.jpg', sha1: 'a1ba23d471f4dad208b71c143e2e105a0e3032db', metadata: [], extmetadata: { License: { value: 'cc0', source: 'commons-templates', hidden: '' }, GPSLatitude: { value: '90.000000', source: 'commons-desc-page' }, GPSLongitude: { value: ' 180.000000', source: 'commons-desc-page' }, ImageDescription: { value: 'Wikis stuff', source: 'commons-desc-page' }, DateTimeOriginal: { value: '2013-08-25, 15:38:38', source: 'commons-desc-page' }, DateTime: { value: '2013-08-25T14:41:02Z', source: 'commons-desc-page' }, Credit: { value: 'Wikipedia', source: 'commons-desc-page', hidden: '' }, Artist: { value: 'Wikimeda', source: 'commons-desc-page' }, Categories: { value: 'a|b|cd', source: 'commons-categories' } }, mime: 'image/jpeg', mediatype: 'BITMAP' } ] } } } } ); } }, file = new mw.Title( 'File:Stuff.jpg' ), imageInfoProvider = new mw.mmv.provider.ImageInfo( api ); imageInfoProvider.get( file ).then( function( image ) { assert.strictEqual( image.title.getPrefixedDb(), 'File:Stuff.jpg', 'title is set correctly' ); assert.strictEqual( image.size, 346684, 'size is set correctly' ); assert.strictEqual( image.width, 720, 'width is set correctly' ); assert.strictEqual( image.height, 1412, 'height is set correctly' ); assert.strictEqual( image.mimeType, 'image/jpeg', 'mimeType is set correctly' ); assert.strictEqual( image.url, 'https://upload.wikimedia.org/wikipedia/commons/1/19/Stuff.jpg', 'url is set correctly' ); assert.strictEqual( image.descriptionUrl, 'https://commons.wikimedia.org/wiki/File:Stuff.jpg', 'descriptionUrl is set correctly' ); assert.strictEqual( image.repo, 'shared', 'repo is set correctly' ); assert.strictEqual( image.lastUploader, 'Dylanbot11', 'lastUploader is set correctly' ); assert.strictEqual( image.uploadDateTime, '2013-08-25T14:41:02Z', 'uploadDateTime is set correctly' ); assert.strictEqual( image.creationDateTime, '2013-08-25, 15:38:38', 'creationDateTime is set correctly' ); assert.strictEqual( image.description, 'Wikis stuff', 'description is set correctly' ); assert.strictEqual( image.source, 'Wikipedia', 'source is set correctly' ); assert.strictEqual( image.author, 'Wikimeda', 'author is set correctly' ); assert.strictEqual( image.license, 'cc0', 'license is set correctly' ); assert.strictEqual( image.latitude, 90, 'latitude is set correctly' ); assert.strictEqual( image.longitude, 180, 'longitude is set correctly' ); assert.strictEqual( image.categories.length, 3, 'categories are set correctly' ); } ).then( function() { // call the data provider a second time to check caching return imageInfoProvider.get( file ); } ).then( function() { assert.strictEqual( apiCallCount, 1 ); QUnit.start(); } ); } ); QUnit.asyncTest( 'ImageInfo fail test', 1, function ( assert ) { var api = { get: function() { return $.Deferred().resolve( {} ); } }, file = new mw.Title( 'File:Stuff.jpg' ), imageInfoProvider = new mw.mmv.provider.ImageInfo( api ); imageInfoProvider.get( file ).fail( function() { assert.ok( true, 'promise rejected when no data is returned' ); QUnit.start(); } ); } ); QUnit.asyncTest( 'ImageInfo fail test 2', 1, function ( assert ) { var api = { get: function() { return $.Deferred().resolve( { query: { pages: { '-1': { title: 'File:Stuff.jpg' } } } } ); } }, file = new mw.Title( 'File:Stuff.jpg' ), imageInfoProvider = new mw.mmv.provider.ImageInfo( api ); imageInfoProvider.get( file ).fail( function() { assert.ok( true, 'promise rejected when imageinfo is missing' ); QUnit.start(); } ); } ); QUnit.asyncTest( 'ImageInfo missing page test', 1, function ( assert ) { var api = { get: function() { return $.Deferred().resolve( { query: { pages: { '-1': { title: 'File:Stuff.jpg', missing: '', imagerepository: '' } } } } ); } }, file = new mw.Title( 'File:Stuff.jpg' ), imageInfoProvider = new mw.mmv.provider.ImageInfo( api ); imageInfoProvider.get( file ).fail( function( errorMessage ) { assert.strictEqual(errorMessage, 'file does not exist: File:Stuff.jpg', 'error message is set correctly for missing file'); QUnit.start(); } ); } ); }( mediaWiki, jQuery ) );