Merge "Add SPARQL client to core"
[lhc/web/wiklou.git] / tests / phpunit / includes / libs / rdbms / database / DatabaseMysqlBaseTest.php
1 <?php
2 /**
3 * Holds tests for DatabaseMysqlBase class.
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
19 *
20 * @file
21 * @author Antoine Musso
22 * @copyright © 2013 Antoine Musso
23 * @copyright © 2013 Wikimedia Foundation and contributors
24 */
25
26 use Wikimedia\Rdbms\TransactionProfiler;
27 use Wikimedia\Rdbms\DatabaseDomain;
28 use Wikimedia\Rdbms\MySQLMasterPos;
29 use Wikimedia\Rdbms\DatabaseMysqlBase;
30 use Wikimedia\Rdbms\DatabaseMysqli;
31 use Wikimedia\Rdbms\Database;
32
33 /**
34 * Fake class around abstract class so we can call concrete methods.
35 */
36 class FakeDatabaseMysqlBase extends DatabaseMysqlBase {
37 // From Database
38 function __construct() {
39 $this->profiler = new ProfilerStub( [] );
40 $this->trxProfiler = new TransactionProfiler();
41 $this->cliMode = true;
42 $this->connLogger = new \Psr\Log\NullLogger();
43 $this->queryLogger = new \Psr\Log\NullLogger();
44 $this->errorLogger = function ( Exception $e ) {
45 wfWarn( get_class( $e ) . ": {$e->getMessage()}" );
46 };
47 $this->currentDomain = DatabaseDomain::newUnspecified();
48 }
49
50 protected function closeConnection() {
51 }
52
53 protected function doQuery( $sql ) {
54 }
55
56 protected function fetchAffectedRowCount() {
57 }
58
59 // From DatabaseMysqli
60 protected function mysqlConnect( $realServer ) {
61 }
62
63 protected function mysqlSetCharset( $charset ) {
64 }
65
66 protected function mysqlFreeResult( $res ) {
67 }
68
69 protected function mysqlFetchObject( $res ) {
70 }
71
72 protected function mysqlFetchArray( $res ) {
73 }
74
75 protected function mysqlNumRows( $res ) {
76 }
77
78 protected function mysqlNumFields( $res ) {
79 }
80
81 protected function mysqlFieldName( $res, $n ) {
82 }
83
84 protected function mysqlFieldType( $res, $n ) {
85 }
86
87 protected function mysqlDataSeek( $res, $row ) {
88 }
89
90 protected function mysqlError( $conn = null ) {
91 }
92
93 protected function mysqlFetchField( $res, $n ) {
94 }
95
96 protected function mysqlRealEscapeString( $s ) {
97 }
98
99 function insertId() {
100 }
101
102 function lastErrno() {
103 }
104
105 function affectedRows() {
106 }
107
108 function getServerVersion() {
109 }
110 }
111
112 class DatabaseMysqlBaseTest extends PHPUnit_Framework_TestCase {
113
114 use MediaWikiCoversValidator;
115
116 /**
117 * @dataProvider provideDiapers
118 * @covers Wikimedia\Rdbms\DatabaseMysqlBase::addIdentifierQuotes
119 */
120 public function testAddIdentifierQuotes( $expected, $in ) {
121 $db = new FakeDatabaseMysqlBase();
122 $quoted = $db->addIdentifierQuotes( $in );
123 $this->assertEquals( $expected, $quoted );
124 }
125
126 /**
127 * Feeds testAddIdentifierQuotes
128 *
129 * Named per T22281 convention.
130 */
131 public static function provideDiapers() {
132 return [
133 // Format: expected, input
134 [ '``', '' ],
135
136 // Yeah I really hate loosely typed PHP idiocies nowadays
137 [ '``', null ],
138
139 // Dear codereviewer, guess what addIdentifierQuotes()
140 // will return with thoses:
141 [ '``', false ],
142 [ '`1`', true ],
143
144 // We never know what could happen
145 [ '`0`', 0 ],
146 [ '`1`', 1 ],
147
148 // Whatchout! Should probably use something more meaningful
149 [ "`'`", "'" ], # single quote
150 [ '`"`', '"' ], # double quote
151 [ '````', '`' ], # backtick
152 [ '`’`', '’' ], # apostrophe (look at your encyclopedia)
153
154 // sneaky NUL bytes are lurking everywhere
155 [ '``', "\0" ],
156 [ '`xyzzy`', "\0x\0y\0z\0z\0y\0" ],
157
158 // unicode chars
159 [
160 self::createUnicodeString( '`\u0001a\uFFFFb`' ),
161 self::createUnicodeString( '\u0001a\uFFFFb' )
162 ],
163 [
164 self::createUnicodeString( '`\u0001\uFFFF`' ),
165 self::createUnicodeString( '\u0001\u0000\uFFFF\u0000' )
166 ],
167 [ '`☃`', '☃' ],
168 [ '`メインページ`', 'メインページ' ],
169 [ '`Басты_бет`', 'Басты_бет' ],
170
171 // Real world:
172 [ '`Alix`', 'Alix' ], # while( ! $recovered ) { sleep(); }
173 [ '`Backtick: ```', 'Backtick: `' ],
174 [ '`This is a test`', 'This is a test' ],
175 ];
176 }
177
178 private static function createUnicodeString( $str ) {
179 return json_decode( '"' . $str . '"' );
180 }
181
182 private function getMockForViews() {
183 $db = $this->getMockBuilder( DatabaseMysqli::class )
184 ->disableOriginalConstructor()
185 ->setMethods( [ 'fetchRow', 'query' ] )
186 ->getMock();
187
188 $db->method( 'query' )
189 ->with( $this->anything() )
190 ->willReturn( new FakeResultWrapper( [
191 (object)[ 'Tables_in_' => 'view1' ],
192 (object)[ 'Tables_in_' => 'view2' ],
193 (object)[ 'Tables_in_' => 'myview' ]
194 ] ) );
195
196 return $db;
197 }
198
199 /**
200 * @covers Wikimedia\Rdbms\DatabaseMysqlBase::listViews
201 */
202 public function testListviews() {
203 $db = $this->getMockForViews();
204
205 $this->assertEquals( [ 'view1', 'view2', 'myview' ],
206 $db->listViews() );
207
208 // Prefix filtering
209 $this->assertEquals( [ 'view1', 'view2' ],
210 $db->listViews( 'view' ) );
211 $this->assertEquals( [ 'myview' ],
212 $db->listViews( 'my' ) );
213 $this->assertEquals( [],
214 $db->listViews( 'UNUSED_PREFIX' ) );
215 $this->assertEquals( [ 'view1', 'view2', 'myview' ],
216 $db->listViews( '' ) );
217 }
218
219 /**
220 * @dataProvider provideComparePositions
221 * @covers Wikimedia\Rdbms\MySQLMasterPos
222 */
223 public function testHasReached( MySQLMasterPos $lowerPos, MySQLMasterPos $higherPos, $match ) {
224 if ( $match ) {
225 $this->assertTrue( $lowerPos->channelsMatch( $higherPos ) );
226
227 $this->assertTrue( $higherPos->hasReached( $lowerPos ) );
228 $this->assertTrue( $higherPos->hasReached( $higherPos ) );
229 $this->assertTrue( $lowerPos->hasReached( $lowerPos ) );
230 $this->assertFalse( $lowerPos->hasReached( $higherPos ) );
231 } else { // channels don't match
232 $this->assertFalse( $lowerPos->channelsMatch( $higherPos ) );
233
234 $this->assertFalse( $higherPos->hasReached( $lowerPos ) );
235 $this->assertFalse( $lowerPos->hasReached( $higherPos ) );
236 }
237 }
238
239 public static function provideComparePositions() {
240 return [
241 // Binlog style
242 [
243 new MySQLMasterPos( 'db1034-bin.000976', '843431247' ),
244 new MySQLMasterPos( 'db1034-bin.000976', '843431248' ),
245 true
246 ],
247 [
248 new MySQLMasterPos( 'db1034-bin.000976', '999' ),
249 new MySQLMasterPos( 'db1034-bin.000976', '1000' ),
250 true
251 ],
252 [
253 new MySQLMasterPos( 'db1034-bin.000976', '999' ),
254 new MySQLMasterPos( 'db1035-bin.000976', '1000' ),
255 false
256 ],
257 // MySQL GTID style
258 [
259 new MySQLMasterPos( 'db1-bin.2', '1', '3E11FA47-71CA-11E1-9E33-C80AA9429562:23' ),
260 new MySQLMasterPos( 'db1-bin.2', '2', '3E11FA47-71CA-11E1-9E33-C80AA9429562:24' ),
261 true
262 ],
263 [
264 new MySQLMasterPos( 'db1-bin.2', '1', '3E11FA47-71CA-11E1-9E33-C80AA9429562:99' ),
265 new MySQLMasterPos( 'db1-bin.2', '2', '3E11FA47-71CA-11E1-9E33-C80AA9429562:100' ),
266 true
267 ],
268 [
269 new MySQLMasterPos( 'db1-bin.2', '1', '3E11FA47-71CA-11E1-9E33-C80AA9429562:99' ),
270 new MySQLMasterPos( 'db1-bin.2', '2', '1E11FA47-71CA-11E1-9E33-C80AA9429562:100' ),
271 false
272 ],
273 // MariaDB GTID style
274 [
275 new MySQLMasterPos( 'db1-bin.2', '1', '255-11-23' ),
276 new MySQLMasterPos( 'db1-bin.2', '2', '255-11-24' ),
277 true
278 ],
279 [
280 new MySQLMasterPos( 'db1-bin.2', '1', '255-11-99' ),
281 new MySQLMasterPos( 'db1-bin.2', '2', '255-11-100' ),
282 true
283 ],
284 [
285 new MySQLMasterPos( 'db1-bin.2', '1', '255-11-999' ),
286 new MySQLMasterPos( 'db1-bin.2', '2', '254-11-1000' ),
287 false
288 ],
289 ];
290 }
291
292 /**
293 * @dataProvider provideChannelPositions
294 * @covers Wikimedia\Rdbms\MySQLMasterPos
295 */
296 public function testChannelsMatch( MySQLMasterPos $pos1, MySQLMasterPos $pos2, $matches ) {
297 $this->assertEquals( $matches, $pos1->channelsMatch( $pos2 ) );
298 $this->assertEquals( $matches, $pos2->channelsMatch( $pos1 ) );
299 }
300
301 public static function provideChannelPositions() {
302 return [
303 [
304 new MySQLMasterPos( 'db1034-bin.000876', '44' ),
305 new MySQLMasterPos( 'db1034-bin.000976', '74' ),
306 true
307 ],
308 [
309 new MySQLMasterPos( 'db1052-bin.000976', '999' ),
310 new MySQLMasterPos( 'db1052-bin.000976', '1000' ),
311 true
312 ],
313 [
314 new MySQLMasterPos( 'db1066-bin.000976', '9999' ),
315 new MySQLMasterPos( 'db1035-bin.000976', '10000' ),
316 false
317 ],
318 [
319 new MySQLMasterPos( 'db1066-bin.000976', '9999' ),
320 new MySQLMasterPos( 'trump2016.000976', '10000' ),
321 false
322 ],
323 ];
324 }
325
326 /**
327 * @dataProvider provideLagAmounts
328 * @covers Wikimedia\Rdbms\DatabaseMysqlBase::getLag
329 * @covers Wikimedia\Rdbms\DatabaseMysqlBase::getLagFromPtHeartbeat
330 */
331 public function testPtHeartbeat( $lag ) {
332 $db = $this->getMockBuilder( DatabaseMysqli::class )
333 ->disableOriginalConstructor()
334 ->setMethods( [
335 'getLagDetectionMethod', 'getHeartbeatData', 'getMasterServerInfo' ] )
336 ->getMock();
337
338 $db->method( 'getLagDetectionMethod' )
339 ->willReturn( 'pt-heartbeat' );
340
341 $db->method( 'getMasterServerInfo' )
342 ->willReturn( [ 'serverId' => 172, 'asOf' => time() ] );
343
344 // Fake the current time.
345 list( $nowSecFrac, $nowSec ) = explode( ' ', microtime() );
346 $now = (float)$nowSec + (float)$nowSecFrac;
347 // Fake the heartbeat time.
348 // Work arounds for weak DataTime microseconds support.
349 $ptTime = $now - $lag;
350 $ptSec = (int)$ptTime;
351 $ptSecFrac = ( $ptTime - $ptSec );
352 $ptDateTime = new DateTime( "@$ptSec" );
353 $ptTimeISO = $ptDateTime->format( 'Y-m-d\TH:i:s' );
354 $ptTimeISO .= ltrim( number_format( $ptSecFrac, 6 ), '0' );
355
356 $db->method( 'getHeartbeatData' )
357 ->with( [ 'server_id' => 172 ] )
358 ->willReturn( [ $ptTimeISO, $now ] );
359
360 $db->setLBInfo( 'clusterMasterHost', 'db1052' );
361 $lagEst = $db->getLag();
362
363 $this->assertGreaterThan( $lag - 0.010, $lagEst, "Correct heatbeat lag" );
364 $this->assertLessThan( $lag + 0.010, $lagEst, "Correct heatbeat lag" );
365 }
366
367 public static function provideLagAmounts() {
368 return [
369 [ 0 ],
370 [ 0.3 ],
371 [ 6.5 ],
372 [ 10.1 ],
373 [ 200.2 ],
374 [ 400.7 ],
375 [ 600.22 ],
376 [ 1000.77 ],
377 ];
378 }
379
380 /**
381 * @expectedException UnexpectedValueException
382 * @covers Wikimedia\Rdbms\Database::setFlag
383 */
384 public function testDBOIgnoreSet() {
385 $db = new FakeDatabaseMysqlBase();
386
387 $db->setFlag( Database::DBO_IGNORE );
388 }
389
390 /**
391 * @expectedException UnexpectedValueException
392 * @covers Wikimedia\Rdbms\Database::clearFlag
393 */
394 public function testDBOIgnoreClear() {
395 $db = new FakeDatabaseMysqlBase();
396
397 $db->clearFlag( Database::DBO_IGNORE );
398 }
399 }