mediawiki-skins-Vector/tests/jest/urlGenerator.test.js
Ed Sanders 7e7486c4a5 build: Update eslint-config-wikimedia to 0.28.0 and autofix
Change-Id: I350941a711d2304fc968b3ba1f1e0afa5878578e
2024-06-06 16:22:05 +01:00

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 );
} );
} );