summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/MediaWiki/Hooks/GetPreferencesTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/MediaWiki/Hooks/GetPreferencesTest.php')
-rw-r--r--www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/MediaWiki/Hooks/GetPreferencesTest.php84
1 files changed, 84 insertions, 0 deletions
diff --git a/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/MediaWiki/Hooks/GetPreferencesTest.php b/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/MediaWiki/Hooks/GetPreferencesTest.php
new file mode 100644
index 00000000..33dee2ce
--- /dev/null
+++ b/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/MediaWiki/Hooks/GetPreferencesTest.php
@@ -0,0 +1,84 @@
+<?php
+
+namespace SMW\Tests\MediaWiki\Hooks;
+
+use SMW\MediaWiki\Hooks\GetPreferences;
+
+/**
+ * @covers \SMW\MediaWiki\Hooks\GetPreferences
+ * @group semantic-mediawiki
+ *
+ * @license GNU GPL v2+
+ * @since 2.0
+ *
+ * @author mwjames
+ */
+class GetPreferencesTest extends \PHPUnit_Framework_TestCase {
+
+ public function testCanConstruct() {
+
+ $user = $this->getMockBuilder( '\User' )
+ ->disableOriginalConstructor()
+ ->getMock();
+
+ $preferences = [];
+
+ $this->assertInstanceOf(
+ GetPreferences::class,
+ new GetPreferences( $user )
+ );
+ }
+
+ /**
+ * @dataProvider keyProvider
+ */
+ public function testProcess( $key ) {
+
+ $user = $this->getMockBuilder( '\User' )
+ ->disableOriginalConstructor()
+ ->getMock();
+
+ $preferences = [];
+
+ $instance = new GetPreferences( $user );
+
+ $instance->setOptions(
+ [
+ 'smwgEnabledEditPageHelp' => false
+ ]
+ );
+
+ $instance->process( $preferences );
+
+ $this->assertArrayHasKey(
+ $key,
+ $preferences
+ );
+ }
+
+ public function keyProvider() {
+
+ $provider[] = [
+ 'smw-prefs-intro'
+ ];
+
+ $provider[] = [
+ 'smw-prefs-ask-options-tooltip-display'
+ ];
+
+ $provider[] = [
+ 'smw-prefs-general-options-time-correction'
+ ];
+
+ $provider[] = [
+ 'smw-prefs-general-options-disable-editpage-info'
+ ];
+
+ $provider[] = [
+ 'smw-prefs-general-options-jobqueue-watchlist'
+ ];
+
+ return $provider;
+ }
+
+}