UnitTestCase('Database library - main/inc/lib/database.lib.test.php'); } public function setUp() { global $_configuration; $this->dbase = new Database(); } public function tearDown() { $this->dbase = null; } public function testAffectedRows() { $res=$this->dbase->affected_rows(); $this->assertTrue(is_numeric($res)); } public function testCountRows() { $table='class'; $res=$this->dbase->count_rows($table); if(!is_string($res)){ $this->assertTrue(is_numeric($res)); } } public function testError() { $res=$this->dbase->error(); $this->assertTrue(is_string($res)); } public function testEscapeString() { $string='Lore"May'; $res=$this->dbase->escape_string($string); $this->assertTrue(is_string($res)); } public function testFetchArray() { $sql = 'select 1'; $res=Database::query($sql); $resu=$this->dbase->fetch_array($res); $this->assertTrue(is_array($resu)); $this->assertFalse(is_null($resu)); } public function testFetchArrayError() { $sql = 'SELECT 1'; $res=Database::query($sql); $resu=$this->dbase->fetch_array($res); $this->assertTrue(is_array($resu)); } function testFetchObject() { $sql = 'SELECT 1'; $res=Database::query($sql); $resu=$this->dbase->fetch_object($res); $this->assertTrue(is_object($resu)); } function testFetchRow() { $sql = 'SELECT 1'; $res=Database::query($sql); $resu=$this->dbase->fetch_row($res); $this->assertTrue(is_array($resu)); } /* // Contains a private unaccessible method, Database::fix_database_parameter(). function testFixDatabaseParameterEmpty() { $course_info = api_get_course_info(); $database_name= $course_info[""]; $res=$this->dbase->fix_database_parameter($database_name); if(!is_null($res)) : $this->assertTrue(is_string($res)); endif; //var_dump($res); } */ /* // Contains a private unaccessible method, Database::fix_database_parameter(). function testFixDatabaseParameterReturnString() { $course_info = api_get_course_info(); $database_name= $course_info["dbName"]; $res=$this->dbase->fix_database_parameter($course_info); $this->assertTrue(is_string($res)); } */ /* // Contains a private unaccessible method, Database::format_glued_course_table_name(). function testFormatGluedCourseTableName() { $database_name_with_glue=''; $table=''; $res=$this->dbase->format_glued_course_table_name($database_name_with_glue, $table); $this->assertTrue(is_string($res)); } */ /* // Contains a private unaccessible method, Database::format_table_name(). function testFormatTableName() { $database=''; $table=''; $res=$this->dbase->format_table_name($database, $table); $this->assertTrue(is_string($res)); } */ function testGenerateAbstractCourseFieldNames() { $result_array=''; $res=$this->dbase->generate_abstract_course_field_names($result_array); $this->assertTrue(is_array($res)); } function testGenerateAbstractUserFieldNames() { $result_array=''; $res=$this->dbase->generate_abstract_user_field_names($result_array); $this->assertTrue(is_array($res)); } function get_course_by_category() { $category_id='1'; $res=$this->dbase->get_course_by_category($category_id); $this->assertTrue(is_string($res)); } function testGetCourseChatConnectedTable() { $database_name='dokeosla'; $res=$this->dbase->get_course_chat_connected_table($database_name); $this->assertTrue(is_string($res)); } function testGetCourseInfo() { $course_code='AYDD'; $res=$this->dbase->get_course_info($course_code); $this->assertTrue(is_array($res)); } function testGetCourseList() { $sql_query = "SELECT * FROM $table"; $res=$this->dbase->get_course_list($sql_query); $this->assertTrue(is_array($res)); } function testGetCourseTable() { $short_table_name=''; $database_name=''; $res=$this->dbase->get_course_table($short_table_name,$database_name); $this->assertTrue(is_string($res)); } function testGetCourseTablePrefix() { global $_configuration; $res=$this->dbase->get_course_table_prefix($_configuration); $this->assertTrue(is_string($res)); } function testGetCurrentCourseDatabase() { $res=$this->dbase->get_current_course_database(); if (empty($GLOBALS['_course']['dbName'])) { $this->assertFalse($res); } else { $this->assertTrue(is_string($res)); } $res=$this->dbase->get_current_course_database('___'); $this->assertFalse($res); } function testGetCurrentCourseGluedDatabase() { global $_course; $res=$this->dbase->get_current_course_glued_database(); if (empty($_course['dbNameGlu'])) { $this->assertFalse($res); } else { $this->assertTrue(is_string($res)); } } function testGetDatabaseGlue() { global $_configuration; $res=$this->dbase->get_database_glue($_configuration); $this->assertTrue(is_string($res)); } function testGetDatabaseNamePrefix() { global $_configuration; $res=$this->dbase->get_database_name_prefix($_configuration); $this->assertTrue(is_string($res)); } function testGetMainDatabase() { global $_configuration; $res=$this->dbase->get_main_database(); $this->assertTrue(is_string($res)); } function testGetMainTable() { $short_table_name=''; $res=$this->dbase->get_main_table($short_table_name); $this->assertTrue(is_string($res)); } function testGetUserInfoFromIdOneIsArray() { $res=$this->dbase->get_user_info_from_id(1); $this->assertTrue(is_array($res)); } /* Fails for some reason on automated tests server function testGetUserInfoFromIdNullIsFalse() { // should be returning GLOBALS[_user] (=null) if param is null (in testing context) $res=$this->dbase->get_user_info_from_id(null); $this->assertFalse($res); } */ function testGetUserInfoFromIdHighValueIsArray() { // should be returning array with empty values if user doesn't exist $res=$this->dbase->get_user_info_from_id(5000000); $this->assertTrue(is_array($res)); } function testGetUserPersonalDatabase() { global $_configuration; $res=$this->dbase->get_user_personal_database($_configuration); $this->assertTrue(is_string($res)); $this->assertTrue($res); } function testGetUserPersonalTable(){ $short_table_name=''; $res=$this->dbase-> get_user_personal_table($short_table_name); $this->assertTrue(is_string($res)); $this->assertTrue($res); } /* // Contains a private unaccessible method, Database::glue_course_database_name(). function testGlueCourseDatabaseName() { $database_name=''; $res=$this->dbase->glue_course_database_name($database_name); $this->assertTrue(is_string($res)); $this->assertTrue($res); } */ function testInsertId() { $res = $this->dbase->insert_id(); $this->assertTrue(is_numeric($res)); } function testNumRows() { $sql = 'SELECT * FROM user'; $res = Database::query($sql); $resul=Database::num_rows($res); $this->assertTrue(is_numeric($resul)); } function testQuery() { $sql = 'SELECT 1'; $res = Database::query($sql); $this->assertTrue(is_resource($res)); } function testResult() { $sql = 'SELECT email FROM user'; $resource = Database::query($sql); $res = Database::result($resource, 1); $this->assertTrue(is_string($res)); } function testStoreResult(){ $sql = 'SELECT 1'; $resource = $this->dbase->query($sql); $res = $this->dbase->store_result($resource); $this->assertTrue(is_array($res)); } } ?>