summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/MediaWiki/Search/SearchResultTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/MediaWiki/Search/SearchResultTest.php')
-rw-r--r--www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/MediaWiki/Search/SearchResultTest.php130
1 files changed, 130 insertions, 0 deletions
diff --git a/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/MediaWiki/Search/SearchResultTest.php b/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/MediaWiki/Search/SearchResultTest.php
new file mode 100644
index 00000000..71649410
--- /dev/null
+++ b/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/MediaWiki/Search/SearchResultTest.php
@@ -0,0 +1,130 @@
+<?php
+
+namespace SMW\Tests\MediaWiki\Search;
+
+use SMW\MediaWiki\Search\SearchResult;
+
+/**
+ * @covers \SMW\MediaWiki\Search\SearchResult
+ * @group semantic-mediawiki
+ *
+ * @license GNU GPL v2+
+ * @since 3.0
+ *
+ * @author mwjames
+ */
+class SearchResultTest extends \PHPUnit_Framework_TestCase {
+
+ public function testGetSectionTitle_WithFragment() {
+
+ $title = $this->getMockBuilder( '\Title' )
+ ->disableOriginalConstructor()
+ ->getMock();
+
+ $title->expects( $this->any() )
+ ->method( 'getFragment' )
+ ->will( $this->returnValue( 'Foo' ) );
+
+ $instance = SearchResult::newFromTitle( $title );
+
+ $this->assertInstanceOf(
+ '\Title',
+ $instance->getSectionTitle()
+ );
+ }
+
+ public function testGetSectionTitle_WithoutFragment() {
+
+ $title = $this->getMockBuilder( '\Title' )
+ ->disableOriginalConstructor()
+ ->getMock();
+
+ $title->expects( $this->any() )
+ ->method( 'getFragment' )
+ ->will( $this->returnValue( '' ) );
+
+ $instance = SearchResult::newFromTitle( $title );
+
+ $this->assertNull(
+ $instance->getSectionTitle()
+ );
+ }
+
+ public function testExcerpt() {
+
+ $title = $this->getMockBuilder( '\Title' )
+ ->disableOriginalConstructor()
+ ->getMock();
+
+ $title->expects( $this->any() )
+ ->method( 'getFragment' )
+ ->will( $this->returnValue( '' ) );
+
+ $instance = SearchResult::newFromTitle( $title );
+ $instance->setExcerpt( 'Foo ...' );
+
+ $this->assertEquals(
+ 'Foo ...',
+ $instance->getExcerpt()
+ );
+ }
+
+ public function testGetTitleSnippet() {
+
+ $title = $this->getMockBuilder( '\Title' )
+ ->disableOriginalConstructor()
+ ->getMock();
+
+ $title->expects( $this->any() )
+ ->method( 'getNamespace' )
+ ->will( $this->returnValue( NS_MAIN ) );
+
+ $title->expects( $this->any() )
+ ->method( 'getDBKey' )
+ ->will( $this->returnValue( 'Foo' ) );
+
+ $title->expects( $this->any() )
+ ->method( 'getFragment' )
+ ->will( $this->returnValue( '' ) );
+
+ $instance = SearchResult::newFromTitle( $title );
+
+ $this->assertEquals(
+ 'Foo',
+ $instance->getTitleSnippet()
+ );
+ }
+
+ public function testGetTextSnippet_HasHighlight() {
+
+ $title = $this->getMockBuilder( '\Title' )
+ ->disableOriginalConstructor()
+ ->getMock();
+
+ $instance = SearchResult::newFromTitle( $title );
+
+ $instance->setExcerpt( '<em>Foo</em>bar', true );
+
+ $this->assertEquals(
+ "<span class='searchmatch'>Foo</span>bar",
+ $instance->getTextSnippet( [ 'Foo' ] )
+ );
+ }
+
+ public function testGetTextSnippet_NoHighlight() {
+
+ $title = $this->getMockBuilder( '\Title' )
+ ->disableOriginalConstructor()
+ ->getMock();
+
+ $instance = SearchResult::newFromTitle( $title );
+
+ $instance->setExcerpt( 'Foobar' );
+
+ $this->assertEquals(
+ "<span class='searchmatch'>Foo</span>bar\n",
+ $instance->getTextSnippet( [ 'Foo' ] )
+ );
+ }
+
+}