Merge "rdbms: make LoadBalancer::reallyOpenConnection() handle setting DBO_TRX"
[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\MySQLMasterPos;
27 use Wikimedia\TestingAccessWrapper;
28
29 class DatabaseMysqlBaseTest extends PHPUnit\Framework\TestCase {
30
31 use MediaWikiCoversValidator;
32 use PHPUnit4And6Compat;
33
34 /**
35 * @dataProvider provideDiapers
36 * @covers Wikimedia\Rdbms\DatabaseMysqlBase::addIdentifierQuotes
37 */
38 public function testAddIdentifierQuotes( $expected, $in ) {
39 $db = $this->getMockBuilder( DatabaseMysqli::class )
40 ->disableOriginalConstructor()
41 ->setMethods( null )
42 ->getMock();
43
44 $quoted = $db->addIdentifierQuotes( $in );
45 $this->assertEquals( $expected, $quoted );
46 }
47
48 /**
49 * Feeds testAddIdentifierQuotes
50 *
51 * Named per T22281 convention.
52 */
53 public static function provideDiapers() {
54 return [
55 // Format: expected, input
56 [ '``', '' ],
57
58 // Yeah I really hate loosely typed PHP idiocies nowadays
59 [ '``', null ],
60
61 // Dear codereviewer, guess what addIdentifierQuotes()
62 // will return with thoses:
63 [ '``', false ],
64 [ '`1`', true ],
65
66 // We never know what could happen
67 [ '`0`', 0 ],
68 [ '`1`', 1 ],
69
70 // Whatchout! Should probably use something more meaningful
71 [ "`'`", "'" ], # single quote
72 [ '`"`', '"' ], # double quote
73 [ '````', '`' ], # backtick
74 [ '`’`', '’' ], # apostrophe (look at your encyclopedia)
75
76 // sneaky NUL bytes are lurking everywhere
77 [ '``', "\0" ],
78 [ '`xyzzy`', "\0x\0y\0z\0z\0y\0" ],
79
80 // unicode chars
81 [
82 "`\u{0001}a\u{FFFF}b`",
83 "\u{0001}a\u{FFFF}b"
84 ],
85 [
86 "`\u{0001}\u{FFFF}`",
87 "\u{0001}\u{0000}\u{FFFF}\u{0000}"
88 ],
89 [ '`☃`', '☃' ],
90 [ '`メインページ`', 'メインページ' ],
91 [ '`Басты_бет`', 'Басты_бет' ],
92
93 // Real world:
94 [ '`Alix`', 'Alix' ], # while( ! $recovered ) { sleep(); }
95 [ '`Backtick: ```', 'Backtick: `' ],
96 [ '`This is a test`', 'This is a test' ],
97 ];
98 }
99
100 private function getMockForViews() {
101 $db = $this->getMockBuilder( DatabaseMysqli::class )
102 ->disableOriginalConstructor()
103 ->setMethods( [ 'fetchRow', 'query', 'getDBname' ] )
104 ->getMock();
105
106 $db->method( 'query' )
107 ->with( $this->anything() )
108 ->willReturn( new FakeResultWrapper( [
109 (object)[ 'Tables_in_' => 'view1' ],
110 (object)[ 'Tables_in_' => 'view2' ],
111 (object)[ 'Tables_in_' => 'myview' ]
112 ] ) );
113 $db->method( 'getDBname' )->willReturn( '' );
114
115 return $db;
116 }
117
118 /**
119 * @covers Wikimedia\Rdbms\DatabaseMysqlBase::listViews
120 */
121 public function testListviews() {
122 $db = $this->getMockForViews();
123
124 $this->assertEquals( [ 'view1', 'view2', 'myview' ],
125 $db->listViews() );
126
127 // Prefix filtering
128 $this->assertEquals( [ 'view1', 'view2' ],
129 $db->listViews( 'view' ) );
130 $this->assertEquals( [ 'myview' ],
131 $db->listViews( 'my' ) );
132 $this->assertEquals( [],
133 $db->listViews( 'UNUSED_PREFIX' ) );
134 $this->assertEquals( [ 'view1', 'view2', 'myview' ],
135 $db->listViews( '' ) );
136 }
137
138 /**
139 * @covers Wikimedia\Rdbms\MySQLMasterPos
140 */
141 public function testBinLogName() {
142 $pos = new MySQLMasterPos( "db1052.2424/4643", 1 );
143
144 $this->assertEquals( "db1052", $pos->getLogName() );
145 $this->assertEquals( "db1052.2424", $pos->getLogFile() );
146 $this->assertEquals( [ 2424, 4643 ], $pos->getLogPosition() );
147 }
148
149 /**
150 * @dataProvider provideComparePositions
151 * @covers Wikimedia\Rdbms\MySQLMasterPos
152 */
153 public function testHasReached(
154 MySQLMasterPos $lowerPos, MySQLMasterPos $higherPos, $match, $hetero
155 ) {
156 if ( $match ) {
157 $this->assertTrue( $lowerPos->channelsMatch( $higherPos ) );
158
159 if ( $hetero ) {
160 // Each position is has one channel higher than the other
161 $this->assertFalse( $higherPos->hasReached( $lowerPos ) );
162 } else {
163 $this->assertTrue( $higherPos->hasReached( $lowerPos ) );
164 }
165 $this->assertTrue( $lowerPos->hasReached( $lowerPos ) );
166 $this->assertTrue( $higherPos->hasReached( $higherPos ) );
167 $this->assertFalse( $lowerPos->hasReached( $higherPos ) );
168 } else { // channels don't match
169 $this->assertFalse( $lowerPos->channelsMatch( $higherPos ) );
170
171 $this->assertFalse( $higherPos->hasReached( $lowerPos ) );
172 $this->assertFalse( $lowerPos->hasReached( $higherPos ) );
173 }
174 }
175
176 public static function provideComparePositions() {
177 $now = microtime( true );
178
179 return [
180 // Binlog style
181 [
182 new MySQLMasterPos( 'db1034-bin.000976/843431247', $now ),
183 new MySQLMasterPos( 'db1034-bin.000976/843431248', $now ),
184 true,
185 false
186 ],
187 [
188 new MySQLMasterPos( 'db1034-bin.000976/999', $now ),
189 new MySQLMasterPos( 'db1034-bin.000976/1000', $now ),
190 true,
191 false
192 ],
193 [
194 new MySQLMasterPos( 'db1034-bin.000976/999', $now ),
195 new MySQLMasterPos( 'db1035-bin.000976/1000', $now ),
196 false,
197 false
198 ],
199 // MySQL GTID style
200 [
201 new MySQLMasterPos( '3E11FA47-71CA-11E1-9E33-C80AA9429562:1-23', $now ),
202 new MySQLMasterPos( '3E11FA47-71CA-11E1-9E33-C80AA9429562:5-24', $now ),
203 true,
204 false
205 ],
206 [
207 new MySQLMasterPos( '3E11FA47-71CA-11E1-9E33-C80AA9429562:5-99', $now ),
208 new MySQLMasterPos( '3E11FA47-71CA-11E1-9E33-C80AA9429562:1-100', $now ),
209 true,
210 false
211 ],
212 [
213 new MySQLMasterPos( '3E11FA47-71CA-11E1-9E33-C80AA9429562:1-99', $now ),
214 new MySQLMasterPos( '1E11FA47-71CA-11E1-9E33-C80AA9429562:1-100', $now ),
215 false,
216 false
217 ],
218 // MariaDB GTID style
219 [
220 new MySQLMasterPos( '255-11-23', $now ),
221 new MySQLMasterPos( '255-11-24', $now ),
222 true,
223 false
224 ],
225 [
226 new MySQLMasterPos( '255-11-99', $now ),
227 new MySQLMasterPos( '255-11-100', $now ),
228 true,
229 false
230 ],
231 [
232 new MySQLMasterPos( '255-11-999', $now ),
233 new MySQLMasterPos( '254-11-1000', $now ),
234 false,
235 false
236 ],
237 [
238 new MySQLMasterPos( '255-11-23,256-12-50', $now ),
239 new MySQLMasterPos( '255-11-24', $now ),
240 true,
241 false
242 ],
243 [
244 new MySQLMasterPos( '255-11-99,256-12-50,257-12-50', $now ),
245 new MySQLMasterPos( '255-11-1000', $now ),
246 true,
247 false
248 ],
249 [
250 new MySQLMasterPos( '255-11-23,256-12-50', $now ),
251 new MySQLMasterPos( '255-11-24,155-52-63', $now ),
252 true,
253 false
254 ],
255 [
256 new MySQLMasterPos( '255-11-99,256-12-50,257-12-50', $now ),
257 new MySQLMasterPos( '255-11-1000,256-12-51', $now ),
258 true,
259 false
260 ],
261 [
262 new MySQLMasterPos( '255-11-99,256-12-50', $now ),
263 new MySQLMasterPos( '255-13-1000,256-14-49', $now ),
264 true,
265 true
266 ],
267 [
268 new MySQLMasterPos( '253-11-999,255-11-999', $now ),
269 new MySQLMasterPos( '254-11-1000', $now ),
270 false,
271 false
272 ],
273 ];
274 }
275
276 /**
277 * @dataProvider provideChannelPositions
278 * @covers Wikimedia\Rdbms\MySQLMasterPos
279 */
280 public function testChannelsMatch( MySQLMasterPos $pos1, MySQLMasterPos $pos2, $matches ) {
281 $this->assertEquals( $matches, $pos1->channelsMatch( $pos2 ) );
282 $this->assertEquals( $matches, $pos2->channelsMatch( $pos1 ) );
283
284 $roundtripPos = new MySQLMasterPos( (string)$pos1, 1 );
285 $this->assertEquals( (string)$pos1, (string)$roundtripPos );
286 }
287
288 public static function provideChannelPositions() {
289 $now = microtime( true );
290
291 return [
292 [
293 new MySQLMasterPos( 'db1034-bin.000876/44', $now ),
294 new MySQLMasterPos( 'db1034-bin.000976/74', $now ),
295 true
296 ],
297 [
298 new MySQLMasterPos( 'db1052-bin.000976/999', $now ),
299 new MySQLMasterPos( 'db1052-bin.000976/1000', $now ),
300 true
301 ],
302 [
303 new MySQLMasterPos( 'db1066-bin.000976/9999', $now ),
304 new MySQLMasterPos( 'db1035-bin.000976/10000', $now ),
305 false
306 ],
307 [
308 new MySQLMasterPos( 'db1066-bin.000976/9999', $now ),
309 new MySQLMasterPos( 'trump2016.000976/10000', $now ),
310 false
311 ],
312 ];
313 }
314
315 /**
316 * @dataProvider provideCommonDomainGTIDs
317 * @covers Wikimedia\Rdbms\MySQLMasterPos
318 */
319 public function testCommonGtidDomains( MySQLMasterPos $pos, MySQLMasterPos $ref, $gtids ) {
320 $this->assertEquals( $gtids, MySQLMasterPos::getCommonDomainGTIDs( $pos, $ref ) );
321 }
322
323 public static function provideCommonDomainGTIDs() {
324 return [
325 [
326 new MySQLMasterPos( '255-13-99,256-12-50,257-14-50', 1 ),
327 new MySQLMasterPos( '255-11-1000', 1 ),
328 [ '255-13-99' ]
329 ],
330 [
331 new MySQLMasterPos(
332 '2E11FA47-71CA-11E1-9E33-C80AA9429562:1-5,' .
333 '3E11FA47-71CA-11E1-9E33-C80AA9429562:20-99,' .
334 '7E11FA47-71CA-11E1-9E33-C80AA9429562:1-30',
335 1
336 ),
337 new MySQLMasterPos(
338 '1E11FA47-71CA-11E1-9E33-C80AA9429562:30-100,' .
339 '3E11FA47-71CA-11E1-9E33-C80AA9429562:30-66',
340 1
341 ),
342 [ '3E11FA47-71CA-11E1-9E33-C80AA9429562:20-99' ]
343 ]
344 ];
345 }
346
347 /**
348 * @dataProvider provideLagAmounts
349 * @covers Wikimedia\Rdbms\DatabaseMysqlBase::getLag
350 * @covers Wikimedia\Rdbms\DatabaseMysqlBase::getLagFromPtHeartbeat
351 */
352 public function testPtHeartbeat( $lag ) {
353 $db = $this->getMockBuilder( DatabaseMysqli::class )
354 ->disableOriginalConstructor()
355 ->setMethods( [
356 'getLagDetectionMethod', 'getHeartbeatData', 'getMasterServerInfo' ] )
357 ->getMock();
358
359 $db->method( 'getLagDetectionMethod' )
360 ->willReturn( 'pt-heartbeat' );
361
362 $db->method( 'getMasterServerInfo' )
363 ->willReturn( [ 'serverId' => 172, 'asOf' => time() ] );
364
365 $db->setLBInfo( 'replica', true );
366
367 // Fake the current time.
368 list( $nowSecFrac, $nowSec ) = explode( ' ', microtime() );
369 $now = (float)$nowSec + (float)$nowSecFrac;
370 // Fake the heartbeat time.
371 // Work arounds for weak DataTime microseconds support.
372 $ptTime = $now - $lag;
373 $ptSec = (int)$ptTime;
374 $ptSecFrac = ( $ptTime - $ptSec );
375 $ptDateTime = new DateTime( "@$ptSec" );
376 $ptTimeISO = $ptDateTime->format( 'Y-m-d\TH:i:s' );
377 $ptTimeISO .= ltrim( number_format( $ptSecFrac, 6 ), '0' );
378
379 $db->method( 'getHeartbeatData' )
380 ->with( [ 'server_id' => 172 ] )
381 ->willReturn( [ $ptTimeISO, $now ] );
382
383 $db->setLBInfo( 'clusterMasterHost', 'db1052' );
384 $lagEst = $db->getLag();
385
386 $this->assertGreaterThan( $lag - 0.010, $lagEst, "Correct heatbeat lag" );
387 $this->assertLessThan( $lag + 0.010, $lagEst, "Correct heatbeat lag" );
388 }
389
390 public static function provideLagAmounts() {
391 return [
392 [ 0 ],
393 [ 0.3 ],
394 [ 6.5 ],
395 [ 10.1 ],
396 [ 200.2 ],
397 [ 400.7 ],
398 [ 600.22 ],
399 [ 1000.77 ],
400 ];
401 }
402
403 /**
404 * @dataProvider provideGtidData
405 * @covers Wikimedia\Rdbms\MySQLMasterPos
406 * @covers Wikimedia\Rdbms\DatabaseMysqlBase::getReplicaPos
407 * @covers Wikimedia\Rdbms\DatabaseMysqlBase::getMasterPos
408 */
409 public function testServerGtidTable( $gtable, $rBLtable, $mBLtable, $rGTIDs, $mGTIDs ) {
410 $db = $this->getMockBuilder( DatabaseMysqli::class )
411 ->disableOriginalConstructor()
412 ->setMethods( [
413 'useGTIDs',
414 'getServerGTIDs',
415 'getServerRoleStatus',
416 'getServerId',
417 'getServerUUID'
418 ] )
419 ->getMock();
420
421 $db->method( 'useGTIDs' )->willReturn( true );
422 $db->method( 'getServerGTIDs' )->willReturn( $gtable );
423 $db->method( 'getServerRoleStatus' )->willReturnCallback(
424 function ( $role ) use ( $rBLtable, $mBLtable ) {
425 if ( $role === 'SLAVE' ) {
426 return $rBLtable;
427 } elseif ( $role === 'MASTER' ) {
428 return $mBLtable;
429 }
430
431 return null;
432 }
433 );
434 $db->method( 'getServerId' )->willReturn( 1 );
435 $db->method( 'getServerUUID' )->willReturn( '2E11FA47-71CA-11E1-9E33-C80AA9429562' );
436
437 if ( is_array( $rGTIDs ) ) {
438 $this->assertEquals( $rGTIDs, $db->getReplicaPos()->getGTIDs() );
439 } else {
440 $this->assertEquals( false, $db->getReplicaPos() );
441 }
442 if ( is_array( $mGTIDs ) ) {
443 $this->assertEquals( $mGTIDs, $db->getMasterPos()->getGTIDs() );
444 } else {
445 $this->assertEquals( false, $db->getMasterPos() );
446 }
447 }
448
449 public static function provideGtidData() {
450 return [
451 // MariaDB
452 [
453 [
454 'gtid_domain_id' => 100,
455 'gtid_current_pos' => '100-13-77',
456 'gtid_binlog_pos' => '100-13-77',
457 'gtid_slave_pos' => null // master
458 ],
459 [
460 'Relay_Master_Log_File' => 'host.1600',
461 'Exec_Master_Log_Pos' => '77'
462 ],
463 [
464 'File' => 'host.1600',
465 'Position' => '77'
466 ],
467 [],
468 [ '100' => '100-13-77' ]
469 ],
470 [
471 [
472 'gtid_domain_id' => 100,
473 'gtid_current_pos' => '100-13-77',
474 'gtid_binlog_pos' => '100-13-77',
475 'gtid_slave_pos' => '100-13-77' // replica
476 ],
477 [
478 'Relay_Master_Log_File' => 'host.1600',
479 'Exec_Master_Log_Pos' => '77'
480 ],
481 [],
482 [ '100' => '100-13-77' ],
483 [ '100' => '100-13-77' ]
484 ],
485 [
486 [
487 'gtid_current_pos' => '100-13-77',
488 'gtid_binlog_pos' => '100-13-77',
489 'gtid_slave_pos' => '100-13-77' // replica
490 ],
491 [
492 'Relay_Master_Log_File' => 'host.1600',
493 'Exec_Master_Log_Pos' => '77'
494 ],
495 [],
496 [ '100' => '100-13-77' ],
497 [ '100' => '100-13-77' ]
498 ],
499 // MySQL
500 [
501 [
502 'gtid_executed' => '2E11FA47-71CA-11E1-9E33-C80AA9429562:1-77'
503 ],
504 [
505 'Relay_Master_Log_File' => 'host.1600',
506 'Exec_Master_Log_Pos' => '77'
507 ],
508 [], // only a replica
509 [ '2E11FA47-71CA-11E1-9E33-C80AA9429562'
510 => '2E11FA47-71CA-11E1-9E33-C80AA9429562:1-77' ],
511 // replica/master use same var
512 [ '2E11FA47-71CA-11E1-9E33-C80AA9429562'
513 => '2E11FA47-71CA-11E1-9E33-C80AA9429562:1-77' ],
514 ],
515 [
516 [
517 'gtid_executed' => '2E11FA47-71CA-11E1-9E33-C80AA9429562:1-49,' .
518 '2E11FA47-71CA-11E1-9E33-C80AA9429562:51-77'
519 ],
520 [
521 'Relay_Master_Log_File' => 'host.1600',
522 'Exec_Master_Log_Pos' => '77'
523 ],
524 [], // only a replica
525 [ '2E11FA47-71CA-11E1-9E33-C80AA9429562'
526 => '2E11FA47-71CA-11E1-9E33-C80AA9429562:51-77' ],
527 // replica/master use same var
528 [ '2E11FA47-71CA-11E1-9E33-C80AA9429562'
529 => '2E11FA47-71CA-11E1-9E33-C80AA9429562:51-77' ],
530 ],
531 [
532 [
533 'gtid_executed' => null, // not enabled?
534 'gtid_binlog_pos' => null
535 ],
536 [
537 'Relay_Master_Log_File' => 'host.1600',
538 'Exec_Master_Log_Pos' => '77'
539 ],
540 [], // only a replica
541 [], // binlog fallback
542 false
543 ],
544 [
545 [
546 'gtid_executed' => null, // not enabled?
547 'gtid_binlog_pos' => null
548 ],
549 [], // no replication
550 [], // no replication
551 false,
552 false
553 ]
554 ];
555 }
556
557 /**
558 * @covers Wikimedia\Rdbms\MySQLMasterPos
559 */
560 public function testSerialize() {
561 $pos = new MySQLMasterPos( '3E11FA47-71CA-11E1-9E33-C80AA9429562:99', 53636363 );
562 $roundtripPos = unserialize( serialize( $pos ) );
563
564 $this->assertEquals( $pos, $roundtripPos );
565
566 $pos = new MySQLMasterPos( '255-11-23', 53636363 );
567 $roundtripPos = unserialize( serialize( $pos ) );
568
569 $this->assertEquals( $pos, $roundtripPos );
570 }
571
572 /**
573 * @covers Wikimedia\Rdbms\DatabaseMysqlBase::isInsertSelectSafe
574 * @dataProvider provideInsertSelectCases
575 */
576 public function testInsertSelectIsSafe( $insertOpts, $selectOpts, $row, $safe ) {
577 $db = $this->getMockBuilder( DatabaseMysqli::class )
578 ->disableOriginalConstructor()
579 ->setMethods( [ 'getReplicationSafetyInfo' ] )
580 ->getMock();
581 $db->method( 'getReplicationSafetyInfo' )->willReturn( (object)$row );
582 $dbw = TestingAccessWrapper::newFromObject( $db );
583
584 $this->assertEquals( $safe, $dbw->isInsertSelectSafe( $insertOpts, $selectOpts ) );
585 }
586
587 public function provideInsertSelectCases() {
588 return [
589 [
590 [],
591 [],
592 [
593 'innodb_autoinc_lock_mode' => '2',
594 'binlog_format' => 'ROW',
595 ],
596 true
597 ],
598 [
599 [],
600 [ 'LIMIT' => 100 ],
601 [
602 'innodb_autoinc_lock_mode' => '2',
603 'binlog_format' => 'ROW',
604 ],
605 true
606 ],
607 [
608 [],
609 [ 'LIMIT' => 100 ],
610 [
611 'innodb_autoinc_lock_mode' => '0',
612 'binlog_format' => 'STATEMENT',
613 ],
614 false
615 ],
616 [
617 [],
618 [],
619 [
620 'innodb_autoinc_lock_mode' => '2',
621 'binlog_format' => 'STATEMENT',
622 ],
623 false
624 ],
625 [
626 [ 'NO_AUTO_COLUMNS' ],
627 [ 'LIMIT' => 100 ],
628 [
629 'innodb_autoinc_lock_mode' => '0',
630 'binlog_format' => 'STATEMENT',
631 ],
632 false
633 ],
634 [
635 [],
636 [],
637 [
638 'innodb_autoinc_lock_mode' => 0,
639 'binlog_format' => 'STATEMENT',
640 ],
641 true
642 ],
643 [
644 [ 'NO_AUTO_COLUMNS' ],
645 [],
646 [
647 'innodb_autoinc_lock_mode' => 2,
648 'binlog_format' => 'STATEMENT',
649 ],
650 true
651 ],
652 [
653 [ 'NO_AUTO_COLUMNS' ],
654 [],
655 [
656 'innodb_autoinc_lock_mode' => 0,
657 'binlog_format' => 'STATEMENT',
658 ],
659 true
660 ],
661
662 ];
663 }
664
665 /**
666 * @covers \Wikimedia\Rdbms\DatabaseMysqlBase::buildIntegerCast
667 */
668 public function testBuildIntegerCast() {
669 $db = $this->getMockBuilder( DatabaseMysqli::class )
670 ->disableOriginalConstructor()
671 ->setMethods( null )
672 ->getMock();
673 $output = $db->buildIntegerCast( 'fieldName' );
674 $this->assertSame( 'CAST( fieldName AS SIGNED )', $output );
675 }
676
677 /**
678 * @covers Wikimedia\Rdbms\Database::setIndexAliases
679 */
680 public function testIndexAliases() {
681 $db = $this->getMockBuilder( DatabaseMysqli::class )
682 ->disableOriginalConstructor()
683 ->setMethods( [ 'mysqlRealEscapeString', 'dbSchema', 'tablePrefix' ] )
684 ->getMock();
685 $db->method( 'mysqlRealEscapeString' )->willReturnCallback(
686 function ( $s ) {
687 return str_replace( "'", "\\'", $s );
688 }
689 );
690
691 $db->setIndexAliases( [ 'a_b_idx' => 'a_c_idx' ] );
692 $sql = $db->selectSQLText(
693 'zend', 'field', [ 'a' => 'x' ], __METHOD__, [ 'USE INDEX' => 'a_b_idx' ] );
694
695 $this->assertEquals(
696 "SELECT field FROM `zend` FORCE INDEX (a_c_idx) WHERE a = 'x' ",
697 $sql
698 );
699
700 $db->setIndexAliases( [] );
701 $sql = $db->selectSQLText(
702 'zend', 'field', [ 'a' => 'x' ], __METHOD__, [ 'USE INDEX' => 'a_b_idx' ] );
703
704 $this->assertEquals(
705 "SELECT field FROM `zend` FORCE INDEX (a_b_idx) WHERE a = 'x' ",
706 $sql
707 );
708 }
709
710 /**
711 * @covers Wikimedia\Rdbms\Database::setTableAliases
712 */
713 public function testTableAliases() {
714 $db = $this->getMockBuilder( DatabaseMysqli::class )
715 ->disableOriginalConstructor()
716 ->setMethods( [ 'mysqlRealEscapeString', 'dbSchema', 'tablePrefix' ] )
717 ->getMock();
718 $db->method( 'mysqlRealEscapeString' )->willReturnCallback(
719 function ( $s ) {
720 return str_replace( "'", "\\'", $s );
721 }
722 );
723
724 $db->setTableAliases( [
725 'meow' => [ 'dbname' => 'feline', 'schema' => null, 'prefix' => 'cat_' ]
726 ] );
727 $sql = $db->selectSQLText( 'meow', 'field', [ 'a' => 'x' ], __METHOD__ );
728
729 $this->assertEquals(
730 "SELECT field FROM `feline`.`cat_meow` WHERE a = 'x' ",
731 $sql
732 );
733
734 $db->setTableAliases( [] );
735 $sql = $db->selectSQLText( 'meow', 'field', [ 'a' => 'x' ], __METHOD__ );
736
737 $this->assertEquals(
738 "SELECT field FROM `meow` WHERE a = 'x' ",
739 $sql
740 );
741 }
742 }