129 lines
3.3 KiB
PHP
129 lines
3.3 KiB
PHP
<?php
|
|
|
|
namespace SMW\Tests\Maintenance;
|
|
|
|
use SMW\Maintenance\PropertyStatisticsRebuilder;
|
|
use Wikimedia\Rdbms\FakeResultWrapper;
|
|
|
|
/**
|
|
* @covers \SMW\Maintenance\PropertyStatisticsRebuilder
|
|
* @group semantic-mediawiki
|
|
*
|
|
* @license GPL-2.0-or-later
|
|
* @since 1.9.2
|
|
*
|
|
* @author mwjames
|
|
*/
|
|
class PropertyStatisticsRebuilderTest extends \PHPUnit\Framework\TestCase {
|
|
|
|
public function testCanConstruct() {
|
|
$store = $this->getMockBuilder( '\SMW\Store' )
|
|
->disableOriginalConstructor()
|
|
->getMockForAbstractClass();
|
|
|
|
$propertyStatisticsStore = $this->getMockBuilder( '\SMW\SQLStore\PropertyStatisticsStore' )
|
|
->disableOriginalConstructor()
|
|
->getMockForAbstractClass();
|
|
|
|
$this->assertInstanceOf(
|
|
PropertyStatisticsRebuilder::class,
|
|
new PropertyStatisticsRebuilder( $store, $propertyStatisticsStore )
|
|
);
|
|
}
|
|
|
|
public function testRebuildStatisticsStoreAndInsertCountRows() {
|
|
$tableName = 'Foobar';
|
|
|
|
$uRow = new \stdClass;
|
|
$uRow->count = 1111;
|
|
|
|
$nRow = new \stdClass;
|
|
$nRow->count = 1;
|
|
|
|
$res = [
|
|
'smw_title' => 'Foo',
|
|
'smw_id' => 9999
|
|
];
|
|
|
|
$resultWrapper = new FakeResultWrapper(
|
|
[ (object)$res ]
|
|
);
|
|
|
|
$dataItemHandler = $this->getMockBuilder( '\SMW\SQLStore\EntityStore\DataItemHandler' )
|
|
->disableOriginalConstructor()
|
|
->getMockForAbstractClass();
|
|
|
|
$dataItemHandler->expects( $this->atLeastOnce() )
|
|
->method( 'getTableFields' )
|
|
->willReturn( [] );
|
|
|
|
$database = $this->getMockBuilder( '\SMW\MediaWiki\Connection\Database' )
|
|
->disableOriginalConstructor()
|
|
->getMock();
|
|
|
|
$database->expects( $this->atLeastOnce() )
|
|
->method( 'select' )
|
|
->willReturn( $resultWrapper );
|
|
|
|
$database->expects( $this->atLeastOnce() )
|
|
->method( 'selectRow' )
|
|
->with(
|
|
$this->stringContains( $tableName ),
|
|
$this->anything(),
|
|
[ 'p_id' => 9999 ],
|
|
$this->anything() )
|
|
->willReturnOnConsecutiveCalls( $uRow, $nRow );
|
|
|
|
$store = $this->getMockBuilder( '\SMW\SQLStore\SQLStore' )
|
|
->disableOriginalConstructor()
|
|
->getMock();
|
|
|
|
$store->expects( $this->atLeastOnce() )
|
|
->method( 'getConnection' )
|
|
->willReturn( $database );
|
|
|
|
$store->expects( $this->atLeastOnce() )
|
|
->method( 'getDataItemHandlerForDIType' )
|
|
->willReturn( $dataItemHandler );
|
|
|
|
$store->expects( $this->atLeastOnce() )
|
|
->method( 'getPropertyTables' )
|
|
->willReturn( [ $this->newPropertyTable( $tableName ) ] );
|
|
|
|
$propertyStatisticsStore = $this->getMockBuilder( '\SMW\SQLStore\PropertyStatisticsStore' )
|
|
->disableOriginalConstructor()
|
|
->getMock();
|
|
|
|
$propertyStatisticsStore->expects( $this->atLeastOnce() )
|
|
->method( 'insertUsageCount' )
|
|
->with(
|
|
9999,
|
|
$this->equalTo( [ 1110, 1 ] ) );
|
|
|
|
$instance = new PropertyStatisticsRebuilder(
|
|
$store,
|
|
$propertyStatisticsStore
|
|
);
|
|
|
|
$instance->rebuild();
|
|
}
|
|
|
|
protected function newPropertyTable( $propertyTableName, $fixedPropertyTable = false ) {
|
|
$propertyTable = $this->getMockBuilder( '\SMW\SQLStore\PropertyTableDefinition' )
|
|
->disableOriginalConstructor()
|
|
->setMethods( [ 'isFixedPropertyTable', 'getName' ] )
|
|
->getMock();
|
|
|
|
$propertyTable->expects( $this->atLeastOnce() )
|
|
->method( 'isFixedPropertyTable' )
|
|
->willReturn( $fixedPropertyTable );
|
|
|
|
$propertyTable->expects( $this->atLeastOnce() )
|
|
->method( 'getName' )
|
|
->willReturn( $propertyTableName );
|
|
|
|
return $propertyTable;
|
|
}
|
|
|
|
}
|