2014-04-01 01:41:57 +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 { StripeButtons } = require( 'mmv' );
|
|
|
|
|
2018-11-12 16:33:24 +00:00
|
|
|
( function () {
|
2014-07-16 15:24:07 +00:00
|
|
|
QUnit.module( 'mmv.ui.StripeButtons', QUnit.newMwEnvironment() );
|
2014-04-01 01:41:57 +00:00
|
|
|
|
2014-04-02 01:58:41 +00:00
|
|
|
function createStripeButtons() {
|
2023-10-24 09:53:23 +00:00
|
|
|
const $fixture = $( '#qunit-fixture' );
|
2023-05-20 08:30:52 +00:00
|
|
|
return new StripeButtons( $fixture );
|
2014-04-02 01:58:41 +00:00
|
|
|
}
|
|
|
|
|
2021-12-10 00:43:28 +00:00
|
|
|
QUnit.test( 'Sense test, object creation and UI construction', function ( assert ) {
|
2023-10-24 09:53:23 +00:00
|
|
|
const oldMwUserIsAnon = mw.user.isAnon;
|
2014-04-02 00:49:21 +00:00
|
|
|
|
2016-07-18 13:49:27 +00:00
|
|
|
// first pretend we are anonymous
|
2023-06-27 20:33:13 +00:00
|
|
|
mw.user.isAnon = () => true;
|
2023-10-24 09:53:23 +00:00
|
|
|
let buttons = createStripeButtons();
|
2014-04-01 01:41:57 +00:00
|
|
|
|
2023-05-20 08:30:52 +00:00
|
|
|
assert.true( buttons instanceof StripeButtons, 'UI element is created.' );
|
2022-05-20 00:18:43 +00:00
|
|
|
assert.strictEqual( buttons.buttons.$descriptionPage.length, 1, 'File page button created for anon.' );
|
2014-04-02 00:49:21 +00:00
|
|
|
|
2016-07-18 13:49:27 +00:00
|
|
|
// now pretend we are logged in
|
2023-06-27 20:33:13 +00:00
|
|
|
mw.user.isAnon = () => false;
|
2016-07-18 13:49:27 +00:00
|
|
|
buttons = createStripeButtons();
|
2014-04-02 00:49:21 +00:00
|
|
|
|
2016-07-18 13:49:27 +00:00
|
|
|
assert.strictEqual( buttons.buttons.$descriptionPage.length, 1, 'File page button created for logged in.' );
|
2014-04-02 00:49:21 +00:00
|
|
|
|
2016-07-18 13:49:27 +00:00
|
|
|
mw.user.isAnon = oldMwUserIsAnon;
|
2014-04-01 01:41:57 +00:00
|
|
|
} );
|
|
|
|
|
2021-12-10 00:43:28 +00:00
|
|
|
QUnit.test( 'set()/empty() sense test:', function ( assert ) {
|
2023-10-24 09:53:23 +00:00
|
|
|
const buttons = createStripeButtons();
|
|
|
|
const fakeImageInfo = { descriptionUrl: '//commons.wikimedia.org/wiki/File:Foo.jpg' };
|
|
|
|
const fakeRepoInfo = {
|
|
|
|
displayName: 'Wikimedia Commons',
|
|
|
|
isCommons: function () { return true; }
|
|
|
|
};
|
2014-04-01 01:41:57 +00:00
|
|
|
|
2014-04-02 00:07:51 +00:00
|
|
|
buttons.set( fakeImageInfo, fakeRepoInfo );
|
2014-04-01 01:41:57 +00:00
|
|
|
buttons.empty();
|
|
|
|
|
2022-05-20 00:18:43 +00:00
|
|
|
assert.true( true, 'No error on set()/empty().' );
|
2014-04-01 01:41:57 +00:00
|
|
|
} );
|
2014-09-24 21:31:41 +00:00
|
|
|
|
2017-07-25 23:38:21 +00:00
|
|
|
QUnit.test( 'Description page button', function ( assert ) {
|
2023-10-24 09:53:23 +00:00
|
|
|
const $qf = $( '#qunit-fixture' );
|
|
|
|
const buttons = new StripeButtons( $qf );
|
|
|
|
const $button = buttons.buttons.$descriptionPage;
|
|
|
|
const descriptionUrl = 'http://example.com/desc';
|
|
|
|
const descriptionUrl2 = 'http://example.com/different-desc';
|
|
|
|
const imageInfo = { descriptionUrl: descriptionUrl };
|
|
|
|
const repoInfo = {
|
|
|
|
isCommons: function () { return false; }
|
|
|
|
};
|
2014-09-24 21:31:41 +00:00
|
|
|
|
|
|
|
buttons.setDescriptionPageButton( imageInfo, repoInfo );
|
|
|
|
|
2020-01-08 19:27:58 +00:00
|
|
|
assert.strictEqual( $button.hasClass( 'mw-mmv-repo-button-commons' ), false, 'Button does not have commons class non-Commons files' );
|
|
|
|
assert.strictEqual( $button.find( 'a' ).addBack().filter( 'a' ).attr( 'href' ), descriptionUrl, 'Description page link is correct' );
|
2014-09-24 21:31:41 +00:00
|
|
|
|
2023-06-27 20:33:13 +00:00
|
|
|
repoInfo.isCommons = () => true;
|
2014-09-24 21:31:41 +00:00
|
|
|
buttons.setDescriptionPageButton( imageInfo, repoInfo );
|
|
|
|
|
2020-01-08 19:27:58 +00:00
|
|
|
assert.strictEqual( $button.hasClass( 'mw-mmv-repo-button-commons' ), true, 'Button commons class for Commons files' );
|
2021-01-30 21:05:17 +00:00
|
|
|
|
|
|
|
imageInfo.pageID = 1;
|
2023-06-27 20:33:13 +00:00
|
|
|
imageInfo.title = { getUrl: () => descriptionUrl2 };
|
2021-01-30 21:05:17 +00:00
|
|
|
repoInfo.isLocal = false;
|
|
|
|
buttons.setDescriptionPageButton( imageInfo, repoInfo );
|
|
|
|
|
|
|
|
assert.strictEqual(
|
|
|
|
$button.hasClass( 'mw-mmv-repo-button-commons' ), false,
|
|
|
|
'Button does not have commons class for Commons files with local description page'
|
|
|
|
);
|
|
|
|
assert.strictEqual(
|
|
|
|
$button.find( 'a' ).addBack().filter( 'a' ).attr( 'href' ), descriptionUrl2,
|
|
|
|
'Description page link for Commons files with local description page is correct'
|
|
|
|
);
|
2014-09-24 21:31:41 +00:00
|
|
|
} );
|
|
|
|
|
2018-11-12 16:33:24 +00:00
|
|
|
}() );
|