summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/Elastic/QueryEngine/DescriptionInterpreters/ConceptDescriptionInterpreterTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/Elastic/QueryEngine/DescriptionInterpreters/ConceptDescriptionInterpreterTest.php')
-rw-r--r--www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/Elastic/QueryEngine/DescriptionInterpreters/ConceptDescriptionInterpreterTest.php125
1 files changed, 125 insertions, 0 deletions
diff --git a/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/Elastic/QueryEngine/DescriptionInterpreters/ConceptDescriptionInterpreterTest.php b/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/Elastic/QueryEngine/DescriptionInterpreters/ConceptDescriptionInterpreterTest.php
new file mode 100644
index 00000000..cac182be
--- /dev/null
+++ b/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/Elastic/QueryEngine/DescriptionInterpreters/ConceptDescriptionInterpreterTest.php
@@ -0,0 +1,125 @@
+<?php
+
+namespace SMW\Tests\Elastic\QueryEngine\DescriptionInterpreters;
+
+use SMW\Elastic\QueryEngine\DescriptionInterpreters\ConceptDescriptionInterpreter;
+use SMW\DIWikiPage;
+use SMW\Query\DescriptionFactory;
+use SMW\Tests\TestEnvironmentTrait;
+
+/**
+ * @covers \SMW\Elastic\QueryEngine\DescriptionInterpreters\ConceptDescriptionInterpreter
+ * @group semantic-mediawiki
+ *
+ * @license GNU GPL v2+
+ * @since 3.0
+ *
+ * @author mwjames
+ */
+class ConceptDescriptionInterpreterTest extends \PHPUnit_Framework_TestCase {
+
+ private $conditionBuilder;
+ private $descriptionFactory;
+ private $queryParser;
+
+ public function setUp() {
+
+ $this->descriptionFactory = new DescriptionFactory();
+
+ $this->store = $this->getMockBuilder( '\SMW\Store' )
+ ->disableOriginalConstructor()
+ ->getMock();
+
+ $parameters = $this->getMockBuilder( '\SMW\Elastic\QueryEngine\TermsLookup\Parameters' )
+ ->disableOriginalConstructor()
+ ->getMock();
+
+ $this->termsLookup = $this->getMockBuilder( '\SMW\Elastic\QueryEngine\TermsLookup' )
+ ->disableOriginalConstructor()
+ ->getMock();
+
+ $this->termsLookup->expects( $this->any() )
+ ->method( 'newParameters' )
+ ->will( $this->returnValue( $parameters ) );
+
+ $this->conditionBuilder = $this->getMockBuilder( '\SMW\Elastic\QueryEngine\ConditionBuilder' )
+ ->disableOriginalConstructor()
+ ->setMethods( [ 'getTermsLookup', 'getStore', 'getID', 'interpretDescription' ] )
+ ->getMock();
+
+ $this->conditionBuilder->expects( $this->any() )
+ ->method( 'getStore' )
+ ->will( $this->returnValue( $this->store ) );
+
+ $this->conditionBuilder->expects( $this->any() )
+ ->method( 'getTermsLookup' )
+ ->will( $this->returnValue( $this->termsLookup ) );
+
+ $this->queryParser = $this->getMockBuilder( '\SMW\Query\Parser' )
+ ->disableOriginalConstructor()
+ ->getMock();
+ }
+
+ public function testCanConstruct() {
+
+ $this->assertInstanceOf(
+ ConceptDescriptionInterpreter::class,
+ new ConceptDescriptionInterpreter( $this->conditionBuilder, $this->queryParser )
+ );
+ }
+
+ public function testInterpretDescription_EmptyConcept() {
+
+ $instance = new ConceptDescriptionInterpreter(
+ $this->conditionBuilder,
+ $this->queryParser
+ );
+
+ $conceptDescription = $this->descriptionFactory->newConceptDescription(
+ DIWikiPage::newFromText( 'Foo', SMW_NS_CONCEPT )
+ );
+
+ $this->assertEquals(
+ [],
+ $instance->interpretDescription( $conceptDescription )
+ );
+ }
+
+ public function testInterpretDescription_AvailableConceptQuery() {
+
+ $this->conditionBuilder->expects( $this->any() )
+ ->method( 'interpretDescription' )
+ ->will( $this->returnValue( $this->conditionBuilder->newCondition( [ 'Foo' ] ) ) );
+
+ $description = $this->getMockBuilder( '\SMW\Query\Language\Description' )
+ ->disableOriginalConstructor()
+ ->getMock();
+
+ $concept = $this->getMockBuilder( '\SMWDIConcept' )
+ ->disableOriginalConstructor()
+ ->getMock();
+
+ $this->store->expects( $this->any() )
+ ->method( 'getPropertyValues' )
+ ->will( $this->returnValue( [ $concept ] ) );
+
+ $this->queryParser->expects( $this->any() )
+ ->method( 'getQueryDescription' )
+ ->will( $this->returnValue( $description ) );
+
+ $instance = new ConceptDescriptionInterpreter(
+ $this->conditionBuilder,
+ $this->queryParser
+ );
+
+ $conceptDescription = $this->descriptionFactory->newConceptDescription(
+ DIWikiPage::newFromText( 'Foo', SMW_NS_CONCEPT )
+ );
+
+ $this->assertEquals(
+ '{"bool":{"must":["Foo"]}}',
+ $instance->interpretDescription( $conceptDescription )
+ );
+ }
+
+}