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
|
|
|
|
*/
|
|
|
|
|
2021-02-26 21:29:45 +00:00
|
|
|
namespace Vector\FeatureManagement\Tests;
|
|
|
|
|
|
|
|
use HashConfig;
|
|
|
|
use User;
|
2020-04-20 16:38:01 +00:00
|
|
|
use Vector\FeatureManagement\Requirements\LatestSkinVersionRequirement;
|
2020-04-28 21:02:15 +00:00
|
|
|
use Vector\SkinVersionLookup;
|
2021-02-26 21:29:45 +00:00
|
|
|
use WebRequest;
|
2020-04-20 16:38:01 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @group Vector
|
2021-02-26 21:29:45 +00:00
|
|
|
* @group FeatureManagement
|
2020-04-20 16:38:01 +00:00
|
|
|
* @coversDefaultClass \Vector\FeatureManagement\Requirements\LatestSkinVersionRequirement
|
|
|
|
*/
|
2021-02-26 21:29:45 +00:00
|
|
|
class LatestSkinVersionRequirementTest extends \MediaWikiUnitTestCase {
|
2020-04-20 16:38:01 +00:00
|
|
|
|
2021-02-26 21:29:45 +00:00
|
|
|
public function provideIsMet() {
|
|
|
|
// $version, $expected, $msg
|
|
|
|
yield 'not met' => [ '1', false, '"1" isn\'t considered latest.' ];
|
|
|
|
yield 'met' => [ '2', true, '"2" is considered latest.' ];
|
2020-04-20 16:38:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2021-02-26 21:29:45 +00:00
|
|
|
* @dataProvider provideIsMet
|
2020-04-20 16:38:01 +00:00
|
|
|
* @covers ::isMet
|
|
|
|
*/
|
2021-02-26 21:29:45 +00:00
|
|
|
public function testIsMet( $version, $expected, $msg ) {
|
|
|
|
$config = new HashConfig( [ 'VectorDefaultSkinVersionForExistingAccounts' => $version ] );
|
|
|
|
|
|
|
|
$user = $this->createMock( User::class );
|
|
|
|
$user->method( 'isRegistered' )->willReturn( true );
|
|
|
|
$user->method( 'getOption' )
|
|
|
|
->will( $this->returnArgument( 1 ) );
|
|
|
|
|
|
|
|
$request = $this->createMock( WebRequest::class );
|
|
|
|
$request->method( 'getVal' )
|
|
|
|
->will( $this->returnArgument( 1 ) );
|
2020-04-20 16:38:01 +00:00
|
|
|
|
2020-04-28 21:02:15 +00:00
|
|
|
$requirement = new LatestSkinVersionRequirement(
|
2021-02-26 21:29:45 +00:00
|
|
|
new SkinVersionLookup(
|
|
|
|
$request,
|
|
|
|
$user,
|
|
|
|
$config
|
|
|
|
)
|
2020-04-20 16:38:01 +00:00
|
|
|
);
|
2020-04-28 21:02:15 +00:00
|
|
|
|
2021-02-26 21:29:45 +00:00
|
|
|
$this->assertSame( $expected, $requirement->isMet(), $msg );
|
2020-04-20 16:38:01 +00:00
|
|
|
}
|
2021-02-26 21:29:45 +00:00
|
|
|
|
2020-04-20 16:38:01 +00:00
|
|
|
}
|