2020-04-20 16:38:01 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
* http://www.gnu.org/copyleft/gpl.html
|
|
|
|
*
|
|
|
|
* @file
|
|
|
|
* @since 1.35
|
|
|
|
*/
|
|
|
|
|
|
|
|
use Vector\FeatureManagement\Requirements\LatestSkinVersionRequirement;
|
2020-04-28 21:02:15 +00:00
|
|
|
use Vector\SkinVersionLookup;
|
2020-04-20 16:38:01 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @group Vector
|
|
|
|
* @coversDefaultClass \Vector\FeatureManagement\Requirements\LatestSkinVersionRequirement
|
|
|
|
*/
|
|
|
|
class LatestSkinVersionRequirementTest extends \MediaWikiTestCase {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @covers ::isMet
|
|
|
|
*/
|
2020-04-28 21:02:15 +00:00
|
|
|
public function testUnmet() {
|
|
|
|
$config = new HashConfig( [ 'VectorDefaultSkinVersionForExistingAccounts' => '1' ] );
|
2020-04-20 16:38:01 +00:00
|
|
|
|
2020-04-28 21:02:15 +00:00
|
|
|
$requirement = new LatestSkinVersionRequirement(
|
|
|
|
new SkinVersionLookup( new WebRequest(), $this->getTestUser()->getUser(), $config )
|
2020-04-20 16:38:01 +00:00
|
|
|
);
|
|
|
|
|
2020-04-28 21:02:15 +00:00
|
|
|
$this->assertFalse( $requirement->isMet(), '"1" isn\'t considered latest.' );
|
2020-04-20 16:38:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @covers ::isMet
|
|
|
|
*/
|
2020-04-28 21:02:15 +00:00
|
|
|
public function testMet() {
|
|
|
|
$config = new HashConfig( [ 'VectorDefaultSkinVersionForExistingAccounts' => '2' ] );
|
2020-04-20 16:38:01 +00:00
|
|
|
|
2020-04-28 21:02:15 +00:00
|
|
|
$requirement = new LatestSkinVersionRequirement(
|
|
|
|
new SkinVersionLookup( new WebRequest(), $this->getTestUser()->getUser(), $config )
|
2020-04-20 16:38:01 +00:00
|
|
|
);
|
2020-04-28 21:02:15 +00:00
|
|
|
|
|
|
|
$this->assertTrue( $requirement->isMet(), '"2" is considered latest.' );
|
2020-04-20 16:38:01 +00:00
|
|
|
}
|
|
|
|
}
|