summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/SQLStore/EntityStore/DataItemHandlerDispatcherTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/SQLStore/EntityStore/DataItemHandlerDispatcherTest.php')
-rw-r--r--www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/SQLStore/EntityStore/DataItemHandlerDispatcherTest.php132
1 files changed, 132 insertions, 0 deletions
diff --git a/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/SQLStore/EntityStore/DataItemHandlerDispatcherTest.php b/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/SQLStore/EntityStore/DataItemHandlerDispatcherTest.php
new file mode 100644
index 00000000..2aca3edf
--- /dev/null
+++ b/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/SQLStore/EntityStore/DataItemHandlerDispatcherTest.php
@@ -0,0 +1,132 @@
+<?php
+
+namespace SMW\Tests\SQLStore\EntityStore;
+
+use SMW\SQLStore\EntityStore\DataItemHandlerDispatcher;
+use SMWDataItem as DataItem;
+use SMW\Tests\PHPUnitCompat;
+
+/**
+ * @covers \SMW\SQLStore\EntityStore\DataItemHandlerDispatcher
+ * @group semantic-mediawiki
+ *
+ * @license GNU GPL v2+
+ * @since 2.5
+ *
+ * @author mwjames
+ */
+class DataItemHandlerDispatcherTest extends \PHPUnit_Framework_TestCase {
+
+ use PHPUnitCompat;
+
+ public function testCanConstruct() {
+
+ $store = $this->getMockBuilder( '\SMW\SQLStore\SQLStore' )
+ ->disableOriginalConstructor()
+ ->getMock();
+
+ $this->assertInstanceOf(
+ '\SMW\SQLStore\EntityStore\DataItemHandlerDispatcher',
+ new DataItemHandlerDispatcher( $store )
+ );
+ }
+
+ /**
+ * @dataProvider dataItemTypeProvider
+ */
+ public function testGetHandlerByType( $type, $expected ) {
+
+ $store = $this->getMockBuilder( '\SMW\SQLStore\SQLStore' )
+ ->disableOriginalConstructor()
+ ->getMock();
+
+ $instance = new DataItemHandlerDispatcher( $store );
+
+ $this->assertInstanceOf(
+ $expected,
+ $instance->getHandlerByType( $type )
+ );
+ }
+
+ /**
+ * @dataProvider invalidTypeProvider
+ */
+ public function testGetHandlerByInvalidTypeThrowsException( $type ) {
+
+ $store = $this->getMockBuilder( '\SMW\SQLStore\SQLStore' )
+ ->disableOriginalConstructor()
+ ->getMock();
+
+ $instance = new DataItemHandlerDispatcher( $store );
+
+ $this->setExpectedException( 'SMW\SQLStore\EntityStore\Exception\DataItemHandlerException' );
+ $instance->getHandlerByType( $type );
+ }
+
+ public function dataItemTypeProvider() {
+
+ $provider[] = [
+ DataItem::TYPE_NUMBER,
+ '\SMW\SQLStore\EntityStore\DIHandlers\DINumberHandler'
+ ];
+
+ $provider[] = [
+ DataItem::TYPE_BLOB,
+ '\SMW\SQLStore\EntityStore\DIHandlers\DIBlobHandler'
+ ];
+
+ $provider[] = [
+ DataItem::TYPE_BOOLEAN,
+ '\SMW\SQLStore\EntityStore\DIHandlers\DIBooleanHandler'
+ ];
+
+ $provider[] = [
+ DataItem::TYPE_URI,
+ '\SMW\SQLStore\EntityStore\DIHandlers\DIUriHandler'
+ ];
+
+ $provider[] = [
+ DataItem::TYPE_TIME,
+ '\SMW\SQLStore\EntityStore\DIHandlers\DITimeHandler'
+ ];
+
+ $provider[] = [
+ DataItem::TYPE_GEO,
+ '\SMW\SQLStore\EntityStore\DIHandlers\DIGeoCoordinateHandler'
+ ];
+
+ $provider[] = [
+ DataItem::TYPE_WIKIPAGE,
+ '\SMW\SQLStore\EntityStore\DIHandlers\DIWikiPageHandler'
+ ];
+
+ $provider[] = [
+ DataItem::TYPE_CONCEPT,
+ '\SMW\SQLStore\EntityStore\DIHandlers\DIConceptHandler'
+ ];
+
+ return $provider;
+ }
+
+ public function invalidTypeProvider() {
+
+ $provider[] = [
+ DataItem::TYPE_PROPERTY,
+ ];
+
+ $provider[] = [
+ DataItem::TYPE_CONTAINER,
+ ];
+
+ $provider[] = [
+ DataItem::TYPE_ERROR,
+ ];
+
+ $provider[] = [
+ 'Foo',
+ ];
+
+ return $provider;
+ }
+
+}