12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- <?php
- require_once(api_get_path(LIBRARY_PATH).'fileDisplay.lib.php');
- class TestFileDisplay extends UnitTestCase {
- public function TestFileDisplay(){
- $this->UnitTestCase('File display library - main/inc/lib/fileDisplay.lib.test.php');
- }
-
-
-
-
-
-
-
-
- public function testChooseImage(){
- global $_course;
- static $type, $image;
- $file_name = '';
- $res = choose_image($file_name);
- $this->assertEqual($res,'defaut.gif');
- $this->assertTrue(is_string($res));
-
- }
- public function testFormatFileSize(){
- $file_size = '100';
- $res = format_file_size($file_size);
- $this->assertTrue($res);
- $this->assertTrue(is_string($res));
-
- }
- public function testFormatDate(){
- $date = '11/02/2009';
- $res = format_date($date);
- $this->assertTrue($res);
-
- }
- public function testFormatUrl(){
- $file_path ='/var/www/path/';
- $res = format_url($file_path);
- $this->assertTrue($res);
- $this->assertTrue(is_string($res));
-
- }
- public function testRecentModifiedFileTime(){
- $dir_name = '';
- $$do_recursive =true;
- $res = recent_modified_file_time($dir_name, $do_recursive);
- $this->assertTrue(is_numeric($res));
-
- }
- public function testFolderSize(){
- $dir_name ='';
- $res = folder_size($dir_name);
- $this->assertFalse($res);
- $this->assertTrue(is_numeric($res));
-
- }
- }
- ?>
|