Merge "Allow programmatic input in Command"
[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 * @deprecated replaced by DefaultPreferencesFactoryTest::testEmailAuthentication()
48 */
49 public function testEmailAuthenticationFieldWhenUserHasNoEmail() {
50 $prefs = $this->prefsFor( 'noemail' );
51 $this->assertArrayHasKey( 'cssclass',
52 $prefs['emailauthentication']
53 );
54 $this->assertEquals( 'mw-email-none', $prefs['emailauthentication']['cssclass'] );
55 }
56
57 /**
58 * Placeholder to verify T36302
59 * @covers Preferences::profilePreferences
60 * @deprecated replaced by DefaultPreferencesFactoryTest::testEmailAuthentication()
61 */
62 public function testEmailAuthenticationFieldWhenUserEmailNotAuthenticated() {
63 $prefs = $this->prefsFor( 'notauth' );
64 $this->assertArrayHasKey( 'cssclass',
65 $prefs['emailauthentication']
66 );
67 $this->assertEquals( 'mw-email-not-authenticated', $prefs['emailauthentication']['cssclass'] );
68 }
69
70 /**
71 * Placeholder to verify T36302
72 * @covers Preferences::profilePreferences
73 * @deprecated replaced by DefaultPreferencesFactoryTest::testEmailAuthentication()
74 */
75 public function testEmailAuthenticationFieldWhenUserEmailIsAuthenticated() {
76 $prefs = $this->prefsFor( 'auth' );
77 $this->assertArrayHasKey( 'cssclass',
78 $prefs['emailauthentication']
79 );
80 $this->assertEquals( 'mw-email-authenticated', $prefs['emailauthentication']['cssclass'] );
81 }
82
83 /** Helper */
84 protected function prefsFor( $user_key ) {
85 return Preferences::getPreferences(
86 $this->prefUsers[$user_key],
87 $this->context
88 );
89 }
90 }