Go to the documentation of this file.
25 $expectedProfile, $expectedNS, $message =
'Profile name and namespaces mismatches!'
49 'ProfileName' => $expectedProfile,
50 'Namespaces' => $expectedNS,
53 'ProfileName' => $search->getProfile(),
54 'Namespaces' => $search->getNamespaces(),
61 $defaultNS = MediaWikiServices::getInstance()->getSearchEngineConfig()->defaultNamespaces();
74 $EMPTY_REQUEST, $NO_USER_PREF,
75 'default', $defaultNS,
76 'T35270: No request nor user preferences should give default profile'
79 [
'ns5' => 1 ], $NO_USER_PREF,
81 'Web request with specific NS should override user preference'
87 ] + array_fill_keys( array_map(
function ( $ns ) {
90 'advanced', [ 2, 14 ],
91 'T35583: search with no option should honor User search preferences'
92 .
' and have all other namespace disabled'
104 if (
$opt ===
null ) {
120 'wgSearchType' =>
null,
123 # Initialize [[Special::Search]]
125 $term =
'{{SITENAME}}';
126 $ctx->setRequest(
new FauxRequest( [
'search' =>
$term,
'fulltext' => 1 ] ) );
129 $search->setContext( $ctx );
131 # Simulate a user searching for a given term
132 $search->execute(
'' );
134 # Lookup the HTML page title set for that page
142 '/' . preg_quote(
$term,
'/' ) .
'/',
144 "Search term '{$term}' should not be expanded in Special:Search <title>"
151 'With suggestion and no rewritten query shows did you mean',
152 '/Did you mean: <a[^>]+>first suggestion/',
159 'With rewritten query informs user of change',
160 '/Showing results for <a[^>]+>first suggestion/',
167 'When both queries have no results user gets no results',
168 '/There were no results matching the query/',
186 $results = array_map(
function (
$title ) {
198 ->setMethods( [
'getSearchEngine' ] )
200 $search->expects( $this->
any() )
201 ->method(
'getSearchEngine' )
202 ->will( $this->returnValue( $mockSearchEngine ) );
207 $search->showResults(
'this is a fake search' );
209 $html = $search->getContext()->getOutput()->getHTML();
210 foreach ( (
array)$expectRegex
as $regex ) {
211 $this->assertRegExp( $regex,
$html, $message );
217 ->setMethods( [
'searchText',
'searchTitle' ] )
220 $mock->expects( $this->
any() )
221 ->method(
'searchText' )
222 ->will( $this->returnValue( $results ) );
229 'wgScript' =>
'/w/index.php',
234 MediaWikiServices::getInstance()->getSpecialPageFactory()->executePath( $sp, $ctx );
235 $url = $ctx->getOutput()->getRedirect();
241 $parts = parse_url( $url );
242 $this->assertEquals(
'/w/index.php', $parts[
'path'] );
243 parse_str( $parts[
'query'],
$query );
244 $this->assertEquals(
'Special:Search',
$query[
'title'] );
245 $this->assertEquals(
'foo bar',
$query[
'search'] );
255 $rewrittenQuery =
null,
260 $this->rewrittenQuery = $rewrittenQuery;
274 return $this->suggestion !==
null;
286 return $this->rewrittenQuery !==
null;
290 return $this->rewrittenQuery;
294 return htmlspecialchars( $this->rewrittenQuery );
WebRequest clone which takes values from a provided array.
static newFromId( $id)
Static factory method for creation from a given user ID.
static newFromText( $text, $defaultNamespace=NS_MAIN)
Create a new Title from text, such as what one would find in a link.
For QUnit the mediawiki tests qunit testrunner dependency will be added to any module whereas SearchGetNearMatch runs after $term
provideRewriteQueryWithSuggestion()
do that in ParserLimitReportFormat instead use this to modify the parameters of the image all existing parser cache entries will be invalid To avoid you ll need to handle that somehow(e.g. with the RejectParserCacheValue hook) because MediaWiki won 't do it for you. & $defaults also a ContextSource after deleting those rows but within the same transaction you ll probably need to make sure the header is varied on and they can depend only on the ResourceLoaderContext $context
hasRewrittenQuery()
Some search modes will run an alternative query that it thinks gives a better result than the provide...
static newMainPage()
Create a new Title for the Main Page.
getTotalHits()
Some search modes return a total hit count for the query in the entire article database.
testRewriteQueryWithSuggestion( $message, $expectRegex, $suggestion, $rewrittenQuery, array $resultTitles)
provideRewriteQueryWithSuggestion
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
null for the wiki Added should default to null in handler for backwards compatibility add a value to it if you want to add a cookie that have to vary cache options can modify $query
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses just before the function returns a value If you return an< a > element with HTML attributes $attribs and contents $html will be returned If you return $ret will be returned and may include noclasses & $html
namespace and then decline to actually register it file or subcat img or subcat $title
newUserWithSearchNS( $opt=null)
Helper to create a new User object with given options User remains anonymous though.
as see the revision history and available at free of to any person obtaining a copy of this software and associated documentation to deal in the Software without including without limitation the rights to use
static makeTitle( $ns, $title, $fragment='', $interwiki='')
Create a new Title from a namespace index and a DB key.
Group all the pieces relevant to the context of a request into one instance.
The wiki should then use memcached to cache various data To use multiple just add more items to the array To increase the weight of a make its entry a array("192.168.0.1:11211", 2))
mockSearchEngine( $results)
Allows to change the fields on the form that will be generated $name
static provideSearchOptionsTests()
they could even be mouse clicks or menu items whatever suits your program You should also get your if any
__construct( $suggestion=null, $rewrittenQuery=null, array $results=[], $containedSyntax=false)
testProfileAndNamespaceLoading( $requested, $userOptions, $expectedProfile, $expectedNS, $message='Profile name and namespaces mismatches!')
SpecialSearch::load provideSearchOptionsTests.
implements Special:Search - Run text & title search and display the output
testSearchTermIsNotExpanded()
Verify we do not expand search term in <title> on search result page https://gerrit....
Test class for SpecialSearch class Copyright © 2012, Antoine Musso.
static newFromTitle( $title, SearchResultSet $parentSet=null)
Return a new SearchResult and initializes it with a title.
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
static factory( $code)
Get a cached or new language object for a given language code.
you have access to all of the normal MediaWiki so you can get a DB use the etc For full docs on the Maintenance class
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency MediaWikiServices
hasSuggestion()
Some search modes return a suggested alternate term if there are no exact hits.
$containedSyntax
Types of interwiki results.
wfExpandUrl( $url, $defaultProto=PROTO_CURRENT)
Expand a potentially local URL to a fully-qualified URL.
getQueryAfterRewriteSnippet()