summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/MediaWiki/Specials/SearchByProperty/QueryResultLookupTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/MediaWiki/Specials/SearchByProperty/QueryResultLookupTest.php')
-rw-r--r--www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/MediaWiki/Specials/SearchByProperty/QueryResultLookupTest.php141
1 files changed, 141 insertions, 0 deletions
diff --git a/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/MediaWiki/Specials/SearchByProperty/QueryResultLookupTest.php b/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/MediaWiki/Specials/SearchByProperty/QueryResultLookupTest.php
new file mode 100644
index 00000000..527c9478
--- /dev/null
+++ b/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/MediaWiki/Specials/SearchByProperty/QueryResultLookupTest.php
@@ -0,0 +1,141 @@
+<?php
+
+namespace SMW\Tests\MediaWiki\Specials\SearchByProperty;
+
+use SMW\MediaWiki\Specials\SearchByProperty\PageRequestOptions;
+use SMW\MediaWiki\Specials\SearchByProperty\QueryResultLookup;
+
+/**
+ * @covers \SMW\MediaWiki\Specials\SearchByProperty\QueryResultLookup
+ * @group semantic-mediawiki
+ *
+ * @license GNU GPL v2+
+ * @since 2.1
+ *
+ * @author mwjames
+ */
+class QueryResultLookupTest extends \PHPUnit_Framework_TestCase {
+
+ public function testCanConstruct() {
+
+ $store = $this->getMockBuilder( '\SMW\Store' )
+ ->disableOriginalConstructor()
+ ->getMockForAbstractClass();
+
+ $this->assertInstanceOf(
+ '\SMW\MediaWiki\Specials\SearchByProperty\QueryResultLookup',
+ new QueryResultLookup( $store )
+ );
+ }
+
+ public function testDoQueryForNonValue() {
+
+ $pageRequestOptions = new PageRequestOptions( 'Foo', [] );
+ $pageRequestOptions->initialize();
+
+ $store = $this->getMockBuilder( '\SMW\Store' )
+ ->disableOriginalConstructor()
+ ->getMockForAbstractClass();
+
+ $store->expects( $this->once() )
+ ->method( 'getPropertyValues' )
+ ->with(
+ $this->isType( 'null' ),
+ $this->isInstanceOf( '\SMW\DIProperty' ),
+ $this->anything() )
+ ->will( $this->returnValue( [] ) );
+
+ $instance = new QueryResultLookup( $store );
+
+ $this->assertInternaltype(
+ 'array',
+ $instance->doQuery( $pageRequestOptions )
+ );
+ }
+
+ public function testDoQueryForExactValue() {
+
+ $pageRequestOptions = new PageRequestOptions( 'Foo/Bar', [] );
+ $pageRequestOptions->initialize();
+
+ $store = $this->getMockBuilder( '\SMW\Store' )
+ ->disableOriginalConstructor()
+ ->getMockForAbstractClass();
+
+ $store->expects( $this->once() )
+ ->method( 'getPropertySubjects' )
+ ->with(
+ $this->isInstanceOf( '\SMW\DIProperty' ),
+ $this->anything(),
+ $this->anything() )
+ ->will( $this->returnValue( [] ) );
+
+ $instance = new QueryResultLookup( $store );
+
+ $this->assertInternaltype(
+ 'array',
+ $instance->doQuery( $pageRequestOptions )
+ );
+ }
+
+ public function testDoQueryForNearbyResults() {
+
+ $pageRequestOptions = new PageRequestOptions( 'Foo/Bar', [] );
+ $pageRequestOptions->initialize();
+
+ $queryResult = $this->getMockBuilder( '\SMWQueryResult' )
+ ->disableOriginalConstructor()
+ ->getMock();
+
+ $queryResult->expects( $this->any() )
+ ->method( 'getNext' )
+ ->will( $this->returnValue( false ) );
+
+ $store = $this->getMockBuilder( '\SMW\Store' )
+ ->disableOriginalConstructor()
+ ->getMockForAbstractClass();
+
+ $store->expects( $this->once() )
+ ->method( 'getQueryResult' )
+ ->with( $this->isInstanceOf( '\SMWQuery' ) )
+ ->will( $this->returnValue( $queryResult ) );
+
+ $instance = new QueryResultLookup( $store );
+
+ $this->assertInternaltype(
+ 'array',
+ $instance->doQueryForNearbyResults( $pageRequestOptions, 1 )
+ );
+ }
+
+ public function testDoQueryLinksReferences() {
+
+ $idTable = $this->getMockBuilder( '\stdClass' )
+ ->setMethods( [ 'getId' ] )
+ ->getMock();
+
+ $idTable->expects( $this->atLeastOnce() )
+ ->method( 'getId' )
+ ->will( $this->onConsecutiveCalls( 42 ) );
+
+ $store = $this->getMockBuilder( '\SMW\SQLStore\SQLStore' )
+ ->disableOriginalConstructor()
+ ->setMethods( [ 'getObjectIds' ] )
+ ->getMockForAbstractClass();
+
+ $store->expects( $this->any() )
+ ->method( 'getObjectIds' )
+ ->will( $this->returnValue( $idTable ) );
+
+ $pageRequestOptions = new PageRequestOptions( 'Foo/Bar', [] );
+ $pageRequestOptions->initialize();
+
+ $instance = new QueryResultLookup( $store );
+
+ $this->assertInternaltype(
+ 'array',
+ $instance->doQueryLinksReferences( $pageRequestOptions, 1 )
+ );
+ }
+
+}