mediawiki-skins-Vector/tests/jest/instrumentation.test.js

67 lines
1.5 KiB
JavaScript
Raw Normal View History

const instrumentation = require( '../../resources/skins.vector.search/instrumentation.js' );
describe( 'instrumentation', () => {
test.each( [
[ 0, 'acrw1_0' ],
[ 1, 'acrw1_1' ],
[ -1, 'acrw1_-1' ]
] )( 'getWprovFromResultIndex( %d ) = %s', ( index, expected ) => {
expect( instrumentation.getWprovFromResultIndex( index ) )
.toBe( expected );
} );
describe( 'generateUrl', () => {
test.each( [
[ 'string', 'title' ],
[ 'object', { title: 'title' } ]
] )( 'should generate URL from %s', ( _name, suggestion ) => {
const meta = { index: 1 };
expect( instrumentation.generateUrl( suggestion, meta ) )
.toBe( 'https://host/?title=Special%3ASearch&suggestion=title&wprov=acrw1_1' );
} );
} );
test( 'addWprovToSearchResultUrls', () => {
const url1 = 'https://host/?title=Special%3ASearch&search=Aa',
url2Base = 'https://host/?title=Special%3ASearch&search=Ab',
url3 = 'https://host/Ac';
const results = [
{
title: 'Aa',
url: url1
},
{
title: 'Ab',
url: `${url2Base}&wprov=xyz`
},
{
title: 'Ac',
url: url3
},
{
title: 'Ad'
}
];
expect( instrumentation.addWprovToSearchResultUrls( results ) )
.toStrictEqual( [
{
title: 'Aa',
url: `${url1}&wprov=acrw1_0`
},
{
title: 'Ab',
url: `${url2Base}&wprov=acrw1_1`
},
{
title: 'Ac',
url: `${url3}?wprov=acrw1_2`
},
{
title: 'Ad'
}
] );
expect( results[ 0 ].url ).toStrictEqual( url1 );
} );
} );