PortableInfobox/tests/NodeFooterTest.php

44 lines
1 KiB
PHP
Raw Normal View History

2015-05-20 14:38:23 +00:00
<?php
class NodeFooterTest extends WikiaBaseTest {
protected function setUp() {
$this->setupFile = dirname( __FILE__ ) . '/../PortableInfobox.setup.php';
parent::setUp();
}
/**
* @dataProvider testIsEmptyDataProvider
*/
public function testIsEmpty( $string, $expectedOutput ) {
$xml = simplexml_load_string( $string );
$node = new Wikia\PortableInfobox\Parser\Nodes\NodeFooter( $xml, [] );
$data = $node->getData();
$this->assertTrue( $node->isEmpty( $data ) == $expectedOutput );
}
public function testIsEmptyDataProvider() {
return [
[
'string' => '<footer>goodnight</footer>',
'expectedOutput' => false
],
[
'string' => '<footer>null</footer>',
'expectedOutput' => false
],
[
'string' => '<footer>0</footer>',
2015-05-20 14:57:43 +00:00
'expectedOutput' => false
],
[
'string' => '<footer>\'0\'</footer>',
'expectedOutput' => false
2015-05-20 14:38:23 +00:00
],
[
'string' => '<footer></footer>',
'expectedOutput' => true
],
[
'string' => '<footer> </footer>',
'expectedOutput' => true
]
];
}
}