mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/Vector.git
synced 2024-11-11 16:59:09 +00:00
7e7486c4a5
Change-Id: I350941a711d2304fc968b3ba1f1e0afa5878578e
52 lines
1.4 KiB
JavaScript
52 lines
1.4 KiB
JavaScript
const urlGenerator = require( '../../resources/skins.vector.search/urlGenerator.js' );
|
|
|
|
describe( 'urlGenerator', () => {
|
|
describe( 'default', () => {
|
|
test.each( [
|
|
[ 'string', 'title', '&fulltext=1' ],
|
|
[ 'object', { title: 'title', id: 0, key: '' } ]
|
|
] )( 'suggestion as %s', ( _name, suggestion, extraParams = '' ) => {
|
|
const config = {
|
|
get: jest.fn().mockImplementation( ( key, fallback ) => {
|
|
if ( key === 'wgScript' ) {
|
|
return '/w/index.php';
|
|
}
|
|
return fallback;
|
|
} ),
|
|
set: jest.fn()
|
|
};
|
|
|
|
expect( urlGenerator( config ).generateUrl( suggestion ) )
|
|
.toBe( `/w/index.php?title=Special%3ASearch${ extraParams }&search=title` );
|
|
} );
|
|
|
|
test( 'custom params, articlePath', () => {
|
|
const config = {
|
|
get: jest.fn().mockImplementation( ( _key, fallback ) => fallback ),
|
|
set: jest.fn()
|
|
};
|
|
|
|
expect( urlGenerator( config ).generateUrl(
|
|
{ title: 'title', id: 0, key: '' },
|
|
{ TITLE: 'SPECIAL:SEARCH' },
|
|
'/W/INDEX.PHP'
|
|
) ).toBe( '/W/INDEX.PHP?TITLE=SPECIAL%3ASEARCH&search=title' );
|
|
} );
|
|
} );
|
|
|
|
test( 'custom', () => {
|
|
const customGenerator = {};
|
|
const config = {
|
|
get: jest.fn().mockImplementation( ( key, fallback ) => {
|
|
if ( key === 'wgVectorSearchUrlGenerator' ) {
|
|
return customGenerator;
|
|
}
|
|
return fallback;
|
|
} ),
|
|
set: jest.fn()
|
|
};
|
|
|
|
expect( urlGenerator( config ) ).toBe( customGenerator );
|
|
} );
|
|
} );
|