mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/Vector.git
synced 2024-11-15 03:34:25 +00:00
a01f839051
The legacy search wprov behavior, implemented in the WikimediaEvents extension in searchSatisfaction.js, is to use acrw1_ as the prefix (i.e. with an underscore before the index), and acrw1_-1 for user searches that didn’t select a suggestion (not acrw1). Make the Vue search match this in both cases. Bug: T317682 Change-Id: I6c84533e1811233ff2727d501327471d73fc7b62
67 lines
1.5 KiB
JavaScript
67 lines
1.5 KiB
JavaScript
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 );
|
|
} );
|
|
} );
|