summaryrefslogtreecommitdiff
path: root/www/wiki/tests/phpunit/includes/PreferencesTest.php
diff options
context:
space:
mode:
authorYaco <franco@reevo.org>2020-06-04 11:01:00 -0300
committerYaco <franco@reevo.org>2020-06-04 11:01:00 -0300
commitfc7369835258467bf97eb64f184b93691f9a9fd5 (patch)
treedaabd60089d2dd76d9f5fb416b005fbe159c799d /www/wiki/tests/phpunit/includes/PreferencesTest.php
first commit
Diffstat (limited to 'www/wiki/tests/phpunit/includes/PreferencesTest.php')
-rw-r--r--www/wiki/tests/phpunit/includes/PreferencesTest.php90
1 files changed, 90 insertions, 0 deletions
diff --git a/www/wiki/tests/phpunit/includes/PreferencesTest.php b/www/wiki/tests/phpunit/includes/PreferencesTest.php
new file mode 100644
index 00000000..4d3b195c
--- /dev/null
+++ b/www/wiki/tests/phpunit/includes/PreferencesTest.php
@@ -0,0 +1,90 @@
+<?php
+
+/**
+ * @group Database
+ */
+class PreferencesTest extends MediaWikiTestCase {
+ /**
+ * @var User[]
+ */
+ private $prefUsers;
+ /**
+ * @var RequestContext
+ */
+ private $context;
+
+ public function __construct() {
+ parent::__construct();
+
+ $this->prefUsers['noemail'] = new User;
+
+ $this->prefUsers['notauth'] = new User;
+ $this->prefUsers['notauth']
+ ->setEmail( 'noauth@example.org' );
+
+ $this->prefUsers['auth'] = new User;
+ $this->prefUsers['auth']
+ ->setEmail( 'noauth@example.org' );
+ $this->prefUsers['auth']
+ ->setEmailAuthenticationTimestamp( 1330946623 );
+
+ $this->context = new RequestContext;
+ $this->context->setTitle( Title::newFromText( 'PreferencesTest' ) );
+ }
+
+ protected function setUp() {
+ parent::setUp();
+
+ $this->setMwGlobals( [
+ 'wgEnableEmail' => true,
+ 'wgEmailAuthentication' => true,
+ ] );
+ }
+
+ /**
+ * Placeholder to verify T36302
+ * @covers Preferences::profilePreferences
+ * @deprecated replaced by DefaultPreferencesFactoryTest::testEmailAuthentication()
+ */
+ public function testEmailAuthenticationFieldWhenUserHasNoEmail() {
+ $prefs = $this->prefsFor( 'noemail' );
+ $this->assertArrayHasKey( 'cssclass',
+ $prefs['emailauthentication']
+ );
+ $this->assertEquals( 'mw-email-none', $prefs['emailauthentication']['cssclass'] );
+ }
+
+ /**
+ * Placeholder to verify T36302
+ * @covers Preferences::profilePreferences
+ * @deprecated replaced by DefaultPreferencesFactoryTest::testEmailAuthentication()
+ */
+ public function testEmailAuthenticationFieldWhenUserEmailNotAuthenticated() {
+ $prefs = $this->prefsFor( 'notauth' );
+ $this->assertArrayHasKey( 'cssclass',
+ $prefs['emailauthentication']
+ );
+ $this->assertEquals( 'mw-email-not-authenticated', $prefs['emailauthentication']['cssclass'] );
+ }
+
+ /**
+ * Placeholder to verify T36302
+ * @covers Preferences::profilePreferences
+ * @deprecated replaced by DefaultPreferencesFactoryTest::testEmailAuthentication()
+ */
+ public function testEmailAuthenticationFieldWhenUserEmailIsAuthenticated() {
+ $prefs = $this->prefsFor( 'auth' );
+ $this->assertArrayHasKey( 'cssclass',
+ $prefs['emailauthentication']
+ );
+ $this->assertEquals( 'mw-email-authenticated', $prefs['emailauthentication']['cssclass'] );
+ }
+
+ /** Helper */
+ protected function prefsFor( $user_key ) {
+ return Preferences::getPreferences(
+ $this->prefUsers[$user_key],
+ $this->context
+ );
+ }
+}