wiki.techinc.nl/tests/phpunit/includes/GlobalFunctions/wfShorthandToIntegerTest.php

29 lines
750 B
PHP
Raw Normal View History

<?php
class wfShorthandToIntegerTest extends MediaWikiTestCase {
/**
* @dataProvider provideABunchOfShorthands
*/
function testWfShorthandToInteger( $input, $output, $description ) {
$this->assertEquals(
wfShorthandToInteger( $input ),
$output,
$description
);
}
function provideABunchOfShorthands() {
return array(
array( '', -1, 'Empty string' ),
array( ' ', -1, 'String of spaces' ),
array( '1G', 1024 * 1024 * 1024, 'One gig uppercased' ),
array( '1g', 1024 * 1024 * 1024, 'One gig lowercased' ),
array( '1M', 1024 * 1024, 'One meg uppercased' ),
array( '1m', 1024 * 1024, 'One meg lowercased' ),
2011-10-16 22:25:18 +00:00
array( '1K', 1024, 'One kb uppercased' ),
2011-10-16 22:25:41 +00:00
array( '1k', 1024, 'One kb lowercased' ),
);
}
}