���ѧۧݧ�ӧ�� �ާ֧ߧ֧էا֧� - ���֧էѧܧ�ڧ��ӧѧ�� - /home/rickpfrv/wiki.craftaro.com/tests/phpunit/unit/includes/libs/rdbms/ChronologyProtectorTest.php
���ѧ٧ѧ�
<?php /** * Holds tests for ChronologyProtector abstract MediaWiki class. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * http://www.gnu.org/copyleft/gpl.html * * @file */ use Wikimedia\Rdbms\ChronologyProtector; use Wikimedia\Rdbms\DBPrimaryPos; use Wikimedia\Rdbms\ILoadBalancer; use Wikimedia\Rdbms\MySQLPrimaryPos; /** * @covers \Wikimedia\Rdbms\ChronologyProtector */ class ChronologyProtectorTest extends PHPUnit\Framework\TestCase { /** * @dataProvider clientIdProvider * @param array $client * @param string $secret * @param string $expectedId */ public function testClientId( array $client, $secret, $expectedId ) { $bag = new HashBagOStuff(); $cp = new ChronologyProtector( $bag, $client, null, $secret ); $this->assertEquals( $expectedId, $cp->getClientId() ); } public function clientIdProvider() { return [ [ [ 'ip' => '127.0.0.1', 'agent' => "Totally-Not-FireFox" ], '', '45e93a9c215c031d38b7c42d8e4700ca', ], [ [ 'ip' => '127.0.0.7', 'agent' => "Totally-Not-FireFox" ], '', 'b1d604117b51746c35c3df9f293c84dc' ], [ [ 'ip' => '127.0.0.1', 'agent' => "Totally-FireFox" ], '', '731b4e06a65e2346b497fc811571c4d7' ], [ [ 'ip' => '127.0.0.1', 'agent' => "Totally-Not-FireFox" ], 'secret', 'defff51ded73cd901253d874c9b2077d' ] ]; } /** * @covers \Wikimedia\Rdbms\ChronologyProtector * @covers \Wikimedia\Rdbms\MySQLPrimaryPos */ public function testPositionMarshalling() { $replicationPos = '1-2-3'; $time = 100; $lb = $this->createMock( ILoadBalancer::class ); $lb->method( 'getClusterName' )->willReturn( 'test' ); $lb->method( 'getServerName' )->willReturn( 'primary' ); $lb->method( 'hasOrMadeRecentPrimaryChanges' )->willReturn( true ); $lb->method( 'hasStreamingReplicaServers' )->willReturn( true ); $lb->method( 'getReplicaResumePos' )->willReturnCallback( static function () use ( &$replicationPos, &$time ) { return new MySQLPrimaryPos( $replicationPos, $time ); } ); $client = [ 'ip' => '127.0.0.1', 'agent' => "Burninator" ]; $secret = '0815'; $bag = new HashBagOStuff(); $cp = new ChronologyProtector( $bag, $client, null, $secret ); $clientPostIndex = 0; $cp->stageSessionReplicationPosition( $lb ); $cp->persistSessionReplicationPositions( $clientPostIndex ); // Do it a second time so the values that were written the first // time get read from the cache. $replicationPos = '3-4-5'; $time++; $cp->stageSessionReplicationPosition( $lb ); $cp->persistSessionReplicationPositions( $clientPostIndex ); $lb->method( 'waitFor' )->willReturnCallback( function ( DBPrimaryPos $pos ) use ( &$replicationPos, &$time ) { $this->assertSame( $time, $pos->asOfTime() ); $this->assertSame( "$replicationPos", "$pos" ); } ); $cp->applySessionReplicationPosition( $lb ); } }
| ver. 1.4 |
Github
|
.
| PHP 7.4.33 | ���֧ߧ֧�ѧ�ڧ� ����ѧߧڧ��: 0.2 |
proxy
|
phpinfo
|
���ѧ����ۧܧ�