]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - tests/include/SubPanel/Bug41738Test.php
Release 6.2.1
[Github/sugarcrm.git] / tests / include / SubPanel / Bug41738Test.php
1 <?php
2 /*********************************************************************************
3  * SugarCRM Community Edition is a customer relationship management program developed by
4  * SugarCRM, Inc. Copyright (C) 2004-2011 SugarCRM Inc.
5  * 
6  * This program is free software; you can redistribute it and/or modify it under
7  * the terms of the GNU Affero General Public License version 3 as published by the
8  * Free Software Foundation with the addition of the following permission added
9  * to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
10  * IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
11  * OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
12  * 
13  * This program is distributed in the hope that it will be useful, but WITHOUT
14  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
15  * FOR A PARTICULAR PURPOSE.  See the GNU Affero General Public License for more
16  * details.
17  * 
18  * You should have received a copy of the GNU Affero General Public License along with
19  * this program; if not, see http://www.gnu.org/licenses or write to the Free
20  * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
21  * 02110-1301 USA.
22  * 
23  * You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
24  * SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
25  * 
26  * The interactive user interfaces in modified source and object code versions
27  * of this program must display Appropriate Legal Notices, as required under
28  * Section 5 of the GNU Affero General Public License version 3.
29  * 
30  * In accordance with Section 7(b) of the GNU Affero General Public License version 3,
31  * these Appropriate Legal Notices must retain the display of the "Powered by
32  * SugarCRM" logo. If the display of the logo is not reasonably feasible for
33  * technical reasons, the Appropriate Legal Notices must display the words
34  * "Powered by SugarCRM".
35  ********************************************************************************/
36
37  
38 require_once('data/SugarBean.php');
39 require_once('modules/Contacts/Contact.php');
40 require_once('include/SubPanel/SubPanelDefinitions.php');
41
42 class Bug41738Test extends Sugar_PHPUnit_Framework_TestCase 
43 {       
44     protected $bean;
45
46         public function setUp()
47         {
48             global $moduleList, $beanList, $beanFiles;
49         require('include/modules.php');
50         $GLOBALS['current_user'] = SugarTestUserUtilities::createAnonymousUser();
51         $GLOBALS['modListHeader'] = query_module_access_list($GLOBALS['current_user']);
52         $GLOBALS['modules_exempt_from_availability_check']['Calls']='Calls';
53         $GLOBALS['modules_exempt_from_availability_check']['Meetings']='Meetings';
54         $this->bean = new Opportunity();
55         }
56
57         public function tearDown()
58         {
59             SugarTestUserUtilities::removeAllCreatedAnonymousUsers();
60         unset($GLOBALS['current_user']);
61         }
62
63     public function testSubpanelCollectionWithSpecificQuery()
64     {
65         $subpanel = array(
66                         'order' => 20,
67                         'sort_order' => 'desc',
68                         'sort_by' => 'date_entered',
69                         'type' => 'collection',
70                         'subpanel_name' => 'history',   //this values is not associated with a physical file.
71                         'top_buttons' => array(),
72                         'collection_list' => array(
73                                 'meetings' => array(
74                                         'module' => 'Meetings',
75                                         'subpanel_name' => 'ForHistory',
76                     'get_subpanel_data' => 'function:subpanelCollectionWithSpecificQueryMeetings',
77                     'generate_select'=>false,
78                     'function_parameters' => array(
79                         'bean_id'=>$this->bean->id,
80                         'import_function_file' => __FILE__
81                     ),
82                                 ),
83                                 'tasks' => array(
84                                         'module' => 'Tasks',
85                                         'subpanel_name' => 'ForHistory',
86                     'get_subpanel_data' => 'function:subpanelCollectionWithSpecificQueryTasks',
87                     'generate_select'=>false,
88                     'function_parameters' => array(
89                         'bean_id'=>$this->bean->id,
90                         'import_function_file' => __FILE__
91                     ),
92                                 ),
93                         )
94         );
95         $subpanel_def = new aSubPanel("testpanel", $subpanel, $this->bean);
96         $query = $this->bean->get_union_related_list($this->bean, "", '', "", 0, 5, -1, 0, $subpanel_def);
97         $result = $this->bean->db->query($query["query"]);
98         $this->assertTrue($result != false, "Bad query: {$query['query']}");
99     }
100
101
102 }
103
104
105 function subpanelCollectionWithSpecificQueryMeetings($params)
106 {
107                 $query = "SELECT meetings.id , meetings.name , meetings.status , 0 reply_to_status , ' ' contact_name , ' ' contact_id , ' ' contact_name_owner , ' ' contact_name_mod , meetings.parent_id , meetings.parent_type , meetings.date_modified , jt1.user_name assigned_user_name , jt1.created_by assigned_user_name_owner , 'Users' assigned_user_name_mod, ' ' filename , meetings.assigned_user_id , 'meetings' panel_name 
108                         FROM meetings 
109                         LEFT JOIN users jt1 ON jt1.id= meetings.assigned_user_id AND jt1.deleted=0 AND jt1.deleted=0 
110                         WHERE ( meetings.parent_type = 'Opportunities'
111                                 AND meetings.deleted=0 
112                                 AND (meetings.status='Held' OR meetings.status='Not Held') 
113                                 AND meetings.parent_id IN(
114                                                                                         SELECT o.id 
115                                                                                         FROM opportunities o 
116                                                                                         INNER JOIN opportunities_contacts oc on o.id = oc.opportunity_id 
117                                                                                         AND oc.contact_id = '".$params['bean_id']."')
118                                                         )";
119
120                 return $query ;
121 }
122
123 function subpanelCollectionWithSpecificQueryTasks($params)
124 {
125                 $query = "SELECT tasks.id , tasks.name , tasks.status , 0 reply_to_status , ' ' contact_name , ' ' contact_id , ' ' contact_name_owner , ' ' contact_name_mod , tasks.parent_id , tasks.parent_type , tasks.date_modified , jt1.user_name assigned_user_name , jt1.created_by assigned_user_name_owner , 'Users' assigned_user_name_mod, ' ' filename , tasks.assigned_user_id , 'tasks' panel_name 
126                         FROM tasks 
127                         LEFT JOIN users jt1 ON jt1.id= tasks.assigned_user_id AND jt1.deleted=0 AND jt1.deleted=0 
128                         WHERE ( tasks.parent_type = 'Opportunities'
129                                 AND tasks.deleted=0 
130                                 AND (tasks.status='Completed' OR tasks.status='Deferred') 
131                                 AND tasks.parent_id IN(
132                                                                                         SELECT o.id 
133                                                                                         FROM opportunities o 
134                                                                                         INNER JOIN opportunities_contacts oc on o.id = oc.opportunity_id 
135                                                                                         AND oc.contact_id = '".$params['bean_id']."')
136                                                         )";
137
138                 return $query ;
139 }
140
141