mirror of
https://github.com/Universal-Omega/PortableInfobox.git
synced 2024-11-16 04:22:37 +00:00
218 lines
6.1 KiB
PHP
218 lines
6.1 KiB
PHP
<?php
|
|
|
|
class NodeDataTest extends WikiaBaseTest {
|
|
protected function setUp() {
|
|
$this->setupFile = dirname( __FILE__ ) . '/../../PortableInfobox.setup.php';
|
|
parent::setUp();
|
|
}
|
|
|
|
/**
|
|
* @covers Node::getSource
|
|
* @dataProvider sourceDataProvider
|
|
*
|
|
* @param $markup
|
|
* @param $params
|
|
* @param $expected
|
|
*/
|
|
public function testSource( $markup, $params, $expected ) {
|
|
$node = \Wikia\PortableInfobox\Parser\Nodes\NodeFactory::newFromXML( $markup, $params );
|
|
|
|
$this->assertEquals( $expected, $node->getSource() );
|
|
}
|
|
|
|
public function sourceDataProvider() {
|
|
return [
|
|
[ '<data source="test"></data>', [ ], [ 'test' ] ],
|
|
[ '<data source="test"><label source="test">{{{test}}}</label><default>{{{test}}}</default></data>',
|
|
[ ], [ 'test' ] ],
|
|
[ '<data source="test"><default>{{{test 2}}}</default></data>', [ ], [ 'test', 'test 2' ] ],
|
|
[ '<data></data>', [ ], [ ] ],
|
|
[ '<data source="test1"><default>{{#if: {{{test2|}}}| [[{{{test2}}} with some text]] }}</default></data>',
|
|
[ ], [ 'test1', 'test2' ] ],
|
|
[ '<data><default>{{#switch: {{{test2|}}}|{{{test3}}}|{{{test4|kdjk|sajdkfj|}}}]] }}</default></data>',
|
|
[ ], [ 'test2', 'test3', 'test4' ] ],
|
|
[ '<data><format>my {{{test2}}}$$$</format><default>{{#switch: {{{test2|}}}|{{{test3}}}|{{{test4|kdjk|sajdkfj|}}}]] }}</default></data>',
|
|
[ ], [ 'test2', 'test3', 'test4' ] ]
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @covers Node::getExternalParser
|
|
* @covers Node::setExternalParser
|
|
* @dataProvider parserTestDataProvider
|
|
*
|
|
* @param $parser
|
|
* @param $expected
|
|
*/
|
|
public function testExternalParserSetUp( $parser, $expected ) {
|
|
$node = \Wikia\PortableInfobox\Parser\Nodes\NodeFactory::newFromXML( '<data></data>', [ ] );
|
|
|
|
$this->assertEquals( $expected, $node->setExternalParser( $parser )->getExternalParser() );
|
|
}
|
|
|
|
public function parserTestDataProvider() {
|
|
return [
|
|
[ null, new \Wikia\PortableInfobox\Parser\SimpleParser() ],
|
|
[ new \Wikia\PortableInfobox\Parser\SimpleParser(), new \Wikia\PortableInfobox\Parser\SimpleParser() ]
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @covers NodeData::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() {
|
|
return [
|
|
[ '<data source="test"></data>', [ 'test' => 'test' ], [ 'value' => 'test', 'label' => '' ] ],
|
|
[ '<data source="test"><default>def</default></data>', [ ], [ 'value' => 'def', 'label' => '' ] ],
|
|
[ '<data source="test"><label>l</label><default>def</default></data>', [ ],
|
|
[ 'value' => 'def', 'label' => 'l' ] ],
|
|
[ '<data source="test"><label>l</label><default>def</default></data>', [ 'test' => 1 ],
|
|
[ 'value' => 1, 'label' => 'l' ] ],
|
|
[ '<data></data>', [ ], [ 'label' => '', 'value' => null ] ],
|
|
[ '<data source="test"><label>l</label><format>{{{test}}}%</format><default>def</default></data>', [ 'test' => 1 ],
|
|
[ 'value' => '{{{test}}}%', 'label' => 'l' ] ],
|
|
[ '<data source="test"><label>l</label><format>{{{not_defined_var}}}%</format><default>def</default></data>', [ 'test' => 1 ],
|
|
[ 'value' => '{{{not_defined_var}}}%', 'label' => 'l' ] ],
|
|
[ '<data source="test"><label>l</label><format>{{{test}}}%</format><default>def</default></data>', [ ],
|
|
[ 'value' => 'def', 'label' => 'l' ] ],
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @covers Node::getRenderData
|
|
* @dataProvider dataRenderProvider
|
|
*
|
|
* @param $markup
|
|
* @param $params
|
|
* @param $expected
|
|
*/
|
|
public function testRenderData( $markup, $params, $expected ) {
|
|
$node = \Wikia\PortableInfobox\Parser\Nodes\NodeFactory::newFromXML( $markup, $params );
|
|
|
|
$this->assertEquals( $expected, $node->getRenderData() );
|
|
}
|
|
|
|
public function dataRenderProvider() {
|
|
return [
|
|
[ '<data source="test"></data>',
|
|
[ 'test' => 'test' ],
|
|
[ 'type' => 'data', 'data' => [ 'value' => 'test', 'label' => '' ] ]
|
|
]
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @covers Node::isType
|
|
* @dataProvider isTypeDataProvider
|
|
*
|
|
* @param $markup
|
|
* @param $typeToCheck
|
|
* @param $expected
|
|
*/
|
|
public function testIsType( $markup, $typeToCheck, $expected ) {
|
|
$node = \Wikia\PortableInfobox\Parser\Nodes\NodeFactory::newFromXML( $markup, [ ] );
|
|
|
|
$this->assertEquals( $expected, $node->isType( $typeToCheck ) );
|
|
}
|
|
|
|
public function isTypeDataProvider() {
|
|
return [
|
|
[ '<data source="test"></data>', 'data', true ],
|
|
[ '<data source="test"></data>', 'DaTa', true ],
|
|
[ '<data source="test"></data>', 'aksdjflkj', false ],
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @covers Node::getType
|
|
* @dataProvider typeDataProvider
|
|
*
|
|
* @param $markup
|
|
* @param $expected
|
|
*/
|
|
public function testType( $markup, $expected ) {
|
|
$node = \Wikia\PortableInfobox\Parser\Nodes\NodeFactory::newFromXML( $markup, [ ] );
|
|
|
|
$this->assertEquals( $expected, $node->getType() );
|
|
}
|
|
|
|
public function typeDataProvider() {
|
|
return [
|
|
[ '<data source="test"></data>', 'data' ],
|
|
[ '<infobox></infobox>', 'infobox' ],
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @dataProvider testIsEmptyDataProvider
|
|
*/
|
|
public function testIsEmpty( $season, $expectedOutput ) {
|
|
$string = '<data source="season"><label>Season</label></data>';
|
|
$xml = simplexml_load_string( $string );
|
|
|
|
$node = new Wikia\PortableInfobox\Parser\Nodes\NodeData( $xml, [ 'season' => $season ] );
|
|
$nodeData = $node->getData();
|
|
$this->assertTrue( $node->isEmpty( $nodeData ) == $expectedOutput );
|
|
}
|
|
|
|
public function testIsEmptyDataProvider() {
|
|
return [
|
|
[
|
|
'season' => '0',
|
|
'expectedOutput' => false
|
|
],
|
|
[
|
|
'season' => '1',
|
|
'expectedOutput' => false
|
|
],
|
|
[
|
|
'season' => 'one',
|
|
'expectedOutput' => false
|
|
],
|
|
[
|
|
'season' => 'null',
|
|
'expectedOutput' => false
|
|
],
|
|
[
|
|
'season' => 'false',
|
|
'expectedOutput' => false
|
|
],
|
|
[
|
|
'season' => ' ',
|
|
'expectedOutput' => false
|
|
],
|
|
[
|
|
'season' => null,
|
|
'expectedOutput' => true
|
|
],
|
|
[
|
|
'season' => [ ],
|
|
'expectedOutput' => true
|
|
],
|
|
[
|
|
'season' => '',
|
|
'expectedOutput' => true
|
|
],
|
|
[
|
|
'season' => 5,
|
|
'expectedOutput' => false
|
|
],
|
|
[
|
|
'season' => 0,
|
|
'expectedOutput' => false
|
|
]
|
|
];
|
|
}
|
|
}
|