Add mediastatistics-header-3d
[lhc/web/wiklou.git] / tests / phpunit / includes / PreferencesTest.php
1 <?php
2
3 /**
4 * @group Database
5 */
6 class PreferencesTest extends MediaWikiTestCase {
7 /**
8 * @var User[]
9 */
10 private $prefUsers;
11 /**
12 * @var RequestContext
13 */
14 private $context;
15
16 public function __construct() {
17 parent::__construct();
18
19 $this->prefUsers['noemail'] = new User;
20
21 $this->prefUsers['notauth'] = new User;
22 $this->prefUsers['notauth']
23 ->setEmail( 'noauth@example.org' );
24
25 $this->prefUsers['auth'] = new User;
26 $this->prefUsers['auth']
27 ->setEmail( 'noauth@example.org' );
28 $this->prefUsers['auth']
29 ->setEmailAuthenticationTimestamp( 1330946623 );
30
31 $this->context = new RequestContext;
32 $this->context->setTitle( Title::newFromText( 'PreferencesTest' ) );
33 }
34
35 protected function setUp() {
36 parent::setUp();
37
38 $this->setMwGlobals( [
39 'wgEnableEmail' => true,
40 'wgEmailAuthentication' => true,
41 ] );
42 }
43
44 /**
45 * Placeholder to verify T36302
46 * @covers Preferences::profilePreferences
47 */
48 public function testEmailAuthenticationFieldWhenUserHasNoEmail() {
49 $prefs = $this->prefsFor( 'noemail' );
50 $this->assertArrayHasKey( 'cssclass',
51 $prefs['emailauthentication']
52 );
53 $this->assertEquals( 'mw-email-none', $prefs['emailauthentication']['cssclass'] );
54 }
55
56 /**
57 * Placeholder to verify T36302
58 * @covers Preferences::profilePreferences
59 */
60 public function testEmailAuthenticationFieldWhenUserEmailNotAuthenticated() {
61 $prefs = $this->prefsFor( 'notauth' );
62 $this->assertArrayHasKey( 'cssclass',
63 $prefs['emailauthentication']
64 );
65 $this->assertEquals( 'mw-email-not-authenticated', $prefs['emailauthentication']['cssclass'] );
66 }
67
68 /**
69 * Placeholder to verify T36302
70 * @covers Preferences::profilePreferences
71 */
72 public function testEmailAuthenticationFieldWhenUserEmailIsAuthenticated() {
73 $prefs = $this->prefsFor( 'auth' );
74 $this->assertArrayHasKey( 'cssclass',
75 $prefs['emailauthentication']
76 );
77 $this->assertEquals( 'mw-email-authenticated', $prefs['emailauthentication']['cssclass'] );
78 }
79
80 /** Helper */
81 protected function prefsFor( $user_key ) {
82 $preferences = [];
83 Preferences::profilePreferences(
84 $this->prefUsers[$user_key],
85 $this->context,
86 $preferences
87 );
88
89 return $preferences;
90 }
91 }