Page MenuHomeWickedGov Phorge

MockSearchEngine.php
No OneTemporary

Size
1 KB
Referenced Files
None
Subscribers
None

MockSearchEngine.php

<?php
class MockSearchEngine extends SearchEngine {
use LinkCacheTestTrait;
/** @var SearchResult[][] */
private static $results = [];
/** @var ISearchResultSet[][] */
private static $interwikiResults = [];
public static function clearMockResults() {
self::$results = [];
self::$interwikiResults = [];
}
/**
* @param string $query The query searched for *after* initial
* transformations have been applied.
* @param SearchResult[] $results The results to return for $query
*/
public static function addMockResults( $query, array $results ) {
$mockSearchEngine = new self();
foreach ( $results as &$result ) {
// Resolve deferred results; needed to work around T203279
if ( is_callable( $result ) ) {
$result = $result();
}
// TODO: better page ids? Does it matter?
$mockSearchEngine->addGoodLinkObject( mt_rand(), $result->getTitle() );
}
self::$results[$query] = $results;
}
/**
* @param ISearchResultSet[][] $interwikiResults
*/
public static function setMockInterwikiResults( array $interwikiResults ) {
self::$interwikiResults = $interwikiResults;
}
/** @inheritDoc */
protected function doSearchText( $term ) {
if ( isset( self::$results[ $term ] ) ) {
$results = array_slice( self::$results[ $term ], $this->offset, $this->limit );
} else {
$results = [];
}
return new MockSearchResultSet( $results, self::$interwikiResults );
}
}

File Metadata

Mime Type
text/x-php
Expires
Wed, Aug 19, 14:18 (3 w, 4 d ago)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
9a/38/c25eda1038e6273f46e21f73d24f
Default Alt Text
MockSearchEngine.php (1 KB)

Event Timeline