6 class PreferencesTest
extends MediaWikiTestCase
{
16 public function __construct() {
17 parent
::__construct();
19 $this->prefUsers
['noemail'] = new User
;
21 $this->prefUsers
['notauth'] = new User
;
22 $this->prefUsers
['notauth']
23 ->setEmail( 'noauth@example.org' );
25 $this->prefUsers
['auth'] = new User
;
26 $this->prefUsers
['auth']
27 ->setEmail( 'noauth@example.org' );
28 $this->prefUsers
['auth']
29 ->setEmailAuthenticationTimestamp( 1330946623 );
31 $this->context
= new RequestContext
;
32 $this->context
->setTitle( Title
::newFromText( 'PreferencesTest' ) );
35 protected function setUp() {
38 $this->setMwGlobals( [
39 'wgEnableEmail' => true,
40 'wgEmailAuthentication' => true,
45 * Placeholder to verify T36302
46 * @covers Preferences::profilePreferences
48 public function testEmailAuthenticationFieldWhenUserHasNoEmail() {
49 $prefs = $this->prefsFor( 'noemail' );
50 $this->assertArrayHasKey( 'cssclass',
51 $prefs['emailauthentication']
53 $this->assertEquals( 'mw-email-none', $prefs['emailauthentication']['cssclass'] );
57 * Placeholder to verify T36302
58 * @covers Preferences::profilePreferences
60 public function testEmailAuthenticationFieldWhenUserEmailNotAuthenticated() {
61 $prefs = $this->prefsFor( 'notauth' );
62 $this->assertArrayHasKey( 'cssclass',
63 $prefs['emailauthentication']
65 $this->assertEquals( 'mw-email-not-authenticated', $prefs['emailauthentication']['cssclass'] );
69 * Placeholder to verify T36302
70 * @covers Preferences::profilePreferences
72 public function testEmailAuthenticationFieldWhenUserEmailIsAuthenticated() {
73 $prefs = $this->prefsFor( 'auth' );
74 $this->assertArrayHasKey( 'cssclass',
75 $prefs['emailauthentication']
77 $this->assertEquals( 'mw-email-authenticated', $prefs['emailauthentication']['cssclass'] );
81 * Test that PreferencesFormPreSave hook has correct data:
82 * - user Object is passed
83 * - oldUserOptions contains previous user options (before save)
84 * - formData and User object have set up new properties
86 * @see https://phabricator.wikimedia.org/T169365
87 * @covers Preferences::tryFormSubmit
89 public function testPreferencesFormPreSaveHookHasCorrectData() {
98 $configMock = new HashConfig( [
101 $form = $this->getMockBuilder( PreferencesForm
::class )
102 ->disableOriginalConstructor()
105 $userMock = $this->getMockBuilder( User
::class )
106 ->disableOriginalConstructor()
108 $userMock->method( 'getOptions' )
109 ->willReturn( $oldOptions );
110 $userMock->method( 'isAllowedAny' )
111 ->willReturn( true );
112 $userMock->method( 'isAllowed' )
113 ->willReturn( true );
115 $userMock->expects( $this->exactly( 2 ) )
116 ->method( 'setOption' )
118 [ $this->equalTo( 'test' ), $this->equalTo( $newOptions[ 'test' ] ) ],
119 [ $this->equalTo( 'option' ), $this->equalTo( $newOptions[ 'option' ] ) ]
122 $form->expects( $this->any() )
123 ->method( 'getModifiedUser' )
124 ->willReturn( $userMock );
126 $form->expects( $this->any() )
127 ->method( 'getContext' )
128 ->willReturn( $this->context
);
130 $form->expects( $this->any() )
131 ->method( 'getConfig' )
132 ->willReturn( $configMock );
134 $this->setTemporaryHook( 'PreferencesFormPreSave', function (
135 $formData, $form, $user, &$result, $oldUserOptions )
136 use ( $newOptions, $oldOptions, $userMock ) {
137 $this->assertSame( $userMock, $user );
138 foreach ( $newOptions as $option => $value ) {
139 $this->assertSame( $value, $formData[ $option ] );
141 foreach ( $oldOptions as $option => $value ) {
142 $this->assertSame( $value, $oldUserOptions[ $option ] );
144 $this->assertEquals( true, $result );
148 Preferences
::tryFormSubmit( $newOptions, $form );
152 protected function prefsFor( $user_key ) {
154 Preferences
::profilePreferences(
155 $this->prefUsers
[$user_key],