summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/SPARQLStore/QueryEngine/EngineOptionsTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/SPARQLStore/QueryEngine/EngineOptionsTest.php')
-rw-r--r--www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/SPARQLStore/QueryEngine/EngineOptionsTest.php96
1 files changed, 96 insertions, 0 deletions
diff --git a/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/SPARQLStore/QueryEngine/EngineOptionsTest.php b/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/SPARQLStore/QueryEngine/EngineOptionsTest.php
new file mode 100644
index 00000000..8bed60ff
--- /dev/null
+++ b/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/SPARQLStore/QueryEngine/EngineOptionsTest.php
@@ -0,0 +1,96 @@
+<?php
+
+namespace SMW\Tests\SPARQLStore\QueryEngine;
+
+use SMW\SPARQLStore\QueryEngine\EngineOptions;
+use SMW\Tests\PHPUnitCompat;
+
+/**
+ * @covers \SMW\SPARQLStore\QueryEngine\EngineOptions
+ * @group semantic-mediawiki
+ *
+ * @license GNU GPL v2+
+ * @since 2.1
+ *
+ * @author mwjames
+ */
+class EngineOptionsTest extends \PHPUnit_Framework_TestCase {
+
+ use PHPUnitCompat;
+
+ public function testCanConstruct() {
+
+ $this->assertInstanceOf(
+ '\SMW\SPARQLStore\QueryEngine\EngineOptions',
+ new EngineOptions()
+ );
+ }
+
+ /**
+ * @dataProvider initialSettingsProvider
+ */
+ public function testInitialState( $setting, $expected ) {
+
+ $instance = new EngineOptions();
+
+ $this->assertNotNull(
+ $instance->get( $setting )
+ );
+ }
+
+ public function testAddOption() {
+
+ $instance = new EngineOptions();
+
+ $this->assertFalse(
+ $instance->has( 'Foo' )
+ );
+
+ $instance->set( 'Foo', 42 );
+
+ $this->assertEquals(
+ 42,
+ $instance->get( 'Foo' )
+ );
+ }
+
+ public function testUnregisteredKeyThrowsException() {
+
+ $instance = new EngineOptions();
+
+ $this->setExpectedException( 'InvalidArgumentException' );
+ $instance->get( 'Foo' );
+ }
+
+ public function initialSettingsProvider() {
+
+ $provider[] = [
+ 'smwgIgnoreQueryErrors',
+ 'boolean'
+ ];
+
+ $provider[] = [
+ 'smwgQSortFeatures',
+ 'integer'
+ ];
+
+ $provider[] = [
+ 'smwgQSubpropertyDepth',
+ 'integer'
+ ];
+
+ $provider[] = [
+ 'smwgQSubcategoryDepth',
+ 'integer'
+ ];
+
+ $provider[] = [
+ 'smwgSparqlQFeatures',
+ 'integer'
+ ];
+
+ return $provider;
+ }
+
+}
+