Per wikitech-l consensus: https://lists.wikimedia.org/pipermail/wikitech-l/2016-February/084821.html Notes: * Disabled CallTimePassByReference due to false positives (T127163) Change-Id: I2c8ce713ce6600a0bb7bf67537c87044c7a45c4b
91 lines
2.2 KiB
PHP
91 lines
2.2 KiB
PHP
<?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 bug 34302
|
|
* @covers Preferences::profilePreferences
|
|
*/
|
|
public function testEmailAuthenticationFieldWhenUserHasNoEmail() {
|
|
$prefs = $this->prefsFor( 'noemail' );
|
|
$this->assertArrayHasKey( 'cssclass',
|
|
$prefs['emailauthentication']
|
|
);
|
|
$this->assertEquals( 'mw-email-none', $prefs['emailauthentication']['cssclass'] );
|
|
}
|
|
|
|
/**
|
|
* Placeholder to verify bug 34302
|
|
* @covers Preferences::profilePreferences
|
|
*/
|
|
public function testEmailAuthenticationFieldWhenUserEmailNotAuthenticated() {
|
|
$prefs = $this->prefsFor( 'notauth' );
|
|
$this->assertArrayHasKey( 'cssclass',
|
|
$prefs['emailauthentication']
|
|
);
|
|
$this->assertEquals( 'mw-email-not-authenticated', $prefs['emailauthentication']['cssclass'] );
|
|
}
|
|
|
|
/**
|
|
* Placeholder to verify bug 34302
|
|
* @covers Preferences::profilePreferences
|
|
*/
|
|
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 ) {
|
|
$preferences = [];
|
|
Preferences::profilePreferences(
|
|
$this->prefUsers[$user_key],
|
|
$this->context,
|
|
$preferences
|
|
);
|
|
|
|
return $preferences;
|
|
}
|
|
}
|