summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/SQLStore/QueryEngine/Fulltext/SearchTableRebuilderTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/SQLStore/QueryEngine/Fulltext/SearchTableRebuilderTest.php')
-rw-r--r--www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/SQLStore/QueryEngine/Fulltext/SearchTableRebuilderTest.php218
1 files changed, 218 insertions, 0 deletions
diff --git a/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/SQLStore/QueryEngine/Fulltext/SearchTableRebuilderTest.php b/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/SQLStore/QueryEngine/Fulltext/SearchTableRebuilderTest.php
new file mode 100644
index 00000000..cb5da767
--- /dev/null
+++ b/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/SQLStore/QueryEngine/Fulltext/SearchTableRebuilderTest.php
@@ -0,0 +1,218 @@
+<?php
+
+namespace SMW\Tests\SQLStore\QueryEngine\Fulltext;
+
+use SMW\SQLStore\QueryEngine\Fulltext\SearchTableRebuilder;
+use SMW\Tests\Utils\Mock\IteratorMockBuilder;
+use SMWDataItem as DataItem;
+
+/**
+ * @covers \SMW\SQLStore\QueryEngine\Fulltext\SearchTableRebuilder
+ * @group semantic-mediawiki
+ *
+ * @license GNU GPL v2+
+ * @since 2.5
+ *
+ * @author mwjames
+ */
+class SearchTableRebuilderTest extends \PHPUnit_Framework_TestCase {
+
+ private $searchTableUpdater;
+ private $searchTable;
+ private $connection;
+ private $iteratorMockBuilder;
+
+ protected function setUp() {
+
+ $this->connection = $this->getMockBuilder( '\SMW\MediaWiki\Database' )
+ ->disableOriginalConstructor()
+ ->getMock();
+
+ $this->searchTable = $this->getMockBuilder( '\SMW\SQLStore\QueryEngine\Fulltext\SearchTable' )
+ ->disableOriginalConstructor()
+ ->getMock();
+
+ $this->searchTableUpdater = $this->getMockBuilder( '\SMW\SQLStore\QueryEngine\Fulltext\SearchTableUpdater' )
+ ->disableOriginalConstructor()
+ ->getMock();
+
+ $this->searchTableUpdater->expects( $this->any() )
+ ->method( 'getSearchTable' )
+ ->will( $this->returnValue( $this->searchTable ) );
+
+ $this->iteratorMockBuilder = new IteratorMockBuilder();
+ }
+
+ public function testCanConstruct() {
+
+ $this->assertInstanceOf(
+ '\SMW\SQLStore\QueryEngine\Fulltext\SearchTableRebuilder',
+ new SearchTableRebuilder( $this->connection, $this->searchTableUpdater )
+ );
+ }
+
+ public function testRebuildWithoutUpdate() {
+
+ $tableDefinition = $this->getMockBuilder( '\SMW\SQLStore\TableDefinition' )
+ ->disableOriginalConstructor()
+ ->getMock();
+
+ $tableDefinition->expects( $this->atLeastOnce() )
+ ->method( 'getDiType' )
+ ->will( $this->returnValue( DataItem::TYPE_BLOB ) );
+
+ $this->searchTableUpdater->expects( $this->once() )
+ ->method( 'isEnabled' )
+ ->will( $this->returnValue( true ) );
+
+ $this->searchTableUpdater->expects( $this->atLeastOnce() )
+ ->method( 'getPropertyTables' )
+ ->will( $this->returnValue( [ $tableDefinition ] ) );
+
+ $instance = new SearchTableRebuilder(
+ $this->connection,
+ $this->searchTableUpdater
+ );
+
+ $instance->rebuild();
+ }
+
+ public function testNeverRebuildOnOptimization() {
+
+ $tableDefinition = $this->getMockBuilder( '\SMW\SQLStore\TableDefinition' )
+ ->disableOriginalConstructor()
+ ->getMock();
+
+ $this->searchTableUpdater->expects( $this->once() )
+ ->method( 'isEnabled' )
+ ->will( $this->returnValue( true ) );
+
+ $this->searchTableUpdater->expects( $this->never() )
+ ->method( 'getPropertyTables' );
+
+ $this->searchTableUpdater->expects( $this->once() )
+ ->method( 'optimize' );
+
+ $instance = new SearchTableRebuilder(
+ $this->connection,
+ $this->searchTableUpdater
+ );
+
+ $instance->requestOptimization( true );
+
+ $instance->rebuild();
+ }
+
+ public function testRebuildWithUpdateOnBlob() {
+
+ $row = new \stdClass;
+ $row->o_serialized = 'Foo';
+ $row->o_blob = null;
+ $row->s_id = 42;
+
+ $resultWrapper = $this->iteratorMockBuilder->setClass( '\ResultWrapper' )
+ ->with( [ $row ] )
+ ->incrementInvokedCounterBy( 1 )
+ ->getMockForIterator();
+
+ $resultWrapper->expects( $this->atLeastOnce() )
+ ->method( 'numRows' )
+ ->will( $this->returnValue( 1 ) );
+
+ $this->connection->expects( $this->atLeastOnce() )
+ ->method( 'select' )
+ ->will( $this->returnValue( $resultWrapper ) );
+
+ $tableDefinition = $this->getMockBuilder( '\SMW\SQLStore\TableDefinition' )
+ ->disableOriginalConstructor()
+ ->getMock();
+
+ $tableDefinition->expects( $this->atLeastOnce() )
+ ->method( 'getDiType' )
+ ->will( $this->returnValue( DataItem::TYPE_BLOB ) );
+
+ $this->searchTable->expects( $this->any() )
+ ->method( 'isValidByType' )
+ ->will( $this->returnValue( true ) );
+
+ $this->searchTable->expects( $this->any() )
+ ->method( 'hasMinTokenLength' )
+ ->will( $this->returnValue( true ) );
+
+ $this->searchTableUpdater->expects( $this->once() )
+ ->method( 'isEnabled' )
+ ->will( $this->returnValue( true ) );
+
+ $this->searchTableUpdater->expects( $this->atLeastOnce() )
+ ->method( 'getPropertyTables' )
+ ->will( $this->returnValue( [ $tableDefinition ] ) );
+
+ $this->searchTableUpdater->expects( $this->atLeastOnce() )
+ ->method( 'update' )
+ ->with( $this->equalTo( $row->s_id ) );
+
+ $instance = new SearchTableRebuilder(
+ $this->connection,
+ $this->searchTableUpdater
+ );
+
+ $instance->reportVerbose( true );
+ $instance->rebuild();
+ }
+
+ public function testgetQualifiedTableList() {
+
+ $propertyTableDefinition = $this->getMockBuilder( '\SMW\SQLStore\PropertyTableDefinition' )
+ ->disableOriginalConstructor()
+ ->getMock();
+
+ $propertyTableDefinition->expects( $this->atLeastOnce() )
+ ->method( 'getDiType' )
+ ->will( $this->returnValue( DataItem::TYPE_BLOB ) );
+
+ $this->searchTableUpdater->expects( $this->once() )
+ ->method( 'isEnabled' )
+ ->will( $this->returnValue( true ) );
+
+ $this->searchTableUpdater->expects( $this->atLeastOnce() )
+ ->method( 'getPropertyTables' )
+ ->will( $this->returnValue( [ $propertyTableDefinition ] ) );
+
+ $instance = new SearchTableRebuilder(
+ $this->connection,
+ $this->searchTableUpdater
+ );
+
+ $this->assertInternalType(
+ 'array',
+ $instance->getQualifiedTableList()
+ );
+ }
+
+ public function testRebuildByTable() {
+
+ $propertyTableDefinition = $this->getMockBuilder( '\SMW\SQLStore\PropertyTableDefinition' )
+ ->disableOriginalConstructor()
+ ->getMock();
+
+ $propertyTableDefinition->expects( $this->atLeastOnce() )
+ ->method( 'getName' )
+ ->will( $this->returnValue( 'Foo' ) );
+
+ $propertyTableDefinition->expects( $this->atLeastOnce() )
+ ->method( 'getDiType' )
+ ->will( $this->returnValue( DataItem::TYPE_BLOB ) );
+
+ $this->searchTableUpdater->expects( $this->atLeastOnce() )
+ ->method( 'getPropertyTables' )
+ ->will( $this->returnValue( [ $propertyTableDefinition ] ) );
+
+ $instance = new SearchTableRebuilder(
+ $this->connection,
+ $this->searchTableUpdater
+ );
+
+ $instance->rebuildByTable( 'Foo' );
+ }
+
+}