From 085fdfec2f298fd89d0265d0f97edfdda5a12954 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Mon, 29 Jul 2013 23:32:03 +0200 Subject: [PATCH] adding unit tests for OC_Util::basename --- lib/util.php | 1 + tests/lib/util.php | 34 +++++++++++++++++++++++++--------- 2 files changed, 26 insertions(+), 9 deletions(-) diff --git a/lib/util.php b/lib/util.php index 004470908d..7f7b9f334b 100755 --- a/lib/util.php +++ b/lib/util.php @@ -895,6 +895,7 @@ class OC_Util { public static function basename($file) { + $file = rtrim($file, '/'); $t = explode('/', $file); return array_pop($t); } diff --git a/tests/lib/util.php b/tests/lib/util.php index 9742d57ac7..2781ade099 100644 --- a/tests/lib/util.php +++ b/tests/lib/util.php @@ -8,12 +8,9 @@ class Test_Util extends PHPUnit_Framework_TestCase { - // Constructor - function Test_Util() { - date_default_timezone_set("UTC"); - } - function testFormatDate() { + date_default_timezone_set("UTC"); + $result = OC_Util::formatDate(1350129205); $expected = 'October 13, 2012 11:53'; $this->assertEquals($expected, $result); @@ -61,8 +58,27 @@ class Test_Util extends PHPUnit_Framework_TestCase { OC_Config::deleteKey('mail_domain'); } - function testGetInstanceIdGeneratesValidId() { - OC_Config::deleteKey('instanceid'); - $this->assertStringStartsWith('oc', OC_Util::getInstanceId()); - } + function testGetInstanceIdGeneratesValidId() { + OC_Config::deleteKey('instanceid'); + $this->assertStringStartsWith('oc', OC_Util::getInstanceId()); + } + + /** + * @dataProvider baseNameProvider + */ + public function testBaseName($expected, $file) + { + $base = \OC_Util::basename($file); + $this->assertEquals($expected, $base); + } + + public function baseNameProvider() + { + return array( + array('public_html', '/home/user/public_html/'), + array('public_html', '/home/user/public_html'), + array('', '/'), + array('442aa682de2a64db1e010f50e60fd9c9', 'local::C:\Users\ADMINI~1\AppData\Local\Temp\2/442aa682de2a64db1e010f50e60fd9c9/') + ); + } }