summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/Deserializers/DVDescriptionDeserializer/SomeValueDescriptionDeserializerTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/Deserializers/DVDescriptionDeserializer/SomeValueDescriptionDeserializerTest.php')
-rw-r--r--www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/Deserializers/DVDescriptionDeserializer/SomeValueDescriptionDeserializerTest.php201
1 files changed, 201 insertions, 0 deletions
diff --git a/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/Deserializers/DVDescriptionDeserializer/SomeValueDescriptionDeserializerTest.php b/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/Deserializers/DVDescriptionDeserializer/SomeValueDescriptionDeserializerTest.php
new file mode 100644
index 00000000..9b1820a7
--- /dev/null
+++ b/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/Deserializers/DVDescriptionDeserializer/SomeValueDescriptionDeserializerTest.php
@@ -0,0 +1,201 @@
+<?php
+
+namespace SMW\Tests\Deserializers\DVDescriptionDeserializer;
+
+use SMW\ApplicationFactory;
+use SMW\Deserializers\DVDescriptionDeserializer\SomeValueDescriptionDeserializer;
+use SMW\Tests\PHPUnitCompat;
+
+/**
+ * @covers \SMW\Deserializers\DVDescriptionDeserializer\SomeValueDescriptionDeserializer
+ * @group semantic-mediawiki
+ *
+ * @license GNU GPL v2+
+ * @since 2.3
+ *
+ * @author mwjames
+ */
+class SomeValueDescriptionDeserializerTest extends \PHPUnit_Framework_TestCase {
+
+ use PHPUnitCompat;
+
+ private $dataItemFactory;
+
+ protected function setUp() {
+ parent::setUp();
+
+ $this->dataItemFactory = ApplicationFactory::getInstance()->getDataItemFactory();
+ }
+
+ public function testCanConstruct() {
+
+ $this->assertInstanceOf(
+ '\SMW\Deserializers\DVDescriptionDeserializer\SomeValueDescriptionDeserializer',
+ new SomeValueDescriptionDeserializer()
+ );
+ }
+
+ public function testIsDeserializerForDataValue() {
+
+ $dataValue = $this->getMockBuilder( '\SMWDataValue' )
+ ->disableOriginalConstructor()
+ ->getMockForAbstractClass();
+
+ $instance = new SomeValueDescriptionDeserializer();
+
+ $this->assertTrue(
+ $instance->isDeserializerFor( $dataValue )
+ );
+ }
+
+ /**
+ * @dataProvider valueProvider
+ */
+ public function testDeserialize( $value, $decription ) {
+
+ $dataValue = $this->getMockBuilder( '\SMWDataValue' )
+ ->disableOriginalConstructor()
+ ->setMethods( [ 'isValid', 'getDataItem', 'getProperty', 'setUserValue' ] )
+ ->getMockForAbstractClass();
+
+ $dataValue->expects( $this->once() )
+ ->method( 'setUserValue' )
+ ->with(
+ $this->anything(),
+ $this->equalTo( false ) );
+
+ $dataValue->expects( $this->any() )
+ ->method( 'isValid' )
+ ->will( $this->returnValue( true ) );
+
+ $dataValue->expects( $this->any() )
+ ->method( 'getDataItem' )
+ ->will( $this->returnValue($this->dataItemFactory->newDITime( 1, '1970' ) ) );
+
+ $dataValue->expects( $this->any() )
+ ->method( 'getProperty' )
+ ->will( $this->returnValue( $this->dataItemFactory->newDIProperty( 'Foo' ) ) );
+
+ $instance = new SomeValueDescriptionDeserializer();
+ $instance->setDataValue( $dataValue );
+
+ $this->assertInstanceOf(
+ $decription,
+ $instance->deserialize( $value )
+ );
+ }
+
+ /**
+ * @dataProvider likeNotLikeProvider
+ */
+ public function testDeserializeForLikeNotLike( $value ) {
+
+ $dataValue = $this->getMockBuilder( '\SMWDataValue' )
+ ->disableOriginalConstructor()
+ ->setMethods( [ 'setUserValue' ] )
+ ->getMockForAbstractClass();
+
+ $dataValue->expects( $this->once() )
+ ->method( 'setUserValue' )
+ ->with(
+ $this->anything(),
+ $this->equalTo( false ) );
+
+ $instance = new SomeValueDescriptionDeserializer();
+ $instance->setDataValue( $dataValue );
+
+ $instance->deserialize( $value );
+ }
+
+ public function testInvalidDataValueRetunsThingDescription() {
+
+ $dataValue = $this->getMockBuilder( '\SMWDataValue' )
+ ->disableOriginalConstructor()
+ ->setMethods( [ 'isValid' ] )
+ ->getMockForAbstractClass();
+
+ $dataValue->expects( $this->any() )
+ ->method( 'isValid' )
+ ->will( $this->returnValue( false ) );
+
+ $instance = new SomeValueDescriptionDeserializer();
+ $instance->setDataValue( $dataValue );
+
+ $this->assertInstanceOf(
+ '\SMW\Query\Language\ThingDescription',
+ $instance->deserialize( 'Foo' )
+ );
+ }
+
+ public function testNonStringThrowsException() {
+
+ $dataValue = $this->getMockBuilder( '\SMWDataValue' )
+ ->disableOriginalConstructor()
+ ->getMockForAbstractClass();
+
+ $instance = new SomeValueDescriptionDeserializer();
+ $instance->setDataValue( $dataValue );
+
+ $this->setExpectedException( 'InvalidArgumentException' );
+ $instance->deserialize( [] );
+ }
+
+ public function testWikiPageValueOnNonMainNamespace() {
+
+ $dataValue = $this->getMockBuilder( '\SMWDataValue' )
+ ->disableOriginalConstructor()
+ ->setMethods( [ 'isValid', 'getDataItem', 'getProperty', 'setUserValue' ] )
+ ->getMockForAbstractClass();
+
+ $dataValue->expects( $this->atLeastOnce() )
+ ->method( 'setUserValue' )
+ ->with(
+ $this->anything(),
+ $this->equalTo( false ) );
+
+ $dataValue->expects( $this->any() )
+ ->method( 'isValid' )
+ ->will( $this->returnValue( true ) );
+
+ $dataValue->expects( $this->any() )
+ ->method( 'getDataItem' )
+ ->will( $this->returnValue( $this->dataItemFactory->newDIWikiPage( '~Foo', NS_HELP ) ) );
+
+ $dataValue->expects( $this->any() )
+ ->method( 'getProperty' )
+ ->will( $this->returnValue( $this->dataItemFactory->newDIProperty( 'Foo' ) ) );
+
+ $instance = new SomeValueDescriptionDeserializer();
+ $instance->setDataValue( $dataValue );
+
+ $this->assertInstanceOf(
+ '\SMW\Query\Language\Conjunction',
+ $instance->deserialize( 'Help:~Foo' )
+ );
+ }
+
+ public function valueProvider() {
+
+ $provider[] = [
+ 'Foo',
+ '\SMW\Query\Language\ValueDescription'
+ ];
+
+ return $provider;
+ }
+
+
+ public function likeNotLikeProvider() {
+
+ $provider[] = [
+ '~Foo'
+ ];
+
+ $provider[] = [
+ '!~Foo'
+ ];
+
+ return $provider;
+ }
+
+}