2012-03-05 11:48:35 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
class PreferencesTest extends MediaWikiTestCase {
|
|
|
|
|
|
|
|
|
|
/** Array of User objects */
|
|
|
|
|
private $users ;
|
|
|
|
|
private $context ;
|
|
|
|
|
|
|
|
|
|
function __construct() {
|
|
|
|
|
parent::__construct();
|
|
|
|
|
|
|
|
|
|
$this->users['noemail'] = new User;
|
|
|
|
|
|
|
|
|
|
$this->users['notauth'] = new User;
|
|
|
|
|
$this->users['notauth']
|
|
|
|
|
->setEmail( 'noauth@example.org' );
|
|
|
|
|
|
|
|
|
|
$this->users['auth'] = new User;
|
|
|
|
|
$this->users['auth']
|
|
|
|
|
->setEmail( 'noauth@example.org' );
|
|
|
|
|
$this->users['auth']
|
|
|
|
|
->setEmailAuthenticationTimestamp( 1330946623 );
|
|
|
|
|
|
|
|
|
|
$this->context = new RequestContext;
|
|
|
|
|
$this->context->setTitle( Title::newFromText('PreferencesTest') );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2012-03-05 11:50:30 +00:00
|
|
|
* Placeholder to verify bug 34302
|
2012-03-05 11:48:35 +00:00
|
|
|
* @covers Preferences::profilePreferences
|
|
|
|
|
*/
|
|
|
|
|
function testEmailFieldsWhenUserHasNoEmail() {
|
|
|
|
|
$prefs = $this->prefsFor( 'noemail' );
|
2012-03-07 09:56:24 +00:00
|
|
|
$this->assertArrayHasKey( 'cssclass',
|
2012-03-05 11:48:35 +00:00
|
|
|
$prefs['emailaddress']
|
|
|
|
|
);
|
2012-03-07 09:56:24 +00:00
|
|
|
$this->assertEquals( 'mw-email-none', $prefs['emailaddress']['cssclass'] );
|
2012-03-05 11:48:35 +00:00
|
|
|
}
|
|
|
|
|
/**
|
2012-03-05 11:50:30 +00:00
|
|
|
* Placeholder to verify bug 34302
|
2012-03-05 11:48:35 +00:00
|
|
|
* @covers Preferences::profilePreferences
|
|
|
|
|
*/
|
|
|
|
|
function testEmailFieldsWhenUserEmailNotAuthenticated() {
|
|
|
|
|
$prefs = $this->prefsFor( 'notauth' );
|
2012-03-07 09:56:24 +00:00
|
|
|
$this->assertArrayHasKey( 'cssclass',
|
2012-03-05 11:48:35 +00:00
|
|
|
$prefs['emailaddress']
|
|
|
|
|
);
|
2012-03-07 09:56:24 +00:00
|
|
|
$this->assertEquals( 'mw-email-not-authenticated', $prefs['emailaddress']['cssclass'] );
|
2012-03-05 11:48:35 +00:00
|
|
|
}
|
|
|
|
|
/**
|
2012-03-05 11:50:30 +00:00
|
|
|
* Placeholder to verify bug 34302
|
2012-03-05 11:48:35 +00:00
|
|
|
* @covers Preferences::profilePreferences
|
|
|
|
|
*/
|
|
|
|
|
function testEmailFieldsWhenUserEmailIsAuthenticated() {
|
|
|
|
|
$prefs = $this->prefsFor( 'auth' );
|
2012-03-07 09:56:24 +00:00
|
|
|
$this->assertArrayHasKey( 'cssclass',
|
2012-03-05 11:48:35 +00:00
|
|
|
$prefs['emailaddress']
|
|
|
|
|
);
|
2012-03-07 09:56:24 +00:00
|
|
|
$this->assertEquals( 'mw-email-authenticated', $prefs['emailaddress']['cssclass'] );
|
2012-03-05 11:48:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** Helper */
|
|
|
|
|
function prefsFor( $user_key ) {
|
|
|
|
|
$preferences = array();
|
|
|
|
|
Preferences::profilePreferences(
|
|
|
|
|
$this->users[$user_key]
|
|
|
|
|
, $this->context
|
|
|
|
|
, $preferences
|
|
|
|
|
);
|
|
|
|
|
return $preferences;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|