PortableInfobox/tests/nodes/NodeNavigationTest.php

70 lines
1.8 KiB
PHP
Raw Normal View History

2015-05-20 14:38:23 +00:00
<?php
2015-06-11 12:51:54 +00:00
class NodeNavigationTest extends WikiaBaseTest {
2015-05-20 14:38:23 +00:00
protected function setUp() {
2015-06-11 12:51:54 +00:00
$this->setupFile = dirname( __FILE__ ) . '/../../PortableInfobox.setup.php';
2015-05-20 14:38:23 +00:00
parent::setUp();
}
2015-06-11 12:51:54 +00:00
/**
* @covers Nodenavigation::getData
2015-06-11 12:51:54 +00:00
* @covers Node::getInnerValue
* @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 [
[ '<navigation></navigation>', [ ], [ 'value' => '' ] ],
[ '<navigation>kjdflkja dafkjlsdkfj</navigation>', [ ], [ 'value' => 'kjdflkja dafkjlsdkfj' ] ],
[ '<navigation>kjdflkja<ref>dafkjlsdkfj</ref></navigation>', [ ], [ 'value' => 'kjdflkja<ref>dafkjlsdkfj</ref>' ] ],
2015-06-11 12:51:54 +00:00
];
}
2015-05-20 14:38:23 +00:00
/**
* @dataProvider testIsEmptyDataProvider
*/
public function testIsEmpty( $string, $expectedOutput ) {
$xml = simplexml_load_string( $string );
$node = new Wikia\PortableInfobox\Parser\Nodes\NodeNavigation( $xml, [ ] );
2015-05-20 14:38:23 +00:00
$data = $node->getData();
$this->assertTrue( $node->isEmpty( $data ) == $expectedOutput );
}
2015-06-11 12:51:54 +00:00
2015-05-20 14:38:23 +00:00
public function testIsEmptyDataProvider() {
return [
[
'string' => '<navigation>goodnight</navigation>',
2015-05-20 14:38:23 +00:00
'expectedOutput' => false
],
[
'string' => '<navigation>null</navigation>',
2015-05-20 14:38:23 +00:00
'expectedOutput' => false
],
[
'string' => '<navigation>0</navigation>',
2015-05-20 14:57:43 +00:00
'expectedOutput' => false
],
[
'string' => '<navigation>\'0\'</navigation>',
2015-05-20 14:57:43 +00:00
'expectedOutput' => false
2015-05-20 14:38:23 +00:00
],
[
'string' => '<navigation></navigation>',
2015-05-20 14:38:23 +00:00
'expectedOutput' => true
],
[
'string' => '<navigation> </navigation>',
2015-05-20 14:38:23 +00:00
'expectedOutput' => true
]
];
}
}