1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195
|
<?php
use MediaWiki\Output\OutputPage;
use MediaWiki\Skin\SkinComponentTableOfContents;
use Wikimedia\Parsoid\Core\SectionMetadata;
use Wikimedia\Parsoid\Core\TOCData;
/**
* @covers \MediaWiki\Skin\SkinComponentTableOfContents
* @group Skin
*/
class SkinComponentTableOfContentsTest extends MediaWikiUnitTestCase {
private function addDefaults( array $sectionData ): array {
return SectionMetadata::fromLegacy( $sectionData )->toLegacy();
}
public function provideGetSectionsData(): array {
// byteoffset and fromtitle are redacted from this test.
$SECTION_1 = [
'toclevel' => 1,
'line' => 'Section 1',
'anchor' => 'section_1',
];
$SECTION_1_1 = [
'toclevel' => 2,
'line' => 'Section 1.1',
'anchor' => 'section_1_1',
];
$SECTION_1_2 = [
'toclevel' => 2,
'line' => 'Section 1.2',
'anchor' => 'section_1_2',
];
$SECTION_1_2_1 = [
'toclevel' => 3,
'line' => 'Section 1.2.1',
'anchor' => 'section_1_2_1',
];
$SECTION_1_3 = [
'toclevel' => 2,
'line' => 'Section 1.3',
'anchor' => 'section_1_3',
];
$SECTION_2 = [
'toclevel' => 1,
'line' => 'Section 2',
'anchor' => 'section_2',
];
return [
[
// isTocEnabled
false,
// sections data
[],
// expected
[]
],
[
// isTocEnabled
true,
// sections data
[
$SECTION_1,
$SECTION_2
],
// expected
[
'number-section-count' => 2,
'array-sections' => [
$this->addDefaults( $SECTION_1 ) + [
'array-sections' => [],
'is-top-level-section' => true,
'is-parent-section' => false,
],
$this->addDefaults( $SECTION_2 ) + [
'array-sections' => [],
'is-top-level-section' => true,
'is-parent-section' => false,
]
]
]
],
[
// isTocEnabled
true,
// sections data
[
$SECTION_1,
$SECTION_1_1,
$SECTION_2,
],
// expected
[
'number-section-count' => 3,
'array-sections' => [
$this->addDefaults( $SECTION_1 ) + [
'array-sections' => [
$this->addDefaults( $SECTION_1_1 ) + [
'array-sections' => [],
'is-top-level-section' => false,
'is-parent-section' => false,
]
],
'is-top-level-section' => true,
'is-parent-section' => true,
],
$this->addDefaults( $SECTION_2 ) + [
'array-sections' => [],
'is-top-level-section' => true,
'is-parent-section' => false,
]
]
]
],
[
// isTocEnabled
true,
// sections data
[
$SECTION_1,
$SECTION_1_1,
$SECTION_1_2,
$SECTION_1_2_1,
$SECTION_1_3,
$SECTION_2,
],
// expected
[
'number-section-count' => 6,
'array-sections' => [
$this->addDefaults( $SECTION_1 ) + [
'array-sections' => [
$this->addDefaults( $SECTION_1_1 ) + [
'array-sections' => [],
'is-top-level-section' => false,
'is-parent-section' => false,
],
$this->addDefaults( $SECTION_1_2 ) + [
'array-sections' => [
$this->addDefaults( $SECTION_1_2_1 ) + [
'array-sections' => [],
'is-top-level-section' => false,
'is-parent-section' => false,
],
],
'is-top-level-section' => false,
'is-parent-section' => true,
],
$this->addDefaults( $SECTION_1_3 ) + [
'array-sections' => [],
'is-top-level-section' => false,
'is-parent-section' => false,
]
],
'is-top-level-section' => true,
'is-parent-section' => true,
],
$this->addDefaults( $SECTION_2 ) + [
'array-sections' => [],
'is-top-level-section' => true,
'is-parent-section' => false,
]
]
]
]
];
}
/**
* @dataProvider provideGetSectionsData
* @param bool $isTocEnabled
* @param array $sectionsData
* @param array $expected
*/
public function testGetTemplateData( $isTocEnabled, $sectionsData, $expected ) {
// Convert to first class objects
$tocData = new TOCData;
array_map(
static function ( $s ) use ( $tocData ) {
$tocData->addSection( SectionMetadata::fromLegacy( $s ) );
},
$sectionsData
);
$mockOutput = $this->createMock( OutputPage::class );
$mockOutput->method( 'isTOCEnabled' )->willReturn( $isTocEnabled );
$mockOutput->method( 'getTOCData' )->willReturn( $tocData );
$skinComponent = new SkinComponentTableOfContents( $mockOutput );
$data = $skinComponent->getTemplateData();
$this->assertEquals( $expected, $data );
}
}
|