2014-02-06 00:12:50 +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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
( function ( mw, $ ) {
|
|
|
|
QUnit.module( 'mmv.provider.UserInfo', QUnit.newMwEnvironment() );
|
|
|
|
|
|
|
|
QUnit.test( 'UserInfo constructor sanity check', 1, function ( assert ) {
|
|
|
|
var api = { get: function() {} },
|
|
|
|
userInfoProvider = new mw.mmv.provider.UserInfo( api );
|
|
|
|
|
|
|
|
assert.ok( userInfoProvider );
|
|
|
|
} );
|
|
|
|
|
2014-02-13 09:52:40 +00:00
|
|
|
QUnit.asyncTest( 'UserInfo get test', 6, function ( assert ) {
|
2014-02-06 00:12:50 +00:00
|
|
|
var apiCallCount = 0,
|
|
|
|
api = { get: function() {
|
|
|
|
apiCallCount++;
|
|
|
|
return $.Deferred().resolve( {
|
|
|
|
query: {
|
|
|
|
users: [
|
|
|
|
{
|
|
|
|
userid: 4587601,
|
|
|
|
name: 'Catrope',
|
|
|
|
gender: 'male'
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
} );
|
|
|
|
} },
|
|
|
|
username = 'Catrope',
|
|
|
|
repoInfo = {},
|
|
|
|
foreignRepoInfo = { apiUrl: 'http://example.com/api.php' },
|
|
|
|
userInfoProvider = new mw.mmv.provider.UserInfo( api );
|
|
|
|
|
2014-02-13 09:52:40 +00:00
|
|
|
userInfoProvider.get( username, repoInfo ).then( function( user ) {
|
|
|
|
assert.strictEqual( user.username, 'Catrope', 'username is set correctly' );
|
|
|
|
assert.strictEqual( user.gender, mw.mmv.model.User.Gender.MALE, 'gender is set correctly' );
|
2014-02-06 00:12:50 +00:00
|
|
|
} ).then( function() {
|
|
|
|
assert.strictEqual( apiCallCount, 1 );
|
|
|
|
// call the data provider a second time to check caching
|
|
|
|
return userInfoProvider.get( username, repoInfo );
|
|
|
|
} ).then( function() {
|
|
|
|
assert.strictEqual( apiCallCount, 1 );
|
|
|
|
// call a third time with a different user to check caching
|
|
|
|
return userInfoProvider.get( 'OtherUser', repoInfo );
|
|
|
|
} ).then( function() {
|
|
|
|
assert.strictEqual( apiCallCount, 2 );
|
|
|
|
// call again with a different repo to check caching
|
|
|
|
return userInfoProvider.get( username, foreignRepoInfo );
|
|
|
|
} ).then( function() {
|
|
|
|
assert.strictEqual( apiCallCount, 3 );
|
|
|
|
QUnit.start();
|
|
|
|
} );
|
|
|
|
} );
|
|
|
|
|
|
|
|
QUnit.asyncTest( 'UserInfo missing data test', 1, function ( assert ) {
|
|
|
|
var api = { get: function() {
|
|
|
|
return $.Deferred().resolve( {} );
|
|
|
|
} },
|
|
|
|
username = 'Catrope',
|
|
|
|
repoInfo = {},
|
|
|
|
userInfoProvider = new mw.mmv.provider.UserInfo( api );
|
|
|
|
|
|
|
|
userInfoProvider.get( username, repoInfo ).fail( function() {
|
|
|
|
assert.ok( true, 'promise rejected when no data is returned' );
|
|
|
|
QUnit.start();
|
|
|
|
} );
|
|
|
|
} );
|
|
|
|
|
2014-02-28 02:45:02 +00:00
|
|
|
QUnit.asyncTest( 'UserInfo missing user test', 2, function ( assert ) {
|
2014-02-06 00:12:50 +00:00
|
|
|
var api = { get: function() {
|
|
|
|
return $.Deferred().resolve( {
|
|
|
|
query: {
|
|
|
|
users: []
|
|
|
|
}
|
|
|
|
} );
|
|
|
|
} },
|
|
|
|
username = 'Catrope',
|
|
|
|
repoInfo = {},
|
|
|
|
userInfoProvider = new mw.mmv.provider.UserInfo( api );
|
|
|
|
|
2014-02-28 02:45:02 +00:00
|
|
|
userInfoProvider.get( username, repoInfo ).done( function( user ) {
|
|
|
|
assert.strictEqual( user.username, 'Catrope', 'username is set correctly' );
|
|
|
|
assert.strictEqual( user.gender, mw.mmv.model.User.Gender.UNKNOWN, 'gender is set to unknown' );
|
2014-02-06 00:12:50 +00:00
|
|
|
QUnit.start();
|
|
|
|
} );
|
|
|
|
} );
|
|
|
|
|
2014-02-28 02:45:02 +00:00
|
|
|
QUnit.asyncTest( 'UserInfo missing gender test', 2, function ( assert ) {
|
2014-02-06 00:12:50 +00:00
|
|
|
var api = { get: function() {
|
|
|
|
return $.Deferred().resolve( {
|
|
|
|
query: {
|
|
|
|
users: [
|
|
|
|
{
|
|
|
|
userid: 4587601,
|
|
|
|
name: 'Catrope'
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
} );
|
|
|
|
} },
|
|
|
|
username = 'Catrope',
|
|
|
|
repoInfo = {},
|
|
|
|
userInfoProvider = new mw.mmv.provider.UserInfo( api );
|
|
|
|
|
2014-02-28 02:45:02 +00:00
|
|
|
userInfoProvider.get( username, repoInfo ).done( function( user ) {
|
|
|
|
assert.strictEqual( user.username, 'Catrope', 'username is set correctly' );
|
|
|
|
assert.strictEqual( user.gender, mw.mmv.model.User.Gender.UNKNOWN, 'gender is set to unknown' );
|
|
|
|
QUnit.start();
|
|
|
|
} );
|
|
|
|
} );
|
|
|
|
|
|
|
|
// this can happen when we get the image from a ForeignDBRepo
|
|
|
|
QUnit.asyncTest( 'UserInfo non-existant user test', 2, function ( assert ) {
|
|
|
|
var api = { get: function() {
|
|
|
|
return $.Deferred().resolve( {
|
|
|
|
query: {
|
|
|
|
users: [
|
|
|
|
{
|
|
|
|
missing: '',
|
|
|
|
name: 'Catrope'
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
} );
|
|
|
|
} },
|
|
|
|
username = 'Catrope',
|
|
|
|
repoInfo = {},
|
|
|
|
userInfoProvider = new mw.mmv.provider.UserInfo( api );
|
|
|
|
|
|
|
|
userInfoProvider.get( username, repoInfo ).done( function( user ) {
|
|
|
|
assert.strictEqual( user.username, 'Catrope', 'username is set correctly' );
|
|
|
|
assert.strictEqual( user.gender, mw.mmv.model.User.Gender.UNKNOWN, 'gender is set to unknown' );
|
2014-02-06 00:12:50 +00:00
|
|
|
QUnit.start();
|
|
|
|
} );
|
|
|
|
} );
|
2014-04-20 03:35:54 +00:00
|
|
|
|
|
|
|
QUnit.asyncTest( 'UserInfo fake test', 4, function ( assert ) {
|
2014-10-23 07:56:48 +00:00
|
|
|
var api = { get: this.sandbox.stub().throwsException( 'API was invoked' ) },
|
2014-04-20 03:35:54 +00:00
|
|
|
username = 'Catrope',
|
|
|
|
repoInfo = {},
|
|
|
|
userInfoProvider = new mw.mmv.provider.UserInfo( api, { useApi: false } );
|
|
|
|
|
|
|
|
userInfoProvider.get( username, repoInfo ).done( function( user ) {
|
|
|
|
assert.strictEqual( user.username, 'Catrope', 'username is set correctly' );
|
|
|
|
assert.strictEqual( user.gender, mw.mmv.model.User.Gender.UNKNOWN, 'gender is set to unknown' );
|
|
|
|
assert.ok( user.fake, 'fake flag is set' );
|
|
|
|
assert.ok( !api.get.called, 'API was not called' );
|
|
|
|
QUnit.start();
|
|
|
|
} );
|
|
|
|
} );
|
2014-04-29 22:06:26 +00:00
|
|
|
|
|
|
|
QUnit.test( 'getCallbackName()', 6, function ( assert ) {
|
|
|
|
var userInfoProvider = new mw.mmv.provider.UserInfo( {} );
|
|
|
|
|
|
|
|
function assertValidVariableName( username ) {
|
|
|
|
/*jshint evil:true */
|
|
|
|
var varName = userInfoProvider.getCallbackName( username );
|
|
|
|
try {
|
|
|
|
eval( 'var ' + varName + ';');
|
|
|
|
assert.ok( true, 'Variable name ' + varName + ' generated from ' + username + ' is valid' );
|
|
|
|
} catch ( e ) {
|
|
|
|
assert.ok( false, 'Variable name ' + varName + ' generated from ' + username + ' is invalid' );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
assertValidVariableName( 'simple' );
|
|
|
|
assertValidVariableName( 'Help! I have spaces!' );
|
|
|
|
assertValidVariableName( 'oh_noes_i_has_underline' );
|
|
|
|
assertValidVariableName( '$\'"+!%/=()[]{}:;<>,.?|' );
|
|
|
|
assertValidVariableName( 'イチカワ エツヤ' );
|
|
|
|
assertValidVariableName( new Array( 256 ).join( 'イ' ) ); // longest possible name, 255*2 bytes
|
|
|
|
} );
|
2014-02-06 00:12:50 +00:00
|
|
|
}( mediaWiki, jQuery ) );
|