rdbms: Rename "memCache" to "memStash" in LBFactory
[mediawiki.git] / tests / phpunit / includes / PreferencesTest.php
blobd78c1e7dc07dd88dfea542f5f240511a155dbce5
1 <?php
3 /**
4 * @group Database
5 */
6 class PreferencesTest extends MediaWikiTestCase {
7 /**
8 * @var User[]
9 */
10 private $prefUsers;
11 /**
12 * @var RequestContext
14 private $context;
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() {
36 parent::setUp();
38 $this->setMwGlobals( [
39 'wgEnableEmail' => true,
40 'wgEmailAuthentication' => true,
41 ] );
44 /**
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'] );
56 /**
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'] );
68 /**
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'] );
80 /**
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() {
90 $oldOptions = [
91 'test' => 'abc',
92 'option' => 'old'
94 $newOptions = [
95 'test' => 'abc',
96 'option' => 'new'
98 $configMock = new HashConfig( [
99 'HiddenPrefs' => []
100 ] );
101 $form = $this->getMockBuilder( PreferencesForm::class )
102 ->disableOriginalConstructor()
103 ->getMock();
105 $userMock = $this->getMockBuilder( User::class )
106 ->disableOriginalConstructor()
107 ->getMock();
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' )
117 ->withConsecutive(
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 );
151 /** Helper */
152 protected function prefsFor( $user_key ) {
153 $preferences = [];
154 Preferences::profilePreferences(
155 $this->prefUsers[$user_key],
156 $this->context,
157 $preferences
160 return $preferences;