2014-02-17 15:09:23 +00:00
( function ( mw , $ ) {
2014-04-15 21:59:39 +00:00
QUnit . module ( 'mmv.bootstrap' , QUnit . newMwEnvironment ( {
setup : function ( ) {
2014-06-10 23:29:50 +00:00
mw . config . set ( 'wgMediaViewer' , true ) ;
2014-04-15 21:59:39 +00:00
mw . config . set ( 'wgMediaViewerOnClick' , true ) ;
2015-01-23 12:48:27 +00:00
this . sandbox . stub ( mw . user , 'isAnon' ) . returns ( false ) ;
2014-04-24 13:47:59 +00:00
this . clock = this . sandbox . useFakeTimers ( ) ;
2014-06-10 23:29:50 +00:00
}
} ) ) ;
2014-02-17 15:09:23 +00:00
2014-04-25 23:16:48 +00:00
function createGallery ( imageSrc , caption ) {
2014-02-17 15:09:23 +00:00
var div = $ ( '<div>' ) . addClass ( 'gallery' ) . appendTo ( '#qunit-fixture' ) ,
2014-04-25 23:16:48 +00:00
galleryBox = $ ( '<div>' ) . addClass ( 'gallerybox' ) . appendTo ( div ) ,
thumbwrap = $ ( '<div>' ) . addClass ( 'thumb' ) . appendTo ( galleryBox ) ,
link = $ ( '<a>' ) . addClass ( 'image' ) . appendTo ( thumbwrap ) ;
2014-02-17 15:09:23 +00:00
2015-01-23 12:48:27 +00:00
$ ( '<img>' ) . attr ( 'src' , ( imageSrc || 'thumb.jpg' ) ) . appendTo ( link ) ;
2014-04-25 23:16:48 +00:00
$ ( '<div>' ) . addClass ( 'gallerytext' ) . text ( caption || 'Foobar' ) . appendTo ( galleryBox ) ;
2014-02-17 15:09:23 +00:00
return div ;
}
2014-12-30 05:10:27 +00:00
function createThumb ( imageSrc , caption , alt ) {
2014-02-17 15:09:23 +00:00
var div = $ ( '<div>' ) . addClass ( 'thumb' ) . appendTo ( '#qunit-fixture' ) ,
link = $ ( '<a>' ) . addClass ( 'image' ) . appendTo ( div ) ;
$ ( '<div>' ) . addClass ( 'thumbcaption' ) . appendTo ( div ) . text ( caption ) ;
2014-12-30 05:10:27 +00:00
$ ( '<img>' ) . attr ( 'src' , ( imageSrc || 'thumb.jpg' ) ) . attr ( 'alt' , alt ) . appendTo ( link ) ;
2014-02-17 15:09:23 +00:00
return div ;
}
2014-04-25 23:16:48 +00:00
function createNormal ( imageSrc , caption ) {
var link = $ ( '<a>' ) . prop ( 'title' , caption ) . addClass ( 'image' ) . appendTo ( '#qunit-fixture' ) ;
$ ( '<img>' ) . prop ( 'src' , ( imageSrc || 'thumb.jpg' ) ) . appendTo ( link ) ;
return link ;
}
2014-12-30 01:26:17 +00:00
function createMultipleImage ( images ) {
var contain = $ ( '<div>' ) . addClass ( 'thumb' ) ,
thumbinner = $ ( '<div>' ) . addClass ( 'thumbinner' ) . appendTo ( contain ) ;
for ( var i = 0 ; i < images . length ; ++ i ) {
var div = $ ( '<div>' ) . appendTo ( thumbinner ) ;
var thumbimage = $ ( '<div>' ) . addClass ( 'thumbimage' ) . appendTo ( div ) ;
var link = $ ( '<a>' ) . addClass ( 'image' ) . appendTo ( thumbimage ) ;
$ ( '<img>' ) . prop ( 'src' , images [ i ] [ 0 ] ) . appendTo ( link ) ;
$ ( '<div>' ) . addClass ( 'thumbcaption' ) . text ( images [ i ] [ 1 ] ) . appendTo ( div ) ;
}
return contain ;
}
2014-03-04 11:53:53 +00:00
function createBootstrap ( viewer ) {
var bootstrap = new mw . mmv . MultimediaViewerBootstrap ( ) ;
2014-09-12 17:13:42 +00:00
// MultimediaViewerBootstrap.ensureEventHandlersAreSetUp() is a weird workaround for gadget bugs.
// MediaViewer should work without it, and so should the tests.
bootstrap . ensureEventHandlersAreSetUp = $ . noop ;
2015-01-23 12:48:27 +00:00
bootstrap . getViewer = function ( ) { return viewer ? viewer : { initWithThumbs : $ . noop } ; } ;
2014-03-04 11:53:53 +00:00
return bootstrap ;
}
2014-04-11 09:31:38 +00:00
function hashTest ( bootstrap , assert ) {
var hash = 'mediaviewer/foo' ;
bootstrap . setupEventHandlers ( ) ;
bootstrap . loadViewer = function ( ) {
assert . ok ( false , 'Viewer should not be loaded' ) ;
return $ . Deferred ( ) . reject ( ) ;
} ;
window . location . hash = 'Foo' ;
bootstrap . loadViewer = function ( ) {
QUnit . start ( ) ;
assert . ok ( true , 'Viewer should be loaded' ) ;
bootstrap . cleanupEventHandlers ( ) ;
window . location . hash = '' ;
return $ . Deferred ( ) . reject ( ) ;
} ;
QUnit . stop ( ) ;
window . location . hash = hash ;
}
2014-03-28 08:06:53 +00:00
QUnit . test ( 'Promise does not hang on ResourceLoader errors' , 3 , function ( assert ) {
2014-04-29 01:35:07 +00:00
var bootstrap ,
2014-02-14 00:36:10 +00:00
errorMessage = 'loading failed' ;
2014-08-15 13:46:43 +00:00
this . sandbox . stub ( mw . loader , 'using' )
. callsArgWith ( 2 , new Error ( errorMessage , [ 'mmv' ] ) )
. withArgs ( 'mediawiki.notification' ) . returns ( $ . Deferred ( ) . reject ( ) ) ; // needed for mw.notify
2014-03-04 11:53:53 +00:00
bootstrap = createBootstrap ( ) ;
2014-03-28 08:06:53 +00:00
bootstrap . setupOverlay = function ( ) {
assert . ok ( true , 'Overlay was set up' ) ;
} ;
bootstrap . cleanupOverlay = function ( ) {
assert . ok ( true , 'Overlay was cleaned up' ) ;
} ;
2014-03-04 11:53:53 +00:00
QUnit . stop ( ) ;
2014-02-14 00:36:10 +00:00
bootstrap . loadViewer ( ) . fail ( function ( message ) {
assert . strictEqual ( message , errorMessage , 'promise is rejected with the error message when loading fails' ) ;
QUnit . start ( ) ;
} ) ;
} ) ;
2014-04-29 01:35:07 +00:00
QUnit . test ( 'Clicks are not captured once the loading fails' , 4 , function ( assert ) {
var event , returnValue ,
bootstrap = new mw . mmv . MultimediaViewerBootstrap ( ) ;
2014-08-15 13:46:43 +00:00
this . sandbox . stub ( mw . loader , 'using' )
. callsArgWith ( 2 , new Error ( 'loading failed' , [ 'mmv' ] ) )
. withArgs ( 'mediawiki.notification' ) . returns ( $ . Deferred ( ) . reject ( ) ) ; // needed for mw.notify
2014-09-12 17:13:42 +00:00
bootstrap . ensureEventHandlersAreSetUp = $ . noop ;
2014-04-29 01:35:07 +00:00
event = new $ . Event ( 'click' , { button : 0 , which : 1 } ) ;
returnValue = bootstrap . click ( { } , event , 'foo' ) ;
assert . ok ( event . isDefaultPrevented ( ) , 'First click is caught' ) ;
assert . strictEqual ( returnValue , false , 'First click is caught' ) ;
event = new $ . Event ( 'click' , { button : 0 , which : 1 } ) ;
returnValue = bootstrap . click ( { } , event , 'foo' ) ;
assert . ok ( ! event . isDefaultPrevented ( ) , 'Click after loading failure is not caught' ) ;
assert . notStrictEqual ( returnValue , false , 'Click after loading failure is not caught' ) ;
} ) ;
2014-10-03 09:15:28 +00:00
QUnit . test ( 'Check viewer invoked when clicking on legit image links' , 10 , function ( assert ) {
2014-02-17 15:09:23 +00:00
// TODO: Is <div class="gallery"><span class="image"><img/></span></div> valid ???
2014-10-03 09:15:28 +00:00
var div , link , link2 , link3 , link4 , link5 , bootstrap ,
2015-01-23 12:48:27 +00:00
viewer = { initWithThumbs : $ . noop } ;
2014-02-17 15:09:23 +00:00
// Create gallery with legit link image
div = createGallery ( ) ;
link = div . find ( 'a.image' ) ;
// Legit isolated thumbnail
link2 = $ ( '<a>' ) . addClass ( 'image' ) . appendTo ( '#qunit-fixture' ) ;
2015-01-23 12:48:27 +00:00
$ ( '<img>' ) . attr ( 'src' , 'thumb2.jpg' ) . appendTo ( link2 ) ;
2014-02-17 15:09:23 +00:00
// Non-legit fragment
link3 = $ ( '<a>' ) . addClass ( 'noImage' ) . appendTo ( div ) ;
2015-01-23 12:48:27 +00:00
$ ( '<img>' ) . attr ( 'src' , 'thumb3.jpg' ) . appendTo ( link3 ) ;
2014-02-17 15:09:23 +00:00
2014-04-08 21:01:07 +00:00
$ ( '<div>' ) . addClass ( 'fullMedia' ) . appendTo ( div ) ;
$ ( '<img>' ) . attr ( 'src' , 'thumb4.jpg' ) . appendTo (
$ ( '<a>' )
. appendTo (
$ ( '<div>' )
. attr ( 'id' , 'file' )
. appendTo ( '#qunit-fixture' )
)
) ;
2014-02-17 15:09:23 +00:00
// Create a new bootstrap object to trigger the DOM scan, etc.
2014-03-04 11:53:53 +00:00
bootstrap = createBootstrap ( viewer ) ;
2014-02-17 15:09:23 +00:00
2014-04-08 21:01:07 +00:00
link4 = $ ( '.fullMedia .mw-mmv-view-expanded' ) ;
assert . ok ( link4 . length , 'Link for viewing expanded file was set up.' ) ;
2014-10-03 09:15:28 +00:00
link5 = $ ( '.fullMedia .mw-mmv-view-config' ) ;
assert . ok ( link5 . length , 'Link for opening enable/disable configuration was set up.' ) ;
2014-03-28 08:06:53 +00:00
bootstrap . setupOverlay = function ( ) {
assert . ok ( true , 'Overlay was set up' ) ;
} ;
2015-01-23 12:48:27 +00:00
viewer . loadImageByTitle = function ( ) {
2014-02-21 11:16:30 +00:00
assert . ok ( true , 'Image loaded' ) ;
} ;
2014-02-17 15:09:23 +00:00
// Click on legit link
2015-01-23 12:48:27 +00:00
link . trigger ( { type : 'click' , which : 1 } ) ;
2014-02-17 15:09:23 +00:00
// Click on legit link
2015-01-23 12:48:27 +00:00
link2 . trigger ( { type : 'click' , which : 1 } ) ;
2014-02-17 15:09:23 +00:00
2014-04-08 21:01:07 +00:00
// Click on legit link
link4 . trigger ( { type : 'click' , which : 1 } ) ;
2014-04-15 21:59:39 +00:00
// Click on legit link even when preference says not to
mw . config . set ( 'wgMediaViewerOnClick' , false ) ;
link4 . trigger ( { type : 'click' , which : 1 } ) ;
mw . config . set ( 'wgMediaViewerOnClick' , true ) ;
2014-03-28 08:06:53 +00:00
bootstrap . setupOverlay = function ( ) {
assert . ok ( false , 'Overlay was not set up' ) ;
} ;
2015-01-23 12:48:27 +00:00
viewer . loadImageByTitle = function ( ) {
2014-02-21 11:16:30 +00:00
assert . ok ( false , 'Image should not be loaded' ) ;
} ;
2014-02-17 15:09:23 +00:00
// Click on non-legit link
2015-01-23 12:48:27 +00:00
link3 . trigger ( { type : 'click' , which : 1 } ) ;
2014-04-15 21:59:39 +00:00
// Click on legit links with preference off
mw . config . set ( 'wgMediaViewerOnClick' , false ) ;
2015-01-23 12:48:27 +00:00
link . trigger ( { type : 'click' , which : 1 } ) ;
link2 . trigger ( { type : 'click' , which : 1 } ) ;
2014-02-17 15:09:23 +00:00
} ) ;
QUnit . test ( 'Skip images with invalid extensions' , 0 , function ( assert ) {
2014-02-21 11:16:30 +00:00
var div , link , bootstrap ,
2015-01-23 12:48:27 +00:00
viewer = { initWithThumbs : $ . noop } ;
2014-02-17 15:09:23 +00:00
// Create gallery with image that has invalid name extension
div = createGallery ( 'thumb.badext' ) ;
link = div . find ( 'a.image' ) ;
// Create a new bootstrap object to trigger the DOM scan, etc.
2014-03-04 11:53:53 +00:00
bootstrap = createBootstrap ( viewer ) ;
2014-02-17 15:09:23 +00:00
2015-01-23 12:48:27 +00:00
viewer . loadImageByTitle = function ( ) {
2014-02-21 11:16:30 +00:00
assert . ok ( false , 'Image should not be loaded' ) ;
} ;
2014-02-17 15:09:23 +00:00
// Click on legit link with wrong image extension
2015-01-23 12:48:27 +00:00
link . trigger ( { type : 'click' , which : 1 } ) ;
2014-02-17 15:09:23 +00:00
} ) ;
2014-03-28 08:06:53 +00:00
QUnit . test ( 'Accept only left clicks without modifier keys, skip the rest' , 2 , function ( assert ) {
2014-02-21 11:16:30 +00:00
var $div , $link , bootstrap ,
2015-01-23 12:48:27 +00:00
viewer = { initWithThumbs : $ . noop } ;
2014-02-17 15:09:23 +00:00
2014-04-24 13:47:59 +00:00
// Create gallery with image that has valid name extension
2014-02-17 15:09:23 +00:00
$div = createGallery ( ) ;
// Create a new bootstrap object to trigger the DOM scan, etc.
2014-03-04 11:53:53 +00:00
bootstrap = createBootstrap ( viewer ) ;
2014-02-17 15:09:23 +00:00
$link = $div . find ( 'a.image' ) ;
2014-03-28 08:06:53 +00:00
bootstrap . setupOverlay = function ( ) {
assert . ok ( true , 'Overlay was set up' ) ;
} ;
2015-01-23 12:48:27 +00:00
viewer . loadImageByTitle = function ( ) {
2014-02-21 11:16:30 +00:00
assert . ok ( true , 'Image loaded' ) ;
} ;
2014-02-17 15:09:23 +00:00
// Handle valid left click, it should try to load the image
2015-01-23 12:48:27 +00:00
$link . trigger ( { type : 'click' , which : 1 } ) ;
2014-02-17 15:09:23 +00:00
2014-03-28 08:06:53 +00:00
bootstrap . setupOverlay = function ( ) {
assert . ok ( false , 'Overlay was not set up' ) ;
} ;
2015-01-23 12:48:27 +00:00
viewer . loadImageByTitle = function ( ) {
2014-02-21 11:16:30 +00:00
assert . ok ( false , 'Image should not be loaded' ) ;
} ;
2014-02-17 15:09:23 +00:00
// Skip Ctrl-left-click, no image is loaded
2015-01-23 12:48:27 +00:00
$link . trigger ( { type : 'click' , which : 1 , ctrlKey : true } ) ;
2014-02-17 15:09:23 +00:00
// Skip invalid right click, no image is loaded
2015-01-23 12:48:27 +00:00
$link . trigger ( { type : 'click' , which : 2 } ) ;
2014-02-17 15:09:23 +00:00
} ) ;
2014-03-28 08:06:53 +00:00
QUnit . test ( 'Ensure that the correct title is loaded when clicking' , 2 , function ( assert ) {
2014-02-21 11:16:30 +00:00
var bootstrap ,
2015-01-23 12:48:27 +00:00
viewer = { initWithThumbs : $ . noop } ,
2014-02-21 11:16:30 +00:00
$div = createGallery ( 'foo.jpg' ) ,
2014-02-17 15:09:23 +00:00
$link = $div . find ( 'a.image' ) ;
2014-02-25 02:28:49 +00:00
viewer . loadImageByTitle = function ( loadedTitle ) {
2014-04-14 23:22:28 +00:00
assert . strictEqual ( loadedTitle . getPrefixedDb ( ) , 'File:Foo.jpg' , 'Titles are identical' ) ;
2014-02-21 11:16:30 +00:00
} ;
2014-02-17 15:09:23 +00:00
2014-02-21 11:16:30 +00:00
// Create a new bootstrap object to trigger the DOM scan, etc.
2014-03-04 11:53:53 +00:00
bootstrap = createBootstrap ( viewer ) ;
2014-02-17 15:09:23 +00:00
2014-03-28 08:06:53 +00:00
bootstrap . setupOverlay = function ( ) {
assert . ok ( true , 'Overlay was set up' ) ;
} ;
2015-01-23 12:48:27 +00:00
$link . trigger ( { type : 'click' , which : 1 } ) ;
2014-02-17 15:09:23 +00:00
} ) ;
2014-12-30 05:10:27 +00:00
QUnit . test ( 'Validate new LightboxImage object has sane constructor parameters' , 8 , function ( assert ) {
2014-02-21 11:16:30 +00:00
var bootstrap ,
$div ,
$link ,
2015-01-23 12:48:27 +00:00
viewer = new mw . mmv . MultimediaViewer ( { get : $ . noop } ) ,
2014-02-21 11:16:30 +00:00
fname = 'valid' ,
imgSrc = '/' + fname + '.jpg/300px-' + fname + '.jpg' ,
imgRegex = new RegExp ( imgSrc + '$' ) ;
2015-01-23 12:48:27 +00:00
$div = createThumb ( imgSrc , 'Blah blah' , 'meow' ) ;
2014-02-21 11:16:30 +00:00
$link = $div . find ( 'a.image' ) ;
2014-02-17 15:09:23 +00:00
2014-02-25 02:28:49 +00:00
viewer . loadImage = $ . noop ;
2014-02-17 15:09:23 +00:00
2014-12-30 05:10:27 +00:00
viewer . createNewImage = function ( fileLink , filePageLink , fileTitle , index , thumb , caption , alt ) {
2014-02-21 11:16:30 +00:00
assert . ok ( fileLink . match ( imgRegex ) , 'Thumbnail URL used in creating new image object' ) ;
assert . strictEqual ( filePageLink , '' , 'File page link is sane when creating new image object' ) ;
assert . strictEqual ( fileTitle . title , fname , 'Filename is correct when passed into new image constructor' ) ;
assert . strictEqual ( index , 0 , 'The only image we created in the gallery is set at index 0 in the images array' ) ;
2014-12-30 05:10:27 +00:00
assert . strictEqual ( thumb . outerHTML , '<img src="' + imgSrc + '" alt="meow">' , 'The image element passed in is the thumbnail we want.' ) ;
2014-02-21 11:16:30 +00:00
assert . strictEqual ( caption , 'Blah blah' , 'The caption passed in is correct' ) ;
2014-12-30 05:10:27 +00:00
assert . strictEqual ( alt , 'meow' , 'The alt text passed in is correct' ) ;
2014-02-21 11:16:30 +00:00
} ;
2014-02-17 15:09:23 +00:00
2014-02-21 11:16:30 +00:00
// Create a new bootstrap object to trigger the DOM scan, etc.
2014-03-04 11:53:53 +00:00
bootstrap = createBootstrap ( viewer ) ;
2014-02-17 15:09:23 +00:00
2014-03-28 08:06:53 +00:00
bootstrap . setupOverlay = function ( ) {
assert . ok ( true , 'Overlay was set up' ) ;
} ;
2015-01-23 12:48:27 +00:00
$link . trigger ( { type : 'click' , which : 1 } ) ;
2014-02-21 11:16:30 +00:00
} ) ;
2014-02-17 15:09:23 +00:00
2014-04-11 09:31:38 +00:00
QUnit . test ( 'Only load the viewer on a valid hash (modern browsers)' , 1 , function ( assert ) {
2014-02-21 11:16:30 +00:00
var bootstrap ;
2014-02-17 15:09:23 +00:00
2014-02-21 11:16:30 +00:00
window . location . hash = '' ;
2014-02-17 15:09:23 +00:00
2014-03-04 11:53:53 +00:00
bootstrap = createBootstrap ( ) ;
2014-02-17 15:09:23 +00:00
2014-04-11 09:31:38 +00:00
hashTest ( bootstrap , assert ) ;
} ) ;
2014-02-17 15:09:23 +00:00
2014-04-11 09:31:38 +00:00
QUnit . test ( 'Only load the viewer on a valid hash (old browsers)' , 1 , function ( assert ) {
var bootstrap ;
2014-02-17 15:09:23 +00:00
2014-04-11 09:31:38 +00:00
window . location . hash = '' ;
2014-02-17 15:09:23 +00:00
2014-04-11 09:31:38 +00:00
bootstrap = createBootstrap ( ) ;
bootstrap . browserHistory = undefined ;
hashTest ( bootstrap , assert ) ;
2014-02-24 09:29:14 +00:00
} ) ;
2014-02-17 15:09:23 +00:00
2014-03-04 11:53:53 +00:00
QUnit . test ( 'internalHashChange' , 1 , function ( assert ) {
var bootstrap = createBootstrap ( ) ,
2014-04-11 09:31:38 +00:00
hash = '#mediaviewer/foo' ;
2014-02-24 09:29:14 +00:00
2014-04-11 09:31:38 +00:00
window . location . hash = '' ;
2014-02-24 09:29:14 +00:00
2014-04-11 09:31:38 +00:00
bootstrap . setupEventHandlers ( ) ;
2014-02-24 09:29:14 +00:00
bootstrap . loadViewer = function ( ) {
assert . ok ( false , 'Viewer should not be loaded' ) ;
return $ . Deferred ( ) . reject ( ) ;
} ;
bootstrap . internalHashChange ( { hash : hash } ) ;
assert . strictEqual ( window . location . hash , hash , 'Window\'s hash has been updated correctly' ) ;
2014-04-11 09:31:38 +00:00
bootstrap . cleanupEventHandlers ( ) ;
window . location . hash = '' ;
2014-02-17 15:09:23 +00:00
} ) ;
2014-02-24 17:06:11 +00:00
QUnit . test ( 'isCSSReady' , 3 , function ( assert ) {
2014-03-04 11:53:53 +00:00
var bootstrap = createBootstrap ( ) ,
2014-02-24 17:06:11 +00:00
deferred = $ . Deferred ( ) ,
CSSclass = 'foo-' + $ . now ( ) ,
$style = $ ( '<style type="text/css" />' )
. text ( '.' + CSSclass + ' { display: inline; }' ) ;
bootstrap . readinessCSSClass = CSSclass ;
bootstrap . isCSSReady ( deferred ) ;
assert . strictEqual ( deferred . state ( ) , 'pending' , 'The style isn\'t on the page yet' ) ;
QUnit . stop ( ) ;
2015-01-23 12:48:27 +00:00
deferred . then ( function ( ) {
2014-02-24 17:06:11 +00:00
QUnit . start ( ) ;
assert . ok ( true , 'The style is on the page' ) ;
assert . strictEqual ( $ ( '.' + CSSclass ) . length , 0 , 'There are no leftover test elements' ) ;
$style . remove ( ) ;
} ) ;
$style . appendTo ( 'head' ) ;
2014-04-24 13:47:59 +00:00
this . clock . tick ( bootstrap . readinessWaitDuration ) ;
2014-02-24 17:06:11 +00:00
} ) ;
2014-04-11 09:31:38 +00:00
QUnit . test ( 'Restoring article scroll position' , 2 , function ( assert ) {
var bootstrap = createBootstrap ( ) ,
scrollTop = 50 ,
scrollLeft = 60 ,
stubbedScrollTop = scrollTop ,
stubbedScrollLeft = scrollLeft ;
this . sandbox . stub ( $ , 'scrollTo' , function ( target ) {
if ( target ) {
stubbedScrollTop = target . top ;
stubbedScrollLeft = target . left ;
} else {
return {
2015-01-23 12:48:27 +00:00
scrollTop : function ( ) { return stubbedScrollTop ; } ,
scrollLeft : function ( ) { return stubbedScrollLeft ; }
2014-04-11 09:31:38 +00:00
} ;
}
} ) ;
bootstrap . setupOverlay ( ) ;
// Calling this a second time because it can happen in history navigation context
bootstrap . setupOverlay ( ) ;
bootstrap . cleanupOverlay ( ) ;
assert . strictEqual ( stubbedScrollTop , scrollTop , 'Scroll is correctly reset to original top position' ) ;
assert . strictEqual ( stubbedScrollLeft , scrollLeft , 'Scroll is correctly reset to original left position' ) ;
} ) ;
2014-04-24 13:47:59 +00:00
QUnit . test ( 'Preload JS/CSS dependencies on thumb hover' , 2 , function ( assert ) {
var $div , bootstrap ,
2015-01-23 12:48:27 +00:00
viewer = { initWithThumbs : $ . noop } ;
2014-04-24 13:47:59 +00:00
// Create gallery with image that has valid name extension
$div = createThumb ( ) ;
// Create a new bootstrap object to trigger the DOM scan, etc.
bootstrap = createBootstrap ( viewer ) ;
this . sandbox . stub ( mw . loader , 'load' ) ;
$div . mouseenter ( ) ;
this . clock . tick ( bootstrap . hoverWaitDuration - 50 ) ;
$div . mouseleave ( ) ;
assert . ok ( ! mw . loader . load . called , 'Dependencies should not be preloaded if the thumb is not hovered long enough' ) ;
$div . mouseenter ( ) ;
this . clock . tick ( bootstrap . hoverWaitDuration + 50 ) ;
$div . mouseleave ( ) ;
assert . ok ( mw . loader . load . called , 'Dependencies should be preloaded if the thumb is hovered long enough' ) ;
} ) ;
2014-06-11 18:42:29 +00:00
QUnit . test ( 'isAllowedThumb' , 5 , function ( assert ) {
var $container = $ ( '<div>' ) ,
$thumb = $ ( '<img>' ) . appendTo ( $container ) ,
bootstrap = createBootstrap ( ) ;
assert . ok ( bootstrap . isAllowedThumb ( $thumb ) , 'Normal image in a div is allowed.' ) ;
$container . addClass ( 'metadata' ) ;
assert . strictEqual ( bootstrap . isAllowedThumb ( $thumb ) , false , 'Image in a metadata container is disallowed.' ) ;
$container . prop ( 'class' , '' ) ;
$container . addClass ( 'noviewer' ) ;
assert . strictEqual ( bootstrap . isAllowedThumb ( $thumb ) , false , 'Image in a noviewer container is disallowed.' ) ;
$container . prop ( 'class' , '' ) ;
$container . addClass ( 'noarticletext' ) ;
assert . strictEqual ( bootstrap . isAllowedThumb ( $thumb ) , false , 'Image in an empty article is disallowed.' ) ;
$container . prop ( 'class' , '' ) ;
$thumb . addClass ( 'noviewer' ) ;
assert . strictEqual ( bootstrap . isAllowedThumb ( $thumb ) , false , 'Image with a noviewer class is disallowed.' ) ;
} ) ;
2014-04-25 23:16:48 +00:00
2014-12-30 01:26:17 +00:00
QUnit . test ( 'findCaption' , 4 , function ( assert ) {
2014-04-25 23:16:48 +00:00
var gallery = createGallery ( 'foo.jpg' , 'Baz' ) ,
thumb = createThumb ( 'foo.jpg' , 'Quuuuux' ) ,
link = createNormal ( 'foo.jpg' , 'Foobar' ) ,
2014-12-30 01:26:17 +00:00
multiple = createMultipleImage ( [ [ 'foo.jpg' , 'Image #1' ] , [ 'bar.jpg' , 'Image #2' ] ,
[ 'foobar.jpg' , 'Image #3' ] ] ) ,
2014-04-25 23:16:48 +00:00
bootstrap = createBootstrap ( ) ;
assert . strictEqual ( bootstrap . findCaption ( gallery . find ( '.thumb' ) , gallery . find ( 'a.image' ) ) , 'Baz' , 'A gallery caption is found.' ) ;
assert . strictEqual ( bootstrap . findCaption ( thumb , thumb . find ( 'a.image' ) ) , 'Quuuuux' , 'A thumbnail caption is found.' ) ;
assert . strictEqual ( bootstrap . findCaption ( $ ( ) , link ) , 'Foobar' , 'The caption is found even if the image is not a thumbnail.' ) ;
2014-12-30 01:26:17 +00:00
assert . strictEqual ( bootstrap . findCaption ( multiple , multiple . find ( 'img[src="bar.jpg"]' ) . closest ( 'a' ) ) , 'Image #2' , 'The caption is found in {{Multiple image}}.' ) ;
2014-04-25 23:16:48 +00:00
} ) ;
2014-02-17 15:09:23 +00:00
} ( mediaWiki , jQuery ) ) ;