151 lines
5 KiB
PHP
151 lines
5 KiB
PHP
<?php
|
|
|
|
use MediaWiki\MediaWikiServices;
|
|
|
|
/**
|
|
* @covers SearchNearMatcher
|
|
*/
|
|
class SearchNearMatcherTest extends MediaWikiIntegrationTestCase {
|
|
use LinkCacheTestTrait;
|
|
|
|
public function nearMatchProvider() {
|
|
return [
|
|
'empty request returns nothing' => [ null, 'en', '', 'Near Match Test' ],
|
|
'with a hash returns nothing' => [ null, 'en', '#near match test', 'Near Match Test' ],
|
|
'wrong seach string returns nothing' => [
|
|
null, 'en', ':', 'Near Match Test'
|
|
],
|
|
'default behaviour exact' => [
|
|
'Near Match Test', 'en', 'Near Match Test', 'Near Match Test'
|
|
],
|
|
'default behaviour uppercased' => [
|
|
'NEAR MATCH TEST', 'en', 'near match test', 'NEAR MATCH TEST'
|
|
],
|
|
'default behaviour first capitalized' => [
|
|
'Near match test', 'en', 'near match test', 'Near match test'
|
|
],
|
|
'default behaviour capitalized' => [
|
|
'Near Match Test', 'en', 'near match test', 'Near Match Test'
|
|
],
|
|
'default behaviour lowercased' => [
|
|
'Near match test', 'en', 'NEAR MATCH TEST', 'Near match test'
|
|
],
|
|
'default behaviour hyphenated' => [
|
|
'Near-Match-Test', 'en', 'near-match-test', 'Near-Match-Test'
|
|
],
|
|
'default behaviour quoted' => [
|
|
'Near Match Test', 'en', '"Near Match Test"', 'Near Match Test'
|
|
],
|
|
'check language with variants direct' => [ 'Near', 'tg', 'near', 'Near' ],
|
|
'check language with variants converted' => [ 'Near', 'tg', 'неар', 'Near' ],
|
|
'no matching' => [ null, 'en', 'near match test', 'Far Match Test' ],
|
|
// Special cases: files
|
|
'file ok' => [ 'File:Example.svg', 'en', 'File:Example.svg', 'File:Example.svg' ],
|
|
'file not ok' => [ null, 'en', 'File:Example_s.svg', 'File:Example.svg' ],
|
|
// Special cases: users
|
|
'user ok' => [ 'User:Superuser', 'en', 'User:Superuser', 'User:Superuser' ],
|
|
'user ok even if no user' => [
|
|
'User:SuperuserNew', 'en', 'User:SuperuserNew', 'User:Superuser'
|
|
],
|
|
'user search use by IP' => [
|
|
'Special:Contributions/132.17.48.1', 'en', 'User:132.17.48.1', 'User:Superuser', true,
|
|
],
|
|
// Special cases: other content types
|
|
'mediawiki ok even if no page' => [
|
|
'MediaWiki:Add New Page', 'en', 'MediaWiki:Add New Page', 'MediaWiki:Add Old Page'
|
|
],
|
|
'Media ok' => [
|
|
'File:Text', 'en', 'Media:Text', 'File:Text', true,
|
|
],
|
|
'Media not ok' => [
|
|
null, 'en', 'Media:Text', 'Media:Text', true,
|
|
],
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @dataProvider nearMatchProvider
|
|
* @covers SearchNearMatcher::getNearMatchInternal
|
|
* @covers SearchNearMatcher::getNearMatch
|
|
*/
|
|
public function testNearMatch(
|
|
$expected,
|
|
$langCode,
|
|
$searchterm,
|
|
$titleText,
|
|
$enableSearchContributorsByIP = false
|
|
) {
|
|
$services = MediaWikiServices::getInstance();
|
|
$this->addGoodLinkObject( 42, Title::newFromText( $titleText ) );
|
|
$config = new HashConfig( [
|
|
'EnableSearchContributorsByIP' => $enableSearchContributorsByIP,
|
|
] );
|
|
$lang = $services->getLanguageFactory()->getLanguage( $langCode );
|
|
$hookContainer = $services->getHookContainer();
|
|
$matcher = new SearchNearMatcher( $config, $lang, $hookContainer );
|
|
$title = $matcher->getNearMatch( $searchterm );
|
|
$this->assertEquals( $expected, $title === null ? null : (string)$title );
|
|
}
|
|
|
|
public function hooksProvider() {
|
|
return [
|
|
'SearchGetNearMatchBefore' => [ 'SearchGetNearMatchBefore' ],
|
|
'SearchAfterNoDirectMatch' => [ 'SearchAfterNoDirectMatch' ],
|
|
'SearchGetNearMatch' => [ 'SearchGetNearMatch' ]
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @dataProvider hooksProvider
|
|
* @covers SearchNearMatcher::getNearMatchInternal
|
|
* @covers SearchNearMatcher::getNearMatch
|
|
*/
|
|
public function testNearMatch_Hooks( $hook ) {
|
|
$services = MediaWikiServices::getInstance();
|
|
$config = new HashConfig( [
|
|
'EnableSearchContributorsByIP' => false,
|
|
] );
|
|
|
|
$this->setTemporaryHook( $hook, static function ( $term, &$title ) {
|
|
if ( $term === [ 'Hook' ] || $term === 'Hook' ) {
|
|
$title = Title::newFromText( 'TitleFromHook' );
|
|
return false;
|
|
}
|
|
return null;
|
|
} );
|
|
|
|
$lang = $services->getLanguageFactory()->getLanguage( 'en' );
|
|
$hookContainer = $services->getHookContainer();
|
|
$matcher = new SearchNearMatcher( $config, $lang, $hookContainer );
|
|
$title = $matcher->getNearMatch( 'Hook' );
|
|
$this->assertEquals( 'TitleFromHook', $title );
|
|
|
|
$this->assertNull( $matcher->getNearMatch( 'OtherHook' ) );
|
|
}
|
|
|
|
/**
|
|
* @covers SearchNearMatcher::getNearMatchResultSet
|
|
*/
|
|
public function testGetNearMatchResultSet() {
|
|
$services = MediaWikiServices::getInstance();
|
|
$this->addGoodLinkObject( 42, Title::newFromText( "Test Link" ) );
|
|
|
|
$config = new HashConfig( [
|
|
'EnableSearchContributorsByIP' => false,
|
|
] );
|
|
|
|
$lang = $services->getLanguageFactory()->getLanguage( 'en' );
|
|
$hookContainer = $services->getHookContainer();
|
|
$matcher = new SearchNearMatcher( $config, $lang, $hookContainer );
|
|
$result = $matcher->getNearMatchResultSet( 'Test Link' );
|
|
$this->assertSame( 1, $result->numRows() );
|
|
|
|
$result = $matcher->getNearMatchResultSet( 'Test Link Wrong' );
|
|
$this->assertSame( 0, $result->numRows() );
|
|
}
|
|
|
|
protected function tearDown(): void {
|
|
Title::clearCaches();
|
|
parent::tearDown();
|
|
}
|
|
}
|