3 use MediaWiki\MainConfigNames
;
4 use MediaWiki\Title\Title
;
10 class SearchEnginePrefixTest
extends MediaWikiLangTestCase
{
16 public function addDBDataOnce() {
17 if ( !$this->isWikitextNS( NS_MAIN
) ) {
18 // tests are skipped if NS_MAIN is not wikitext
22 $this->insertPage( 'Sandbox' );
23 $this->insertPage( 'Bar' );
24 $this->insertPage( 'Example' );
25 $this->insertPage( 'Example Bar' );
26 $this->insertPage( 'Example Foo' );
27 $this->insertPage( 'Example Foo/Bar' );
28 $this->insertPage( 'Example/Baz' );
29 $this->insertPage( 'Sample' );
30 $this->insertPage( 'Sample Ban' );
31 $this->insertPage( 'Sample Eat' );
32 $this->insertPage( 'Sample Who' );
33 $this->insertPage( 'Sample Zoo' );
34 $this->insertPage( 'Redirect test', '#REDIRECT [[Redirect Test]]' );
35 $this->insertPage( 'Redirect Test' );
36 $this->insertPage( 'Redirect Test Worse Result' );
37 $this->insertPage( 'Redirect test2', '#REDIRECT [[Redirect Test2]]' );
38 $this->insertPage( 'Redirect TEST2', '#REDIRECT [[Redirect Test2]]' );
39 $this->insertPage( 'Redirect Test2' );
40 $this->insertPage( 'Redirect Test2 Worse Result' );
42 $this->insertPage( 'Talk:Sandbox' );
43 $this->insertPage( 'Talk:Example' );
45 $this->insertPage( 'User:Example' );
46 $this->insertPage( 'Barcelona' );
47 $this->insertPage( 'Barbara' );
48 $this->insertPage( 'External' );
51 protected function setUp(): void
{
54 if ( !$this->isWikitextNS( NS_MAIN
) ) {
55 $this->markTestSkipped( 'Main namespace does not support wikitext.' );
58 // Avoid special pages from extensions interferring with the tests
59 $this->overrideConfigValues( [
60 MainConfigNames
::SpecialPages
=> [],
61 MainConfigNames
::Hooks
=> [],
64 $this->search
= $this->getServiceContainer()->newSearchEngine();
65 $this->search
->setNamespaces( [] );
68 protected function searchProvision( ?
array $results = null ) {
69 if ( $results === null ) {
70 $this->overrideConfigValue( MainConfigNames
::Hooks
, [] );
72 $this->setTemporaryHook(
73 'PrefixSearchBackend',
74 static function ( $namespaces, $search, $limit, &$srchres ) use ( $results ) {
82 public static function provideSearch() {
90 'All invalid characters, effectively empty',
95 'Main namespace with title prefix',
102 // Third result when testing offset
108 'Some invalid characters',
115 'offsetresult' => [ 'Sample Who' ],
118 'Talk namespace prefix',
126 'User namespace prefix',
133 'Special namespace prefix',
134 'query' => 'Special:',
136 'Special:ActiveUsers',
137 'Special:AllMessages',
140 // Third result when testing offset
142 'Special:AncientPages',
146 'Special namespace with prefix',
147 'query' => 'Special:Un',
150 'Special:UncategorizedCategories',
151 'Special:UncategorizedFiles',
153 // Third result when testing offset
155 'Special:UncategorizedPages',
160 'query' => 'Special:EditWatchlist',
165 'Special page subpages',
166 'query' => 'Special:EditWatchlist/',
168 'Special:EditWatchlist/clear',
169 'Special:EditWatchlist/raw',
173 'Special page subpages with prefix',
174 'query' => 'Special:EditWatchlist/cl',
176 'Special:EditWatchlist/clear',
183 * @dataProvider provideSearch
184 * @covers \SearchEngine::defaultPrefixSearch
186 public function testSearch( array $case ) {
187 $this->search
->setLimitOffset( 3 );
188 $results = $this->search
->defaultPrefixSearch( $case['query'] );
189 $results = array_map( static function ( Title
$t ) {
190 return $t->getPrefixedText();
201 * @dataProvider provideSearch
202 * @covers \SearchEngine::defaultPrefixSearch
204 public function testSearchWithOffset( array $case ) {
205 $this->search
->setLimitOffset( 3, 1 );
206 $results = $this->search
->defaultPrefixSearch( $case['query'] );
207 $results = array_map( static function ( Title
$t ) {
208 return $t->getPrefixedText();
211 // We don't expect the first result when offsetting
212 array_shift( $case['results'] );
213 // And sometimes we expect a different last result
214 $expected = isset( $case['offsetresult'] ) ?
215 array_merge( $case['results'], $case['offsetresult'] ) :
225 public static function provideSearchBackend() {
242 'Exact match not in first result should be moved to the first result (T72958)',
256 'Exact match missing from results should be added as first result (T72958)',
270 'Exact match missing and not existing pages should be dropped',
282 "Exact match shouldn't override already found match if " .
283 "exact is redirect and found isn't",
285 // Target of the exact match is low in the list
286 'Redirect Test Worse Result',
289 'query' => 'redirect test',
291 // Redirect target is pulled up and exact match isn't added
293 'Redirect Test Worse Result',
297 "Exact match should override already found match if " .
298 "both exact match and found match are redirect",
300 // Another redirect to the same target as the exact match
301 // is low in the list
302 'Redirect Test2 Worse Result',
305 'query' => 'redirect TEST2',
307 // Found redirect is pulled to the top and exact match isn't
310 'Redirect Test2 Worse Result',
314 "Exact match should override any already found matches that " .
315 "are redirects to it",
317 // Another redirect to the same target as the exact match
318 // is low in the list
319 'Redirect Test Worse Result',
322 'query' => 'Redirect Test',
324 // Found redirect is pulled to the top and exact match isn't
327 'Redirect Test Worse Result',
332 "Extra results must not be returned",
350 * @dataProvider provideSearchBackend
351 * @covers \PrefixSearch::searchBackend
353 public function testSearchBackend( array $case ) {
354 $search = $this->mockSearchWithResults( $case['provision'] );
355 $results = $search->completionSearch( $case['query'] );
357 $results = $results->map( static function ( SearchSuggestion
$s ) {
358 return $s->getText();
368 public static function paginationProvider() {
369 $res = [ 'Example', 'Example Bar', 'Example Foo', 'Example Foo/Bar' ];
371 'With less than requested results no pagination' => [
372 false, array_slice( $res, 0, 2 ),
374 'With same as requested results no pagination' => [
375 false, array_slice( $res, 0, 3 ),
377 'With extra result returned offer pagination' => [
384 * @dataProvider paginationProvider
385 * @covers \SearchSuggestionSet::hasMoreResults
387 public function testPagination( $hasMoreResults, $provision ) {
388 $search = $this->mockSearchWithResults( $provision );
389 $results = $search->completionSearch( 'irrelevant' );
391 $this->assertEquals( $hasMoreResults, $results->hasMoreResults() );
394 private function mockSearchWithResults( $titleStrings, $limit = 3 ) {
395 $search = $this->getMockBuilder( SearchEngine
::class )
396 ->onlyMethods( [ 'completionSearchBackend' ] )->getMock();
398 $return = SearchSuggestionSet
::fromStrings( $titleStrings );
400 $search->method( 'completionSearchBackend' )
401 ->willReturn( $return );
403 $search->setLimitOffset( $limit );