Merge "phpunit: Avoid use of deprecated getMock for PHPUnit 5 compat"
[lhc/web/wiklou.git] / tests / phpunit / includes / search / SearchEngineTest.php
1 <?php
2
3 /**
4 * @group Search
5 * @group Database
6 *
7 * @covers SearchEngine<extended>
8 * @note Coverage will only ever show one of on of the Search* classes
9 */
10 class SearchEngineTest extends MediaWikiLangTestCase {
11
12 /**
13 * @var SearchEngine
14 */
15 protected $search;
16
17 /**
18 * Checks for database type & version.
19 * Will skip current test if DB does not support search.
20 */
21 protected function setUp() {
22 parent::setUp();
23
24 // Search tests require MySQL or SQLite with FTS
25 $dbType = $this->db->getType();
26 $dbSupported = ( $dbType === 'mysql' )
27 || ( $dbType === 'sqlite' && $this->db->getFulltextSearchModule() == 'FTS3' );
28
29 if ( !$dbSupported ) {
30 $this->markTestSkipped( "MySQL or SQLite with FTS3 only" );
31 }
32
33 $searchType = SearchEngineFactory::getSearchEngineClass( $this->db );
34 $this->setMwGlobals( [
35 'wgSearchType' => $searchType
36 ] );
37
38 $this->search = new $searchType( $this->db );
39 }
40
41 protected function tearDown() {
42 unset( $this->search );
43
44 parent::tearDown();
45 }
46
47 public function addDBDataOnce() {
48 if ( !$this->isWikitextNS( NS_MAIN ) ) {
49 // @todo cover the case of non-wikitext content in the main namespace
50 return;
51 }
52
53 // Reset the search type back to default - some extensions may have
54 // overridden it.
55 $this->setMwGlobals( [ 'wgSearchType' => null ] );
56
57 $this->insertPage( 'Not_Main_Page', 'This is not a main page' );
58 $this->insertPage(
59 'Talk:Not_Main_Page',
60 'This is not a talk page to the main page, see [[smithee]]'
61 );
62 $this->insertPage( 'Smithee', 'A smithee is one who smiths. See also [[Alan Smithee]]' );
63 $this->insertPage( 'Talk:Smithee', 'This article sucks.' );
64 $this->insertPage( 'Unrelated_page', 'Nothing in this page is about the S word.' );
65 $this->insertPage( 'Another_page', 'This page also is unrelated.' );
66 $this->insertPage( 'Help:Help', 'Help me!' );
67 $this->insertPage( 'Thppt', 'Blah blah' );
68 $this->insertPage( 'Alan_Smithee', 'yum' );
69 $this->insertPage( 'Pages', 'are\'food' );
70 $this->insertPage( 'HalfOneUp', 'AZ' );
71 $this->insertPage( 'FullOneUp', 'AZ' );
72 $this->insertPage( 'HalfTwoLow', 'az' );
73 $this->insertPage( 'FullTwoLow', 'az' );
74 $this->insertPage( 'HalfNumbers', '1234567890' );
75 $this->insertPage( 'FullNumbers', '1234567890' );
76 $this->insertPage( 'DomainName', 'example.com' );
77 }
78
79 protected function fetchIds( $results ) {
80 if ( !$this->isWikitextNS( NS_MAIN ) ) {
81 $this->markTestIncomplete( __CLASS__ . " does no yet support non-wikitext content "
82 . "in the main namespace" );
83 }
84 $this->assertTrue( is_object( $results ) );
85
86 $matches = [];
87 $row = $results->next();
88 while ( $row ) {
89 $matches[] = $row->getTitle()->getPrefixedText();
90 $row = $results->next();
91 }
92 $results->free();
93 # Search is not guaranteed to return results in a certain order;
94 # sort them numerically so we will compare simply that we received
95 # the expected matches.
96 sort( $matches );
97
98 return $matches;
99 }
100
101 public function testFullWidth() {
102 $this->assertEquals(
103 [ 'FullOneUp', 'FullTwoLow', 'HalfOneUp', 'HalfTwoLow' ],
104 $this->fetchIds( $this->search->searchText( 'AZ' ) ),
105 "Search for normalized from Half-width Upper" );
106 $this->assertEquals(
107 [ 'FullOneUp', 'FullTwoLow', 'HalfOneUp', 'HalfTwoLow' ],
108 $this->fetchIds( $this->search->searchText( 'az' ) ),
109 "Search for normalized from Half-width Lower" );
110 $this->assertEquals(
111 [ 'FullOneUp', 'FullTwoLow', 'HalfOneUp', 'HalfTwoLow' ],
112 $this->fetchIds( $this->search->searchText( 'AZ' ) ),
113 "Search for normalized from Full-width Upper" );
114 $this->assertEquals(
115 [ 'FullOneUp', 'FullTwoLow', 'HalfOneUp', 'HalfTwoLow' ],
116 $this->fetchIds( $this->search->searchText( 'az' ) ),
117 "Search for normalized from Full-width Lower" );
118 }
119
120 public function testTextSearch() {
121 $this->assertEquals(
122 [ 'Smithee' ],
123 $this->fetchIds( $this->search->searchText( 'smithee' ) ),
124 "Plain search failed" );
125 }
126
127 public function testTextPowerSearch() {
128 $this->search->setNamespaces( [ 0, 1, 4 ] );
129 $this->assertEquals(
130 [
131 'Smithee',
132 'Talk:Not Main Page',
133 ],
134 $this->fetchIds( $this->search->searchText( 'smithee' ) ),
135 "Power search failed" );
136 }
137
138 public function testTitleSearch() {
139 $this->assertEquals(
140 [
141 'Alan Smithee',
142 'Smithee',
143 ],
144 $this->fetchIds( $this->search->searchTitle( 'smithee' ) ),
145 "Title search failed" );
146 }
147
148 public function testTextTitlePowerSearch() {
149 $this->search->setNamespaces( [ 0, 1, 4 ] );
150 $this->assertEquals(
151 [
152 'Alan Smithee',
153 'Smithee',
154 'Talk:Smithee',
155 ],
156 $this->fetchIds( $this->search->searchTitle( 'smithee' ) ),
157 "Title power search failed" );
158 }
159
160 /**
161 * @covers SearchEngine::getSearchIndexFields
162 */
163 public function testSearchIndexFields() {
164 /**
165 * @var $mockEngine SearchEngine
166 */
167 $mockEngine = $this->getMockBuilder( 'SearchEngine' )
168 ->setMethods( [ 'makeSearchFieldMapping' ] )->getMock();
169
170 $mockFieldBuilder = function ( $name, $type ) {
171 $mockField =
172 $this->getMockBuilder( 'SearchIndexFieldDefinition' )->setConstructorArgs( [
173 $name,
174 $type
175 ] )->getMock();
176
177 $mockField->expects( $this->any() )->method( 'getMapping' )->willReturn( [
178 'testData' => 'test',
179 'name' => $name,
180 'type' => $type,
181 ] );
182
183 $mockField->expects( $this->any() )
184 ->method( 'merge' )
185 ->willReturn( $mockField );
186
187 return $mockField;
188 };
189
190 $mockEngine->expects( $this->atLeastOnce() )
191 ->method( 'makeSearchFieldMapping' )
192 ->willReturnCallback( $mockFieldBuilder );
193
194 // Not using mock since PHPUnit mocks do not work properly with references in params
195 $this->setTemporaryHook( 'SearchIndexFields',
196 function ( &$fields, SearchEngine $engine ) use ( $mockFieldBuilder ) {
197 $fields['testField'] =
198 $mockFieldBuilder( "testField", SearchIndexField::INDEX_TYPE_TEXT );
199 return true;
200 } );
201
202 $fields = $mockEngine->getSearchIndexFields();
203 $this->assertArrayHasKey( 'language', $fields );
204 $this->assertArrayHasKey( 'category', $fields );
205 $this->assertInstanceOf( 'SearchIndexField', $fields['testField'] );
206
207 $mapping = $fields['testField']->getMapping( $mockEngine );
208 $this->assertArrayHasKey( 'testData', $mapping );
209 $this->assertEquals( 'test', $mapping['testData'] );
210 }
211
212 public function hookSearchIndexFields( $mockFieldBuilder, &$fields, SearchEngine $engine ) {
213 $fields['testField'] = $mockFieldBuilder( "testField", SearchIndexField::INDEX_TYPE_TEXT );
214 return true;
215 }
216
217 public function testAugmentorSearch() {
218 $this->search->setNamespaces( [ 0, 1, 4 ] );
219 $resultSet = $this->search->searchText( 'smithee' );
220 // Not using mock since PHPUnit mocks do not work properly with references in params
221 $this->mergeMwGlobalArrayValue( 'wgHooks',
222 [ 'SearchResultsAugment' => [ [ $this, 'addAugmentors' ] ] ] );
223 $this->search->augmentSearchResults( $resultSet );
224 for ( $result = $resultSet->next(); $result; $result = $resultSet->next() ) {
225 $id = $result->getTitle()->getArticleID();
226 $augmentData = "Result:$id:" . $result->getTitle()->getText();
227 $augmentData2 = "Result2:$id:" . $result->getTitle()->getText();
228 $this->assertEquals( [ 'testSet' => $augmentData, 'testRow' => $augmentData2 ],
229 $result->getExtensionData() );
230 }
231 }
232
233 public function addAugmentors( &$setAugmentors, &$rowAugmentors ) {
234 $setAugmentor = $this->createMock( 'ResultSetAugmentor' );
235 $setAugmentor->expects( $this->once() )
236 ->method( 'augmentAll' )
237 ->willReturnCallback( function ( SearchResultSet $resultSet ) {
238 $data = [];
239 for ( $result = $resultSet->next(); $result; $result = $resultSet->next() ) {
240 $id = $result->getTitle()->getArticleID();
241 $data[$id] = "Result:$id:" . $result->getTitle()->getText();
242 }
243 $resultSet->rewind();
244 return $data;
245 } );
246 $setAugmentors['testSet'] = $setAugmentor;
247
248 $rowAugmentor = $this->createMock( 'ResultAugmentor' );
249 $rowAugmentor->expects( $this->exactly( 2 ) )
250 ->method( 'augment' )
251 ->willReturnCallback( function ( SearchResult $result ) {
252 $id = $result->getTitle()->getArticleID();
253 return "Result2:$id:" . $result->getTitle()->getText();
254 } );
255 $rowAugmentors['testRow'] = $rowAugmentor;
256 }
257 }