wiki.techinc.nl/tests/phpunit/includes/GlobalFunctions/wfBaseNameTest.php
addshore 4bb09bbca5 @covers for all GlobalFunc tests
Also split 2 tests off into their correct test classes,
this methods are clearly no longer global functions

Change-Id: I482433f3099e72507a766e85d9576ff36e58b9ad
2013-10-24 10:00:55 +00:00

36 lines
1 KiB
PHP

<?php
/**
* @covers ::wfBaseName
*/
class WfBaseNameTest extends MediaWikiTestCase {
/**
* @dataProvider providePaths
*/
public function testBaseName( $fullpath, $basename ) {
$this->assertEquals( $basename, wfBaseName( $fullpath ),
"wfBaseName('$fullpath') => '$basename'" );
}
public static function providePaths() {
return array(
array( '', '' ),
array( '/', '' ),
array( '\\', '' ),
array( '//', '' ),
array( '\\\\', '' ),
array( 'a', 'a' ),
array( 'aaaa', 'aaaa' ),
array( '/a', 'a' ),
array( '\\a', 'a' ),
array( '/aaaa', 'aaaa' ),
array( '\\aaaa', 'aaaa' ),
array( '/aaaa/', 'aaaa' ),
array( '\\aaaa\\', 'aaaa' ),
array( '\\aaaa\\', 'aaaa' ),
array( '/mnt/upload3/wikipedia/en/thumb/8/8b/Zork_Grand_Inquisitor_box_cover.jpg/93px-Zork_Grand_Inquisitor_box_cover.jpg',
'93px-Zork_Grand_Inquisitor_box_cover.jpg' ),
array( 'C:\\Progra~1\\Wikime~1\\Wikipe~1\\VIEWER.EXE', 'VIEWER.EXE' ),
array( 'Östergötland_coat_of_arms.png', 'Östergötland_coat_of_arms.png' ),
);
}
}