mirror of
https://github.com/Universal-Omega/PortableInfobox.git
synced 2024-11-15 20:09:44 +00:00
44 lines
1 KiB
PHP
44 lines
1 KiB
PHP
<?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>',
|
|
'expectedOutput' => false
|
|
],
|
|
[
|
|
'string' => '<footer>\'0\'</footer>',
|
|
'expectedOutput' => false
|
|
],
|
|
[
|
|
'string' => '<footer></footer>',
|
|
'expectedOutput' => true
|
|
],
|
|
[
|
|
'string' => '<footer> </footer>',
|
|
'expectedOutput' => true
|
|
]
|
|
];
|
|
}
|
|
} |