mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/Vector.git
synced 2024-11-14 19:26:42 +00:00
7afaa93ab2
Change-Id: Ic8e1a7bc4bab091b0e959deae5258181fc54891b
196 lines
5.6 KiB
PHP
196 lines
5.6 KiB
PHP
<?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
|
|
*/
|
|
|
|
namespace MediaWiki\Skins\Vector\Tests\Unit\Components;
|
|
|
|
use MediaWiki\Config\HashConfig;
|
|
use MediaWiki\Skins\Vector\Components\VectorComponentTableOfContents;
|
|
use MediaWiki\Skins\Vector\FeatureManagement\FeatureManager;
|
|
use Message;
|
|
use MessageLocalizer;
|
|
|
|
/**
|
|
* @group Vector
|
|
* @group Components
|
|
* @coversDefaultClass \MediaWiki\Skins\Vector\Components\VectorComponentTableOfContents
|
|
*/
|
|
class VectorComponentTableOfContentsTest extends \MediaWikiUnitTestCase {
|
|
|
|
public static function provideGetTocData() {
|
|
$config = [
|
|
'VectorTableOfContentsCollapseAtCount' => 1
|
|
];
|
|
$tocData = [
|
|
'number-section-count' => 2,
|
|
'array-sections' => [
|
|
[
|
|
'toclevel' => 1,
|
|
'level' => '2',
|
|
'line' => 'A',
|
|
'number' => '1',
|
|
'index' => '1',
|
|
'fromtitle' => 'Test',
|
|
'byteoffset' => 231,
|
|
'anchor' => 'A',
|
|
'linkAnchor' => 'A',
|
|
'array-sections' => [],
|
|
'is-top-level-section' => true,
|
|
'is-parent-section' => false,
|
|
],
|
|
[
|
|
'toclevel' => 1,
|
|
'level' => '4',
|
|
'line' => 'B',
|
|
'number' => '2',
|
|
'index' => '2',
|
|
'fromtitle' => 'Test',
|
|
'byteoffset' => 245,
|
|
'anchor' => 'B',
|
|
'linkAnchor' => 'B',
|
|
'array-sections' => [],
|
|
'is-top-level-section' => true,
|
|
'is-parent-section' => false,
|
|
]
|
|
]
|
|
];
|
|
$nestedTocData = [
|
|
'number-section-count' => 2,
|
|
'array-sections' => [
|
|
[
|
|
'toclevel' => 1,
|
|
'level' => '2',
|
|
'line' => 'A',
|
|
'number' => '1',
|
|
'index' => '1',
|
|
'fromtitle' => 'Test',
|
|
'byteoffset' => 231,
|
|
'anchor' => 'A',
|
|
'linkAnchor' => 'A',
|
|
'vector-button-label' => 'vector-toc-toggle-button-label',
|
|
'array-sections' => [
|
|
'toclevel' => 2,
|
|
'level' => '4',
|
|
'line' => 'A1',
|
|
'number' => '1.1',
|
|
'index' => '2',
|
|
'fromtitle' => 'Test',
|
|
'byteoffset' => 245,
|
|
'anchor' => 'A1',
|
|
'linkAnchor' => 'A1',
|
|
'array-sections' => [],
|
|
'is-top-level-section' => false,
|
|
'is-parent-section' => false,
|
|
],
|
|
'is-top-level-section' => true,
|
|
'is-parent-section' => true,
|
|
],
|
|
]
|
|
];
|
|
|
|
$expectedConfigData = [
|
|
'vector-is-collapse-sections-enabled' =>
|
|
count( $tocData['array-sections'] ) > 3 &&
|
|
$tocData[ 'number-section-count' ] >= $config[ 'VectorTableOfContentsCollapseAtCount' ],
|
|
'id' => 'vector-toc',
|
|
'data-pinnable-header' => [
|
|
'is-pinned' => true,
|
|
'data-pinnable-element-id' => 'vector-toc',
|
|
'data-feature-name' => 'toc-pinned',
|
|
'label' => 'vector-toc-label',
|
|
'unpin-label' => 'vector-unpin-element-label',
|
|
'pin-label' => 'vector-pin-element-label',
|
|
'label-tag-name' => 'h2'
|
|
]
|
|
];
|
|
$expectedNestedTocData = array_merge( $nestedTocData, $expectedConfigData );
|
|
|
|
return [
|
|
// When zero sections
|
|
[
|
|
[],
|
|
$config,
|
|
// TOC data is empty when given an empty array
|
|
[]
|
|
],
|
|
// When number of multiple sections is lower than configured value
|
|
[
|
|
$tocData,
|
|
array_merge( $config, [ 'VectorTableOfContentsCollapseAtCount' => 3 ] ),
|
|
// 'vector-is-collapse-sections-enabled' value is false
|
|
array_merge( $tocData, $expectedConfigData, [
|
|
'vector-is-collapse-sections-enabled' => false
|
|
] )
|
|
],
|
|
// When number of multiple sections is equal to the configured value
|
|
[
|
|
$tocData,
|
|
array_merge( $config, [ 'VectorTableOfContentsCollapseAtCount' => 2 ] ),
|
|
// 'vector-is-collapse-sections-enabled' value is true
|
|
array_merge( $tocData, $expectedConfigData )
|
|
],
|
|
// When number of multiple sections is higher than configured value
|
|
[
|
|
$tocData,
|
|
array_merge( $config, [ 'VectorTableOfContentsCollapseAtCount' => 1 ] ),
|
|
// 'vector-is-collapse-sections-enabled' value is true
|
|
array_merge( $tocData, $expectedConfigData )
|
|
],
|
|
// When TOC has sections with top level parent sections
|
|
[
|
|
$nestedTocData,
|
|
$config,
|
|
// 'vector-button-label' is provided for top level parent sections
|
|
$expectedNestedTocData
|
|
],
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @covers ::getTemplateData
|
|
* @dataProvider provideGetTOCData
|
|
*/
|
|
public function testGetTemplateData(
|
|
array $tocData,
|
|
array $config,
|
|
array $expected
|
|
) {
|
|
$localizer = $this->createMock( MessageLocalizer::class );
|
|
$localizer->method( 'msg' )->willReturnCallback( function ( $key, ...$params ) {
|
|
$msg = $this->createMock( Message::class );
|
|
$msg->method( '__toString' )->willReturn( $key );
|
|
$msg->method( 'escaped' )->willReturn( $key );
|
|
$msg->method( 'rawParams' )->willReturnSelf();
|
|
$msg->method( 'text' )->willReturn( $key );
|
|
return $msg;
|
|
} );
|
|
$featureManager = $this->createMock( FeatureManager::class );
|
|
$featureManager->method( 'isFeatureEnabled' )->willReturn( true );
|
|
|
|
$toc = new VectorComponentTableOfContents(
|
|
$tocData,
|
|
$localizer,
|
|
new HashConfig( $config ),
|
|
$featureManager
|
|
);
|
|
$this->assertEquals( $expected, $toc->getTemplateData() );
|
|
}
|
|
}
|