mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/MultimediaViewer
synced 2024-11-17 21:04:11 +00:00
a44be28c4e
Change-Id: Id7d256150aedb4351778f6ad60fd7d85399b58c5 Mingle: https://wikimedia.mingle.thoughtworks.com/projects/multimedia/cards/589
211 lines
7.7 KiB
JavaScript
211 lines
7.7 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.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', 23, 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: {
|
|
ObjectName: {
|
|
value: 'Some stuff',
|
|
source: 'commons-templates'
|
|
},
|
|
License: {
|
|
value: 'cc0',
|
|
source: 'commons-templates',
|
|
hidden: ''
|
|
},
|
|
LicenseShortName: {
|
|
value: 'CC0',
|
|
source: 'commons-templates'
|
|
},
|
|
UsageTerms: {
|
|
value: 'Creative Commons Public Domain Dedication',
|
|
source: 'commons-templates'
|
|
},
|
|
LicenseUrl: {
|
|
value: 'http://creativecommons.org/publicdomain/zero/1.0/',
|
|
source: 'commons-templates'
|
|
},
|
|
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: '<time class=\"dtstart\" datetime=\"2009-02-18\">18 February 2009</time>\u00a0(according to <a href=\"//en.wikipedia.org/wiki/Exchangeable_image_file_format\" class=\"extiw\" title=\"en:Exchangeable image file format\">EXIF</a> data)',
|
|
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'
|
|
},
|
|
Permission: {
|
|
value: 'Do not use. Ever.',
|
|
source: 'commons-desc-page'
|
|
}
|
|
},
|
|
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.name, 'Some stuff', 'name 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, '18 February 2009\u00a0(according to EXIF data)', '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.shortName, 'CC0', 'license short name is set correctly' );
|
|
assert.strictEqual( image.license.internalName, 'cc0', 'license internal name is set correctly' );
|
|
assert.strictEqual( image.license.longName, 'Creative Commons Public Domain Dedication', 'license long name is set correctly' );
|
|
assert.strictEqual( image.license.deedUrl, 'http://creativecommons.org/publicdomain/zero/1.0/', 'license URL is set correctly' );
|
|
assert.strictEqual( image.permission, 'Do not use. Ever.', 'permission is set correctly' );
|
|
assert.strictEqual( image.latitude, 90, 'latitude is set correctly' );
|
|
assert.strictEqual( image.longitude, 180, 'longitude is 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 ) );
|