2014-02-28 11:50:06 +00:00
|
|
|
/*
|
|
|
|
* This file is part of the MediaWiki extension MediaViewer.
|
|
|
|
*
|
|
|
|
* MediaViewer 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.
|
|
|
|
*
|
|
|
|
* MediaViewer 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 MediaViewer. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2023-05-20 08:30:52 +00:00
|
|
|
const { CanvasButtons } = require( 'mmv' );
|
|
|
|
|
2018-11-12 16:33:24 +00:00
|
|
|
( function () {
|
2014-03-28 00:10:04 +00:00
|
|
|
QUnit.module( 'mmv.ui.CanvasButtons', QUnit.newMwEnvironment() );
|
2014-02-28 11:50:06 +00:00
|
|
|
|
2017-07-25 23:38:21 +00:00
|
|
|
QUnit.test( 'Prev/Next', function ( assert ) {
|
2023-10-24 09:53:23 +00:00
|
|
|
const $qf = $( '#qunit-fixture' );
|
|
|
|
const buttons = new CanvasButtons( $qf, $( '<div>' ), $( '<div>' ) );
|
2014-02-28 11:50:06 +00:00
|
|
|
|
2016-07-18 13:49:27 +00:00
|
|
|
buttons.on( 'next', function () {
|
2022-05-20 00:18:43 +00:00
|
|
|
assert.true( true, 'Switched to next image' );
|
2015-09-25 19:55:00 +00:00
|
|
|
} );
|
2014-02-28 11:50:06 +00:00
|
|
|
|
2016-07-18 13:49:27 +00:00
|
|
|
buttons.on( 'prev', function () {
|
2022-05-20 00:18:43 +00:00
|
|
|
assert.true( true, 'Switched to prev image' );
|
2015-09-25 19:55:00 +00:00
|
|
|
} );
|
2014-03-04 11:53:53 +00:00
|
|
|
|
2018-04-24 14:47:41 +00:00
|
|
|
buttons.$next.trigger( 'click' );
|
|
|
|
buttons.$prev.trigger( 'click' );
|
2014-02-28 11:50:06 +00:00
|
|
|
} );
|
2018-11-12 16:33:24 +00:00
|
|
|
}() );
|