Merge "Phase out tests/jasmine; Update mediawiki i18n tests"
[lhc/web/wiklou.git] / tests / phpunit / includes / TitlePermissionTest.php
index 315ecd2..f62ac5d 100644 (file)
@@ -3,22 +3,26 @@
 /**
  * @group Database
  */
-class TitlePermissionTest extends MediaWikiTestCase {
+class TitlePermissionTest extends MediaWikiLangTestCase {
        protected $title;
-       protected $user;
-       protected $anonUser;
-       protected $userUser;
-       protected $altUser;
-       protected $userName;
-       protected $altUserName;
+
+       /**
+        * @var User
+        */
+       protected $user, $anonUser, $userUser, $altUser;
+
+       /**
+        * @var string
+        */
+       protected $userName, $altUserName;
 
        function setUp() {
-               global $wgLocaltimezone, $wgLocalTZoffset, $wgMemc, $wgContLang, $wgLang, $wgMessageCache;
+               global $wgLocaltimezone, $wgLocalTZoffset, $wgMemc, $wgContLang, $wgLang;
+               parent::setUp();
 
                if(!$wgMemc) {
-                       $wgMemc = new FakeMemCachedClient;
+                       $wgMemc = new EmptyBagOStuff;
                }
-               $wgMessageCache = new MessageCache( $wgMemc, true, 3600 );
                $wgContLang = $wgLang = Language::factory( 'en' );
 
                $this->userName = "Useruser";
@@ -29,14 +33,14 @@ class TitlePermissionTest extends MediaWikiTestCase {
                $this->title = Title::makeTitle( NS_MAIN, "Main Page" );
                if ( !isset( $this->userUser ) || !( $this->userUser instanceOf User ) ) {
                        $this->userUser = User::newFromName( $this->userName );
-                       
+
                        if ( !$this->userUser->getID() ) {
                                $this->userUser = User::createNew( $this->userName, array(
                                        "email" => "test@example.com",
                                        "real_name" => "Test User" ) );
                                $this->userUser->load();
                        }
-                       
+
                        $this->altUser = User::newFromName( $this->altUserName );
                        if ( !$this->altUser->getID() ) {
                                $this->altUser = User::createNew( $this->altUserName, array(
@@ -51,7 +55,13 @@ class TitlePermissionTest extends MediaWikiTestCase {
                }
        }
 
+       function tearDown() {
+               parent::tearDown();
+       }
+
        function setUserPerm( $perm ) {
+               // Setting member variables is evil!!!
+
                if ( is_array( $perm ) ) {
                        $this->user->mRights = $perm;
                } else {
@@ -66,7 +76,7 @@ class TitlePermissionTest extends MediaWikiTestCase {
        function setUser( $userName = null ) {
                if ( $userName === 'anon' ) {
                        $this->user = $this->anonUser;
-               } else if ( $userName === null || $userName === $this->userName ) {
+               } elseif ( $userName === null || $userName === $this->userName ) {
                        $this->user = $this->userUser;
                } else {
                        $this->user = $this->altUser;
@@ -295,7 +305,7 @@ class TitlePermissionTest extends MediaWikiTestCase {
                        $this->assertEquals( $check[$action][3],
                                $this->title->userCan( $action, true ) );
                        $this->assertEquals( $check[$action][3],
-                               $this->title->quickUserCan( $action, false ) );
+                               $this->title->quickUserCan( $action ) );
 
                        # count( User::getGroupsWithPermissions( $action ) ) < 1
                }
@@ -327,15 +337,13 @@ class TitlePermissionTest extends MediaWikiTestCase {
                $this->assertEquals( $result2, $res );
        }
 
-       function testPermissionHooks() { }
        function testSpecialsAndNSPermissions() {
                $this->setUser( $this->userName );
-               global $wgUser, $wgContLang;
+               global $wgUser;
                $wgUser = $this->user;
-               $prefix = $wgContLang->getFormattedNsText( NS_PROJECT );
 
                $this->setTitle( NS_SPECIAL );
-               
+
                $this->assertEquals( array( array( 'badaccess-group0' ), array( 'ns-specialprotected' ) ),
                                                         $this->title->getUserPermissionsErrors( 'bogus', $this->user ) );
                $this->assertEquals( array( array( 'badaccess-group0' ) ),
@@ -382,22 +390,22 @@ class TitlePermissionTest extends MediaWikiTestCase {
                                                         $this->title->userCan( 'bogus' ) );
        }
 
-       function testCSSandJSPermissions() {
+       function testCssAndJavascriptPermissions() {
                $this->setUser( $this->userName );
                global $wgUser;
                $wgUser = $this->user;
 
                $this->setTitle( NS_USER, $this->altUserName . '/test.js' );
                $this->runCSSandJSPermissions(
-                       array( array( 'badaccess-group0' ), array( 'customcssjsprotected' ) ),
-                       array( array( 'badaccess-group0' ), array( 'customcssjsprotected'  ) ),
+                       array( array( 'badaccess-group0' ), array( 'customjsprotected' ) ),
+                       array( array( 'badaccess-group0' ), array( 'customjsprotected' ) ),
                        array( array( 'badaccess-group0' ) ) );
 
                $this->setTitle( NS_USER, $this->altUserName . '/test.css' );
                $this->runCSSandJSPermissions(
-                       array( array( 'badaccess-group0' ), array( 'customcssjsprotected' ) ),
+                       array( array( 'badaccess-group0' ), array( 'customcssprotected' ) ),
                        array( array( 'badaccess-group0' ) ),
-                       array( array( 'badaccess-group0' ),  array( 'customcssjsprotected' ) ) );
+                       array( array( 'badaccess-group0' ),  array( 'customcssprotected' ) ) );
 
                $this->setTitle( NS_USER, $this->altUserName . '/tempo' );
                $this->runCSSandJSPermissions(
@@ -449,7 +457,7 @@ class TitlePermissionTest extends MediaWikiTestCase {
                                                                                                                                         $this->user ) );
 
                $this->assertEquals( true,
-                                                        $this->title->quickUserCan( 'edit', false ) );
+                                                        $this->title->quickUserCan( 'edit' ) );
                $this->title->mRestrictions = array( "edit" => array( 'bogus', "sysop", "protect", "" ),
                                                                                   "bogus" => array( 'bogus', "sysop", "protect", "" ) );
 
@@ -489,9 +497,9 @@ class TitlePermissionTest extends MediaWikiTestCase {
                                                                                                                                         $this->user ) );
                $this->title->mCascadeRestriction = true;
                $this->assertEquals( false,
-                                                        $this->title->quickUserCan( 'bogus', false ) );
+                                                        $this->title->quickUserCan( 'bogus' ) );
                $this->assertEquals( false,
-                                                        $this->title->quickUserCan( 'edit', false ) );
+                                                        $this->title->quickUserCan( 'edit' ) );
                $this->assertEquals( array( array( 'badaccess-group0' ),
                                                                        array( 'protectedpagetext', 'bogus' ),
                                                                        array( 'protectedpagetext', 'protect' ),
@@ -535,7 +543,7 @@ class TitlePermissionTest extends MediaWikiTestCase {
                $this->setTitle( NS_MAIN, "test page" );
                $this->title->mTitleProtection['pt_create_perm'] = '';
                $this->title->mTitleProtection['pt_user'] = $this->user->getID();
-               $this->title->mTitleProtection['pt_expiry'] = Block::infinity();
+               $this->title->mTitleProtection['pt_expiry'] = wfGetDB( DB_SLAVE )->getInfinity();
                $this->title->mTitleProtection['pt_reason'] = 'test';
                $this->title->mCascadeRestriction = false;
 
@@ -572,7 +580,7 @@ class TitlePermissionTest extends MediaWikiTestCase {
                                                         $this->title->userCan( 'move' ) );
 
                $this->title->mInterwiki = "no";
-               $this->assertEquals( array( array( 'immobile-page' ) ),
+               $this->assertEquals( array( array( 'immobile-source-page' ) ),
                                                         $this->title->getUserPermissionsErrors( 'move', $this->user ) );
                $this->assertEquals( false,
                                                         $this->title->userCan( 'move' ) );
@@ -621,26 +629,27 @@ class TitlePermissionTest extends MediaWikiTestCase {
                $prev = time();
                $now = time() + 120;
                $this->user->mBlockedby = $this->user->getId();
-               $this->user->mBlock = new Block( '127.0.8.1', $this->user->getId(), $this->user->getId(),
+               $this->user->mBlock = new Block( '127.0.8.1', 0, $this->user->getId(),
                                                                                'no reason given', $prev + 3600, 1, 0 );
                $this->user->mBlock->mTimestamp = 0;
                $this->assertEquals( array( array( 'autoblockedtext',
                        '[[User:Useruser|Useruser]]', 'no reason given', '127.0.0.1',
-                       'Useruser', 0, 'infinite', '127.0.8.1',
+                       'Useruser', null, 'infinite', '127.0.8.1',
                        $wgLang->timeanddate( wfTimestamp( TS_MW, $prev ), true ) ) ),
                        $this->title->getUserPermissionsErrors( 'move-target',
                        $this->user ) );
 
-               $this->assertEquals( false,
-                                                        $this->title->userCan( 'move-target', $this->user ) );
+               $this->assertEquals( false, $this->title->userCan( 'move-target' ) );
+               // quickUserCan should ignore user blocks
+               $this->assertEquals( true, $this->title->quickUserCan( 'move-target' ) );
 
                global $wgLocalTZoffset;
                $wgLocalTZoffset = -60;
                $this->user->mBlockedby = $this->user->getName();
-               $this->user->mBlock = new Block( '127.0.8.1', 2, 1, 'no reason given', $now, 0, 10 );
+               $this->user->mBlock = new Block( '127.0.8.1', 0, 1, 'no reason given', $now, 0, 10 );
                $this->assertEquals( array( array( 'blockedtext',
                        '[[User:Useruser|Useruser]]', 'no reason given', '127.0.0.1',
-                       'Useruser', 0, '23:00, 31 December 1969', '127.0.8.1',
+                       'Useruser', null, '23:00, 31 December 1969', '127.0.8.1',
                        $wgLang->timeanddate( wfTimestamp( TS_MW, $now ), true ) ) ),
                        $this->title->getUserPermissionsErrors( 'move-target', $this->user ) );