Chamilo is a learning management system focused on ease of use and accessibility
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
chamilo-lms/tests/main/inc/lib/blog.lib.test.php

569 lines
17 KiB

<?php
require_once(api_get_path(LIBRARY_PATH).'blog.lib.php');
ob_start();
require_once (api_get_path(INCLUDE_PATH).'lib/fckeditor/fckeditor.php');
//require_once(api_get_path(SYS_CODE_PATH).'permissions/blog_permissions.inc.php');
ob_end_clean();
class TestBlog extends UnitTestCase
{
public $oblog;
public function TestBlog()
{
$this->UnitTestCase('Blog Manipulation tests');
}
public function setUp()
{
$this-> oblog = new Blog();
}
public function tearDown()
{
$this->oblog = null;
}
/*
* todo public function testGetBlobTitle()
* todo public function testGetBlogSubtitle()
* todo public function testGetBlogUsers()
* todo public function testCreateBlog()
* todo public function testEditBlog()
* todo public function testDeleteBlog()
* todo public function testCreatePost()
* todo public function testEditPost()
* todo public function testDeletePost()
* todo public function testCreateComment()
* todo public function testDeleteComment()
* todo public function testCreateTask()
* todo public function testEditTask()
* todo public function testDeleteTask()
* todo public function testDeleteAssignedTask()
* todo public function testGetPersonalTaskList()
* todo public function testChangeBlogVisibility()
* todo public function testDisplayBlogPosts()
* todo public function testDisplaySearchResults()
* todo public function testDisplayDayResults()
* todo public function testDisplayPost()
* todo public function testAddRating()
* todo public function testDisplayRating()
* todo public function testDisplayRatingForm()
* todo public function testGetThreadedComments()
* todo public function testDisplayformNewPost()
* todo public function testDisplayFormEditPost()
* todo public function testDisplayTaskList()
* todo public function testDisplayAssignedTaskList()
* todo public function testDisplayNewTaskForm()
* todo public function testDisplayEditTaskForm()
* todo public function testDisplayAssignTaskForm()
* todo public function testDisplayEditAssignedTaskForm()
* todo public function testAssignTask()
* todo public function testEditAssignedTask()
* todo public function testDisplaySelectTaskPost()
* todo public function testSetUserSubscribed()
* todo public function testSetUserUnsubscribed()
* todo public function testDisplayFormUserSubscribe()
* todo public function testDisplayFormUserUnsubscribe()
* todo public function testDisplayNewCommentForm()
* todo public function testDisplayMinimonthcalendar()
* todo public function testDisplayNewBlogForm()
* todo public function testDisplayEditBlogForm()
* todo public function testDisplayBlogList()
* todo public function testDisplayBlogList()
*/
/**
* Test about get Title to a Blog
*/
// EXCEPTION
public function testGetBlogTitle(){
$res = $this->oblog->get_Blog_title(11);
$this->assertFalse($this->oblog->get_Blog_title(11)===String);
$this->assertTrue(is_String($res));
}
// EXCEPTION
public function testGetBlogSubtitle(){
$res = $this->oblog->get_Blog_subtitle(0);
$this->assertFalse($this->oblog->get_Blog_subtitle(0)=== null);
$this->assertTrue(is_String($res));
$this->assertNotNull($res);
}
// EXCEPTION
public function testGetBlogUsers(){
$res = $this->oblog->get_Blog_users(11);
$this->assertTrue($this->oblog->get_Blog_users(1110)===array());
$this->assertTrue(is_array($res));
}
// EXCEPTION
public function testCreateBlog(){
global $_user;
$res = $this->oblog->create_Blog('testingBlog','pass');
$this->assertTrue(is_null($res));
$this->assertNull($res);
$this->assertFalse($res);
}
// EXCEPTION
public function testEditBlog(){
global $_user;
$_user = array('Blog_id'=>1,'title'=>'TestBlog','subtitle'=>'testing');
$res = $this->oblog->edit_Blog($_user);
$this->assertNull($res);
$this->assertTrue($this->oblog->edit_Blog($_user)=== $res);
$this->assertFalse($res);
}
// EXCEPTION
public function testDeleteBlog(){
$res = $this->oblog->delete_Blog(1);
$this->assertTrue(is_null($res));
$this->assertNotNull($this->oblog->edit_Blog(1)===null);
$this->assertFalse(is_array($res));
}
// EXCEPTION
public function testCreatePost(){
global $_user, $_course, $Blog_table_attachment;
$Blog_table_attachment = array('title' => 'xxxxtestxxxx',
'full_text'=>'xxxxx',
'file_comment'=>'xxxxx',
'Blog_id'=>11
);
$res = $this->oblog->create_post($Blog_table_attachment);
$this->assertTrue($this->oblog->create_post($Blog_table_attachment)=== null);
$this->assertNotNull(is_null,$res);
$this->assertFalse($res);
}
// EXCEPTION
public function testEditPost(){
ob_start();
$post_id =3;
$title = 'xxTestxx';
$full_text = 'testing public function';
$Blog_id = 11;
$res = $this->oblog->edit_post(3,'xtestx','test',11);
ob_end_clean();
$this->assertNotNull($this->oblog->edit_post(3, 'xtestx','test',11)===null);
$this->assertFalse($res);
$this->assertTrue(is_null($res));
//var_dump($res);
}
// EXCEPTION
public function testDeletePost(){
$Blog_id = 11;
$post_id = 21;
$res = $this->oblog->delete_post(11,21);
$this->assertTrue($this->oblog->delete_post(11,21)===null);
$this->assertNull(null,$res);
$this->assertTrue(is_null($res));
//var_dump($res);
}
public function testCreateComment(){
global $_user, $_course, $Blog_table_attachment;
$res = $this->oblog->create_comment('tesingBlog','xxxxxxx','xxx',12,1,null);
$this->assertNotNull($this->oblog->create_comment('tesingBlog','xxxxxxx','xxx',12,1,null)===null);
$this->assertTrue(is_null($res));
$this->assertFalse($res);
}
// EXCEPTION
public function testDeleteComment(){
$res = $this->oblog->delete_comment(11,12,2);
$this->assertNotNull($this->oblog->delete_comment(11,12,2)===null);
$this->assertNull(null,$res);
}
public function testCreateTask(){
$res = $this->oblog->create_task(1,'xxx','xxxxxxx','xxxx','zzzzz','xxzz','blue');
$this->assertNotNull($this->oblog->create_task(1,'xxx','xxxxxxx','xxxx','zzzzz','xxzz','blue')=== null);
$this->assertTrue(is_null($res));
$this->assertFalse($res);
$this->assertFalse(null,$res);
}
// EXCEPTION
public function testEditTask() {
$res = $this->oblog->edit_task();
//$res = Blog::edit_task();
$this->assertTrue($this->oblog->edit_task()===null);
$this->assertTrue(is_null($res));
$this->assertFalse(is_string($res));
$this->assertNull($res);
}
// EXCEPTION
public function testDeleteTask(){
$res = $this->oblog->delete_task();
$this->assertTrue($this->oblog->delete_task()===null);
$this->assertTrue(is_null($res));
}
public function testDeleteAssignedTask(){
$res = $this->oblog->delete_assigned_task();
$this->assertTrue($this->oblog->delete_assigned_task()===null);
$this->assertNotNull(is_null($res));
$this->assertFalse($res);
}
public function testGetPersonalTaskList(){
global $_user;
ob_start();
$res = Blog::get_personal_task_list('a');
$this->assertEqual($this->oblog->get_personal_task_list(1)===1);
$this->assertFalse($res);
ob_end_clean();
}
public function testChangeBlogVisibility(){
$res = $this->oblog->change_blog_visibility();
$this->assertTrue($this->oblog->change_blog_visibility()=== null);
$this->assertTrue(is_null($res));
}
public function testDisplayBlogPosts(){
ob_start();
$res = $this->oblog->display_blog_posts(10,null,null);
$this->assertTrue($this->oblog->display_blog_posts(10,null,null)=== null);
$this->assertNull($res);
$this->assertTrue(is_null($res));
$this->assertFalse(null, $res);
ob_end_clean();
}
public function testDisplaySearchResults(){
ob_start();
$res = $this->oblog->display_search_results(11,null);
$this->assertTrue($this->oblog->display_search_results(11,null)===null);
ob_end_clean();
}
public function testDisplayDayResults(){
ob_start();
$res = $this->oblog->display_day_results(12,null);
$this->assertTrue($this->oblog->display_day_results(12,null)===null);
$this->assertFalse($res);
$this->assertNull(null,$res);
ob_end_clean();
}
public function testDisplayPost(){
ob_start();
$res = $this->oblog->display_post(12,11);
$this->assertTrue($this->oblog->display_post(12,11)===null);
$this->assertFalse($res);
$this->assertTrue(is_null($res));
ob_end_clean();
}
public function testAddRating(){
global $_user;
$res = $this->oblog->add_rating(null,11,2,5);
$this->assertFalse($this->oblog->add_rating(null,11,2,5)=== bool);
$this->assertTrue(is_bool($res));
$this->assertFalse(null,$res);
}
public function testDisplayRating(){
ob_start();
$res = $this->oblog->display_rating('xxx',11,1);
$this->assertFalse($this->oblog->display_rating('xxx',11,1)===null);
$this->assertTrue(is_numeric($res));
$this->assertFalse($res);
ob_end_clean();
}
public function testDisplayRatingForm(){
global $_user;
$res = $this->oblog->display_rating_form('xxx',11,1,null);
$this->assertFalse($this->oblog->display_rating_form('xxx',11,1,null)===null);
$this->assertTrue(is_string($res));
$this->assertNotNull($res,null);
}
public function testGetThreadedComments(){
ob_start();
global $charset, $dataFormatLong;
$res = $this->oblog->get_threaded_comments(null,null,11,2,null);
$this->assertFalse($res);
$this->assertTrue($this->oblog->get_threaded_comments(null,null,11,2,null)===null);
ob_end_clean();
}
/**
* this function have will be testing with mocks
*/ /* usando mock */
/* public function testDisplayFormNewPost(){
// $mock = new Mock('FCKeditor');
ob_start();
$res = $this->oblog->display_form_new_post(12);
//$res = ob_get_contents();
// $mock->expectOnce('FCKeditor','post_full_text');
$this->assertTrue($this->oblog->display_form_new_post(12));
$this->assertTrue(is_string($res));
$this->assertNotNull($res);
ob_end_clean();
}
/* usando mock */
public function testDisplayFormEditPost(){
ob_start();
$res = $this->oblog->display_form_edit_post(null);
$this->assertNotNull(is_null($res));
$this->assertFalse($res);
ob_end_clean();
//var_dump($res);
}
public function testDisplayTaskList(){
ob_start();
$res = $this->oblog->display_task_list(11);
$this->assertTrue($this->oblog->display_task_list(11)===null);
ob_end_clean();
}
// exceptions
public function testDisplayAssignedTaskList(){
ob_start();
global $charset, $color2;
$res = $this->oblog->display_assigned_task_list(11);
$this->assertTrue($this->oblog->display_assigned_task_list(11)===null);
$this->assertFalse($res);
ob_end_clean();
}
public function testDisplayNewTaskForm(){
ob_start();
$res = $this->oblog->display_new_task_form(11);
$this->assertTrue($this->oblog->display_new_task_form(11)===null);
$this->assertFalse($res);
ob_end_clean();
}
// exceptions /*
public function testDisplayEditTaskForm(){
ob_start();
$res = $this->oblog->display_edit_task_form(11,12);
$this->assertTrue($this->oblog->display_edit_task_form(11,12)===null);
ob_end_clean();
$this->assertTrue(is_null($res));
$this->assertFalse($res);
}
// exceptions
public function testDisplayAssignTaskForm(){
ob_start();
$res = $this->oblog->display_assign_task_form(11);
$this->assertTrue($this->oblog->display_assign_task_form(11)===null);
$this->assertFalse($res);
$this->assertTrue(is_null($res));
ob_end_clean();
}
// exceptions
public function testDisplayEditAssignedTaskForm(){
global $MonthsLong;
ob_start();
$res = $this-> oblog->display_edit_assigned_task_form(11,12,1);
$this->assertTrue($this->oblog->display_edit_assigned_task_form(11,12,1)===null);
ob_end_clean();
$this->assertFalse($res);
}
// excetions
public function testAssignTask(){
ob_start();
$res = $this->oblog->assign_task(11,1,12,null);
$this->assertTrue($this->oblog->assign_task(11,1,12,null)===null);
$this->assertFalse(is_numeric($res));
$this->assertNull(null,$res);
ob_end_clean();
}
// exceptions
public function testEditAssignedTask(){
$task = array('blog_id'=>11,
'user_id'=>1,
'task_id'=>12,
'target_date'=>'xxxxxxx',
'old_user_id'=>10,
'old_task_id'=>11,
'old_target_date'=>'xxxzxxx'
);
$res = $this->oblog->edit_assigned_task();
$this->assertTrue($this->oblog->edit_assigned_task()===null);
$this->assertTrue(is_null($res));
}
// EXCEPTIONS
public function testDisplaySelectTaskPost(){
ob_start();
$res = $this->oblog->display_select_task_post(11,12);
$this->assertTrue($this->oblog->display_select_task_post(11,12)===null);
$this->assertTrue(is_null($res));
$this->assertFalse($res);
ob_end_clean();
}
public function testSetUserSubscribed(){
$res = $this->oblog->set_user_subscribed(11,12);
$this->assertTrue($this->oblog->set_user_subscribed(11,12)===null);
$this->assertFalse($res);
$this->assertTrue(is_null($res));
}
public function testUserUnsubscribed(){
$res = $this->oblog->set_user_unsubscribed(11,12);
$this->assertTrue($this->oblog->set_user_unsubscribed(11,12)===null);
$this->assertFalse($res);
$this->assertTrue(is_null($res));
}
// exception
public function testDisplayFormUserSubscribe(){
ob_start();
$res = $this->oblog->display_form_user_subscribe(12);
$this->assertTrue($this->oblog->display_form_user_subscribe(12)===null);
$this->assertNotNull(is_null($res));
$this->assertFalse($res);
ob_end_clean();
}
/**
* this function have been tested modified the function
* display_form_user_unsubscribe in the blog.lib.php
* main_table and course_table.
*
*/ /* usando mocks *//* ERROR
*/public function testDisplayFormUserUnsubscribe(){
global $_user;
ob_start();
$blog_id = '1';
$res = Blog::display_form_user_unsubscribe($blog_id);
$this->assertTrue(($res)===false);
$this->assertTrue(is_bool($res));
ob_end_clean();
var_dump($res);
//$this->assertFalse($this->oblog->display_form_user_unsubscribe($blog_id,$course_id)==='0001');
//$this->assertFalse($res);
//$this->assertTrue(is_null($res));
//$this->assertTrue(is_array($res));
}
public function testDisplayFormUserRights(){
ob_start();
$res = $this->oblog->display_form_user_rights(12);
$this->assertTrue($this->oblog->display_form_user_rights(12)===null);
$this->assertFalse($res);
ob_end_clean();
}
/* usando mocks ERROR */
public function testDisplayNewCommentForm(){
$blog_id = '12';
$post_id='1';
$title='test';
ob_start();
$res =$this->oblog->display_new_comment_form($blog_id,$post_id,$title);
//$res = ob_get_contents();
//$this->assertTrue($this->oblog->display_new_comment_form(12,1,'comment_text')===null);
$this->assertFalse($res);
$this->assertNotNull(is_null($res));
ob_end_clean();
//var_dump($res);
}
// exception
public function testDisplayMinimonthcalendar(){
global $_user,$DaysShort, $MonthsLong;
ob_start();
$res = $this->oblog->display_minimonthcalendar();
$this->assertTrue($this->oblog->display_minimonthcalendar()=== null);
$this->assertTrue(is_null($res));
ob_end_clean();
}
public function testDisplayNewBlogForm(){
ob_start();
$res = $this->oblog->display_new_blog_form();
$this->assertFalse($res);
$this->assertTrue(is_null($res));
$this->assertTrue($this->oblog->display_new_blog_form()===null);
ob_end_clean();
}
// exception
public function testDisplayEditBlogForm(){
ob_start();
$res = $this->oblog->display_edit_blog_form(12);
$this->assertTrue($this->oblog->display_edit_blog_form(12)===null);
$this->assertTrue(is_null($res));
ob_end_clean();
}
public function testDisplayBlogList(){
ob_start();
$res = $this->oblog->display_blog_list();
$this->assertTrue($this->oblog->display_blog_list()===null);
$this->assertTrue(is_null($res));
ob_end_clean();
}
// EXCEPTION
public function testGetBlogAttachment(){
ob_start();
global $blog_table_attachment;
$oblog_table_attachment = array('blog_id'=>12);
$res=get_blog_attachment();
$this->assertFalse($res);
$this->assertTrue(is_array($res));
ob_end_clean();
}
// EXCEPTION
public function testDeleteAllBlogAttachment(){
global $blog_table_attachment, $_course;
$res = delete_all_blog_attachment(12,null,null);
$this->assertFalse($res);
$this->assertNull($res);
}
// EXCEPTION
public function testGetBlogPostFromUser(){
$res = get_blog_post_from_user('mate',2);
$this->assertFalse($res);
$this->assertTrue(is_string($res));
}
// EXCEPTION
public function testGetBlogCOmmentFromUser(){
$res = get_blog_comment_from_user('mate',2);
$this->assertFalse($res);
$this->assertTrue(is_string($res));
}
}
?>