]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - tests/modules/Calendar/Bug58702Test.php
Release 6.5.11
[Github/sugarcrm.git] / tests / modules / Calendar / Bug58702Test.php
1 <?php
2
3 /*********************************************************************************
4  * SugarCRM Community Edition is a customer relationship management program developed by
5  * SugarCRM, Inc. Copyright (C) 2004-2013 SugarCRM Inc.
6  * 
7  * This program is free software; you can redistribute it and/or modify it under
8  * the terms of the GNU Affero General Public License version 3 as published by the
9  * Free Software Foundation with the addition of the following permission added
10  * to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
11  * IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
12  * OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
13  * 
14  * This program is distributed in the hope that it will be useful, but WITHOUT
15  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
16  * FOR A PARTICULAR PURPOSE.  See the GNU Affero General Public License for more
17  * details.
18  * 
19  * You should have received a copy of the GNU Affero General Public License along with
20  * this program; if not, see http://www.gnu.org/licenses or write to the Free
21  * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
22  * 02110-1301 USA.
23  * 
24  * You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
25  * SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
26  * 
27  * The interactive user interfaces in modified source and object code versions
28  * of this program must display Appropriate Legal Notices, as required under
29  * Section 5 of the GNU Affero General Public License version 3.
30  * 
31  * In accordance with Section 7(b) of the GNU Affero General Public License version 3,
32  * these Appropriate Legal Notices must retain the display of the "Powered by
33  * SugarCRM" logo. If the display of the logo is not reasonably feasible for
34  * technical reasons, the Appropriate Legal Notices must display the words
35  * "Powered by SugarCRM".
36  ********************************************************************************/
37
38
39 /**
40  *
41  * Test if new parameter show_completed works properly
42  * If set to true, it should show all Meetings, Calls and Tasks
43  * If set to false, it should show only Meetings, Calls and Tasks that are not completed
44  * 
45  * @ticket 58702
46  * @author avucinic
47  */
48
49 class Bug58702Test extends Sugar_PHPUnit_Framework_TestCase
50 {
51     public function setUp()
52     {
53         SugarTestHelper::setUp('beanList');
54         SugarTestHelper::setUp('beanFiles');
55         SugarTestHelper::setUp('current_user');
56     }
57
58     public function tearDown()
59     {
60         SugarTestCallUtilities::removeAllCreatedCalls();
61         SugarTestMeetingUtilities::removeAllCreatedMeetings();
62         SugarTestTaskUtilities::removeAllCreatedTasks();
63         
64         SugarTestHelper::tearDown();
65     }
66
67     public function dataProvider()
68     {
69         return array(
70                     0 => array(true),
71                     1 => array(false)
72                 );
73     }
74     
75     /**
76      * @group 58702
77      * Test if Meetings/Calls/Tasks are shown properly when
78      * show completed flag is set
79      *
80      * @dataProvider dataProvider
81      */
82     public function testShowCompleted($showCompleted)
83     {
84         // Create Held Meeting
85         $meeting = SugarTestMeetingUtilities::createMeeting();
86         $meeting->date_start = $GLOBALS['timedate']->nowDb();
87         $meeting->date_end = $GLOBALS['timedate']->nowDb();
88         $meeting->status = 'Held';
89         $meeting->save();
90         $meeting->set_accept_status($GLOBALS['current_user'], 'accept');
91
92         // Create Held Call
93         $call = SugarTestCallUtilities::createCall();
94         $call->date_start = $GLOBALS['timedate']->nowDb();
95         $call->date_end = $GLOBALS['timedate']->nowDb();
96         $call->status = 'Held';
97         $call->save();
98         $call->set_accept_status($GLOBALS['current_user'], 'accept');
99         
100         // Create Completed Task
101         $task = SugarTestTaskUtilities::createTask();
102         $task->date_due = $GLOBALS['timedate']->nowDb();
103         $task->status = 'Completed';
104         $task->assigned_user_id = $GLOBALS['current_user']->id;
105         $task->save();
106         
107         // Set query dates
108         $start_date_time = $GLOBALS['timedate']->fromString(date("Y-m-d"));
109         $end_date_time = $start_date_time->get("+7 days");
110         $start_date_time = $start_date_time->get("-7 days");
111
112         // Get all activities for the user
113         $result = CalendarActivity::get_activities($GLOBALS['current_user']->id, true, $start_date_time, $end_date_time, 'month', true, $showCompleted);
114         
115         // Depending on show completed, get_activities should return 3 entries, the ones we created above
116         if ($showCompleted)
117         {
118             $this->assertEquals(3, sizeof($result), 'get_activities did not return the Metting, Call and Task as it should have');
119             $this->assertEquals($result[0]->sugar_bean->id, $meeting->id, 'Meeting not returned properly');
120             $this->assertEquals($result[1]->sugar_bean->id, $call->id, 'Call not returned properly');
121             $this->assertEquals($result[2]->sugar_bean->id, $task->id, 'Task not returned properly');
122         }
123         // Or it shouldn't return anything since all the activities are completed
124         else
125         {
126             $this->assertEquals(0, sizeof($result), 'get_activities should be empty');
127         }
128     }
129 }