setupFile = dirname( __FILE__ ) . '/../../PortableInfobox.setup.php';
parent::setUp();
}
/**
* @covers NodeImage::getGalleryData
*/
public function testGalleryData() {
$input = '
';
$expected = array(
array(
'label' => '_caption_',
'title' => '_title_',
)
);
$this->assertEquals( $expected, Wikia\PortableInfobox\Parser\Nodes\NodeImage::getGalleryData( $input ) );
}
/**
* @covers NodeImage::getTabberData
*/
public function testTabberData() {
$input = '';
$expected = array(
array(
'label' => '_title_',
'title' => '_data-image-key_',
)
);
$this->assertEquals( $expected, Wikia\PortableInfobox\Parser\Nodes\NodeImage::getTabberData( $input ) );
}
/**
* @covers NodeImage::getMarkers
* @dataProvider markersProvider
*
* @param $markup
* @param $params
* @param $expected
*/
public function testMarkers( $ext, $value, $expected ) {
$this->assertEquals( $expected, Wikia\PortableInfobox\Parser\Nodes\NodeImage::getMarkers( $value, $ext ) );
}
public function markersProvider() {
return [
[
'TABBER',
"\x7fUNIQ123456789-tAbBeR-12345678-QINU\x7f
",
[ "\x7fUNIQ123456789-tAbBeR-12345678-QINU\x7f" ]
],
[
'GALLERY',
"\x7fUNIQ123456789-tAbBeR-12345678-QINU\x7f\x7fUNIQabcd-gAlLeRy-12345678-QINU\x7f\x7fUNIQabcd-gAlLeRy-87654321-QINU\x7f",
[ "\x7fUNIQabcd-gAlLeRy-12345678-QINU\x7f", "\x7fUNIQabcd-gAlLeRy-87654321-QINU\x7f" ]
]
];
}
/**
* @covers NodeImage::getData
* @dataProvider dataProvider
*
* @param $markup
* @param $params
* @param $expected
*/
public function testData( $markup, $params, $expected ) {
$node = \Wikia\PortableInfobox\Parser\Nodes\NodeFactory::newFromXML( $markup, $params );
$this->assertEquals( $expected, $node->getData() );
}
public function dataProvider() {
// markup, params, expected
return [
[
'',
[ ],
[ [ 'url' => '', 'name' => '', 'key' => '', 'alt' => null, 'caption' => null ] ]
],
[
'',
[ 'img' => 'test.jpg' ],
[ [ 'url' => '', 'name' => 'Test.jpg', 'key' => 'Test.jpg', 'alt' => null, 'caption' => null ] ]
],
[
'test alt',
[ 'img' => 'test.jpg' ],
[ [ 'url' => '', 'name' => 'Test.jpg', 'key' => 'Test.jpg', 'alt' => 'test alt', 'caption' => null ] ]
],
[
'test alt',
[ 'img' => 'test.jpg', 'alt source' => 2 ],
[ [ 'url' => '', 'name' => 'Test.jpg', 'key' => 'Test.jpg', 'alt' => 2, 'caption' => null ] ]
],
[
'test alt',
[ 'img' => 'test.jpg' ],
[ [ 'url' => '', 'name' => 'Test.jpg', 'key' => 'Test.jpg', 'alt' => 'test alt', 'caption' => 'test.jpg' ] ]
],
];
}
/**
* @covers NodeImage::isEmpty
* @dataProvider isEmptyProvider
*
* @param $markup
* @param $params
* @param $expected
*/
public function testIsEmpty( $markup, $params, $expected ) {
$node = \Wikia\PortableInfobox\Parser\Nodes\NodeFactory::newFromXML( $markup, $params );
$this->assertEquals( $expected, $node->isEmpty() );
}
public function isEmptyProvider() {
return [
[ '', [ ], true ],
];
}
/**
* @covers NodeImage::getSource
* @dataProvider sourceProvider
*
* @param $markup
* @param $expected
*/
public function testSource( $markup, $expected ) {
$node = \Wikia\PortableInfobox\Parser\Nodes\NodeFactory::newFromXML( $markup, [ ] );
$this->assertEquals( $expected, $node->getSource() );
}
public function sourceProvider() {
return [
[
'',
[ 'img' ]
],
[
'{{{img}}}',
[ 'img' ]
],
[
'',
[ 'img', 'alt', 'cap' ]
],
[
'{{{def}}}',
[ 'img', 'alt', 'def', 'cap' ] ],
[
'',
[ ]
],
];
}
/**
* @dataProvider testVideoProvider
*/
public function testVideo( $markup, $params, $expected ) {
global $wgHooks;
// backup the hooks
$tmpHooks = $wgHooks['PortableInfoboxNodeImage::getData'];
$wgHooks['PortableInfoboxNodeImage::getData'] = [];
$fileMock = new FileMock();
$xmlObj = Wikia\PortableInfobox\Parser\XmlParser::parseXmlString( $markup );
$this->mockStaticMethod( 'WikiaFileHelper', 'getFileFromTitle', $fileMock );
$nodeImage = new Wikia\PortableInfobox\Parser\Nodes\NodeImage( $xmlObj, $params );
$this->assertEquals( $expected, $nodeImage->getData() );
// restore the hooks
$wgHooks['PortableInfoboxNodeImage::getData'] = $tmpHooks;
}
public function testVideoProvider() {
return [
[
'',
[ 'img' => 'test.jpg' ],
[
[
'url' => 'http://test.url',
'name' => 'Test.jpg',
'key' => 'Test.jpg',
'alt' => null,
'caption' => null,
'isVideo' => true,
'duration' => '00:10'
]
]
]
];
}
}
class FileMock {
public function getMediaType() {
return "VIDEO";
}
public function getMetadataDuration() {
return 10;
}
public function getUrl() {
return '';
}
public function getTitle() {
return new TitleMock();
}
}
class TitleMock {
public function getFullURL() {
return 'http://test.url';
}
}