mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/RelatedArticles
synced 2024-11-28 02:00:17 +00:00
fbc696177a
I33936a3 didn't introduce a regression but highlighted an issue with the fixture in the RelatedPagesGateway unit test: the fixture is in the legacy JSON format despite the API request URL including formatversion=2. Change-Id: Id372d022625d88eea685267ea6b6484cf6b28cbc
94 lines
2.9 KiB
JavaScript
94 lines
2.9 KiB
JavaScript
( function ( M, $ ) {
|
|
var RelatedPagesGateway = mw.relatedPages.RelatedPagesGateway,
|
|
relatedPages = {
|
|
query: {
|
|
pages: [
|
|
{
|
|
pageid: 123,
|
|
title: 'Oh noes',
|
|
ns: 0,
|
|
thumbnail: {
|
|
source: 'http://placehold.it/200x100'
|
|
}
|
|
}
|
|
]
|
|
}
|
|
},
|
|
emptyRelatedPages = {
|
|
query: {
|
|
pages: []
|
|
}
|
|
};
|
|
|
|
QUnit.module( 'ext.relatedArticles.gateway', {
|
|
setup: function () {
|
|
this.api = new mw.Api();
|
|
}
|
|
} );
|
|
|
|
QUnit.test( 'Returns an array with the results when api responds', 2, function ( assert ) {
|
|
var gateway = new RelatedPagesGateway( this.api, 'Foo', null, true );
|
|
this.sandbox.stub( this.api, 'get' ).returns( $.Deferred().resolve( relatedPages ) );
|
|
|
|
gateway.getForCurrentPage( 1 ).then( function ( results ) {
|
|
assert.ok( $.isArray( results ), 'Results must be an array' );
|
|
assert.strictEqual( results[ 0 ].title, 'Oh noes' );
|
|
} );
|
|
} );
|
|
|
|
QUnit.test( 'Empty related pages is handled fine.', 2, function ( assert ) {
|
|
var gateway = new RelatedPagesGateway( this.api, 'Foo', null, true );
|
|
this.sandbox.stub( this.api, 'get' ).returns( $.Deferred().resolve( emptyRelatedPages ) );
|
|
|
|
gateway.getForCurrentPage( 1 ).then( function ( results ) {
|
|
assert.ok( $.isArray( results ), 'Results must be an array' );
|
|
assert.strictEqual( results.length, 0 );
|
|
} );
|
|
} );
|
|
|
|
QUnit.test( 'Empty related pages with no cirrus search is handled fine. No API request.', 3, function ( assert ) {
|
|
var gateway = new RelatedPagesGateway( this.api, 'Foo', [], false ),
|
|
spy = this.sandbox.stub( this.api, 'get' ).returns( $.Deferred().resolve( relatedPages ) );
|
|
|
|
gateway.getForCurrentPage( 1 ).then( function ( results ) {
|
|
assert.ok( $.isArray( results ), 'Results must be an array' );
|
|
assert.ok( !spy.called, 'API is not invoked' );
|
|
assert.strictEqual( results.length, 0 );
|
|
} );
|
|
} );
|
|
|
|
QUnit.test( 'Related pages from editor curated content', 1, function ( assert ) {
|
|
var gateway = new RelatedPagesGateway( this.api, 'Foo', [ { title: 1 } ], false );
|
|
this.sandbox.stub( this.api, 'get' ).returns( $.Deferred().resolve( relatedPages ) );
|
|
|
|
gateway.getForCurrentPage( 1 ).then( function ( results ) {
|
|
assert.strictEqual( results.length, 1,
|
|
'API still hit despite cirrus being disabled.' );
|
|
} );
|
|
} );
|
|
|
|
QUnit.test( 'Ignore related pages from editor curated content', 1, function ( assert ) {
|
|
var wgRelatedArticles = [
|
|
'Bar',
|
|
'Baz',
|
|
'Qux'
|
|
],
|
|
gateway = new RelatedPagesGateway( this.api, 'Foo', wgRelatedArticles, true, true ),
|
|
spy;
|
|
|
|
spy = this.sandbox.stub( this.api, 'get' )
|
|
.returns( $.Deferred().resolve( relatedPages ) );
|
|
|
|
gateway.getForCurrentPage( 1 ).then( function () {
|
|
var parameters = spy.lastCall.args[ 0 ];
|
|
|
|
assert.strictEqual(
|
|
parameters.generator,
|
|
'search',
|
|
'it should hit the CirrusSearch API even though wgRelatedArticles is non-empty'
|
|
);
|
|
} );
|
|
} );
|
|
|
|
}( mw.mobileFrontend, jQuery ) );
|