summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/DataValues/ExternalIdentifierValueTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/DataValues/ExternalIdentifierValueTest.php')
-rw-r--r--www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/DataValues/ExternalIdentifierValueTest.php170
1 files changed, 170 insertions, 0 deletions
diff --git a/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/DataValues/ExternalIdentifierValueTest.php b/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/DataValues/ExternalIdentifierValueTest.php
new file mode 100644
index 00000000..63273da1
--- /dev/null
+++ b/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/DataValues/ExternalIdentifierValueTest.php
@@ -0,0 +1,170 @@
+<?php
+
+namespace SMW\Tests\DataValues;
+
+use SMW\DataItemFactory;
+use SMW\DataValueFactory;
+use SMW\DataValues\ExternalIdentifierValue;
+use SMW\PropertySpecificationLookup;
+use SMW\Tests\TestEnvironment;
+
+/**
+ * @covers \SMW\DataValues\ExternalIdentifierValue
+ * @group semantic-mediawiki
+ *
+ * @license GNU GPL v2+
+ * @since 2.5
+ *
+ * @author mwjames
+ */
+class ExternalIdentifierValueTest extends \PHPUnit_Framework_TestCase {
+
+ private $testEnvironment;
+ private $dataItemFactory;
+ private $propertySpecificationLookup;
+ private $dataValueServiceFactory;
+
+ protected function setUp() {
+ parent::setUp();
+
+ $this->testEnvironment = new TestEnvironment();
+ $this->dataItemFactory = new DataItemFactory();
+
+ $this->propertySpecificationLookup = $this->getMockBuilder( PropertySpecificationLookup::class )
+ ->disableOriginalConstructor()
+ ->getMock();
+
+ $constraintValueValidator = $this->getMockBuilder( '\SMW\DataValues\ValueValidators\ConstraintValueValidator' )
+ ->disableOriginalConstructor()
+ ->getMock();
+
+ $externalFormatterUriValue = $this->getMockBuilder( '\SMW\DataValues\ExternalFormatterUriValue' )
+ ->disableOriginalConstructor()
+ ->getMockForAbstractClass();
+
+ $this->dataValueServiceFactory = $this->getMockBuilder( '\SMW\Services\DataValueServiceFactory' )
+ ->disableOriginalConstructor()
+ ->getMock();
+
+ $this->dataValueServiceFactory->expects( $this->any() )
+ ->method( 'getPropertySpecificationLookup' )
+ ->will( $this->returnValue( $this->propertySpecificationLookup ) );
+
+ $this->dataValueServiceFactory->expects( $this->any() )
+ ->method( 'getConstraintValueValidator' )
+ ->will( $this->returnValue( $constraintValueValidator ) );
+
+ $this->dataValueServiceFactory->expects( $this->any() )
+ ->method( 'getDataValueFactory' )
+ ->will( $this->returnValue( DataValueFactory::getInstance() ) );
+
+ $this->testEnvironment->registerObject( 'PropertySpecificationLookup', $this->propertySpecificationLookup );
+ }
+
+ protected function tearDown() {
+ $this->testEnvironment->tearDown();
+ }
+
+ public function testCanConstruct() {
+
+ $this->assertInstanceOf(
+ ExternalIdentifierValue::class,
+ new ExternalIdentifierValue()
+ );
+ }
+
+ public function testGetShortWikiText() {
+
+ $this->propertySpecificationLookup->expects( $this->once() )
+ ->method( 'getExternalFormatterUri' )
+ ->will( $this->returnValue( $this->dataItemFactory->newDIUri( 'http', 'example.org/$1' ) ) );
+
+ $instance = new ExternalIdentifierValue();
+ $instance->setDataValueServiceFactory( $this->dataValueServiceFactory );
+
+ $instance->setUserValue( 'foo' );
+ $instance->setProperty( $this->dataItemFactory->newDIProperty( 'Bar' ) );
+
+ $this->assertEquals(
+ 'foo',
+ $instance->getShortWikiText()
+ );
+
+ $this->assertEquals(
+ '<span class="plainlinks smw-eid">[http://example.org/foo foo]</span>',
+ $instance->getShortWikiText( 'linker' )
+ );
+ }
+
+ public function testGetShortWikiText_Nowiki() {
+
+ $this->propertySpecificationLookup->expects( $this->once() )
+ ->method( 'getExternalFormatterUri' )
+ ->will( $this->returnValue( $this->dataItemFactory->newDIUri( 'http', 'example.org/$1' ) ) );
+
+ $instance = new ExternalIdentifierValue();
+ $instance->setDataValueServiceFactory( $this->dataValueServiceFactory );
+
+ $instance->setUserValue( 'foo' );
+ $instance->setOutputFormat( 'nowiki' );
+ $instance->setProperty( $this->dataItemFactory->newDIProperty( 'Bar' ) );
+
+ $this->assertEquals(
+ 'foo',
+ $instance->getShortWikiText()
+ );
+
+ $this->assertEquals(
+ '<span class="plainlinks smw-eid">http&#58;//example.org/foo</span>',
+ $instance->getShortWikiText( 'linker' )
+ );
+ }
+
+ public function testGetShortHTMLText() {
+
+ $this->propertySpecificationLookup->expects( $this->once() )
+ ->method( 'getExternalFormatterUri' )
+ ->will( $this->returnValue( $this->dataItemFactory->newDIUri( 'http', 'example.org/$1' ) ) );
+
+ $instance = new ExternalIdentifierValue();
+ $instance->setDataValueServiceFactory( $this->dataValueServiceFactory );
+
+ $instance->setUserValue( 'foo' );
+ $instance->setProperty( $this->dataItemFactory->newDIProperty( 'Bar' ) );
+
+ $this->assertEquals(
+ 'foo',
+ $instance->getShortHTMLText()
+ );
+
+ $this->assertEquals(
+ '<a href="http://example.org/foo" target="_blank">foo</a>',
+ $instance->getShortHTMLText( 'linker' )
+ );
+
+ $this->assertEmpty(
+ $instance->getErrors()
+ );
+ }
+
+ public function testTryToGetShortHTMLTextWithLinkerOnMissingFormatterUri() {
+
+ $instance = new ExternalIdentifierValue();
+ $instance->setDataValueServiceFactory( $this->dataValueServiceFactory );
+
+ $instance->setUserValue( 'foo' );
+ $instance->setProperty( $this->dataItemFactory->newDIProperty( 'Bar' ) );
+
+ $this->assertEquals(
+ 'foo',
+ $instance->getShortHTMLText()
+ );
+
+ $instance->getShortHTMLText( 'linker' );
+
+ $this->assertNotEmpty(
+ $instance->getErrors()
+ );
+ }
+
+}