summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/includes/storage/StoreFactoryTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'www/wiki/extensions/SemanticMediaWiki/tests/phpunit/includes/storage/StoreFactoryTest.php')
-rw-r--r--www/wiki/extensions/SemanticMediaWiki/tests/phpunit/includes/storage/StoreFactoryTest.php85
1 files changed, 85 insertions, 0 deletions
diff --git a/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/includes/storage/StoreFactoryTest.php b/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/includes/storage/StoreFactoryTest.php
new file mode 100644
index 00000000..90415200
--- /dev/null
+++ b/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/includes/storage/StoreFactoryTest.php
@@ -0,0 +1,85 @@
+<?php
+
+namespace SMW\Tests;
+
+use SMW\Settings;
+use SMW\StoreFactory;
+
+/**
+ * @covers \SMW\StoreFactory
+ *
+ *
+ * @group SMW
+ * @group SMWExtension
+ *
+ * @license GNU GPL v2+
+ * @since 1.9
+ *
+ * @author mwjames
+ */
+class StoreFactoryTest extends \PHPUnit_Framework_TestCase {
+
+ use PHPUnitCompat;
+
+ protected function tearDown() {
+ StoreFactory::clear();
+
+ parent::tearDown();
+ }
+
+ public function testGetDefaultStore() {
+
+ $instance = StoreFactory::getStore();
+
+ $this->assertInstanceOf(
+ Settings::newFromGlobals()->get( 'smwgDefaultStore' ),
+ $instance
+ );
+
+ $this->assertSame(
+ StoreFactory::getStore(),
+ $instance
+ );
+
+ StoreFactory::clear();
+
+ $this->assertNotSame(
+ StoreFactory::getStore(),
+ $instance
+ );
+ }
+
+ public function testDifferentStoreIdInstanceInvocation() {
+
+ $this->assertInstanceOf( 'SMW\Store', StoreFactory::getStore( '\SMWSQLStore3' ) );
+ $this->assertInstanceOf( 'SMW\Store', StoreFactory::getStore( '\SMWSparqlStore' ) );
+
+ $this->assertNotSame(
+ StoreFactory::getStore( '\SMWSQLStore3' ),
+ StoreFactory::getStore( '\SMWSparqlStore' )
+ );
+ }
+
+ public function testStoreInstanceException() {
+ $this->setExpectedException( '\SMW\Exception\StoreNotFoundException' );
+ StoreFactory::getStore( '\SMW\StoreFactory' );
+ }
+
+ public function testStoreWithInvalidClassThrowsException() {
+ $this->setExpectedException( 'RuntimeException' );
+ StoreFactory::getStore( 'foo' );
+ }
+
+ /**
+ * smwfGetStore is deprecated but due to its dependency do a quick check here
+ *
+ * FIXME Delete this test in 1.11
+ */
+ public function testSmwfGetStore() {
+ $store = smwfGetStore();
+
+ $this->assertInstanceOf( 'SMWStore', $store );
+ $this->assertInstanceOf( 'SMW\Store', $store );
+ }
+
+}