]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - tests/include/generic/SugarWidgets/Bug57902Test.php
Release 6.5.8
[Github/sugarcrm.git] / tests / include / generic / SugarWidgets / Bug57902Test.php
1 <?php
2 /*********************************************************************************
3  * SugarCRM Community Edition is a customer relationship management program developed by
4  * SugarCRM, Inc. Copyright (C) 2004-2012 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('include/generic/LayoutManager.php');
39 require_once('include/generic/SugarWidgets/SugarWidgetReportField.php');
40
41 /**
42  * Bug #57902
43  * click Count on Calls report see message: Database failure. Please refer to sugarcrm.log for details.
44  *
45  * @author mgusev@sugarcrm.com
46  * @ticked 57902
47  */
48 class Bug57902Test extends Sugar_PHPUnit_Framework_TestCase
49 {
50
51     public static function dataProvider()
52     {
53         return array(
54             array(
55                 array(
56                     'column_key' => 'self',
57                     'group_function' => 'count',
58                     'sort_dir' => 'a',
59                     'table_alias' => 'calls',
60                     'table_key' => 'self'
61                 ),
62                 'calls__count ASC'
63             ),
64             array(
65                 array(
66                     'column_function' => 'avg',
67                     'column_key' => 'self:duration_hours',
68                     'group_function' => 'avg',
69                     'name' => 'duration_hours',
70                     'sort_dir' => 'a',
71                     'table_alias' => 'calls',
72                     'table_key' => 'self',
73                     'type' => 'int'
74                 ),
75                 'calls_avg_duration_hours ASC'
76             ),
77             array(
78                 array(
79                     'column_function' => 'max',
80                     'column_key' => 'self:duration_hours',
81                     'group_function' => 'max',
82                     'name' => 'duration_hours',
83                     'sort_dir' => 'a',
84                     'table_alias' => 'calls',
85                     'table_key' => 'self',
86                     'type' => 'int'
87                 ),
88                 'calls_max_duration_hours ASC'
89             ),
90             array(
91                 array(
92                     'column_function' => 'min',
93                     'column_key' => 'self:duration_hours',
94                     'group_function' => 'min',
95                     'name' => 'duration_hours',
96                     'sort_dir' => 'a',
97                     'table_alias' => 'calls',
98                     'table_key' => 'self',
99                     'type' => 'int'
100                 ),
101                 'calls_min_duration_hours ASC'
102             ),
103             array(
104                 array(
105                     'column_function' => 'sum',
106                     'column_key' => 'self:duration_hours',
107                     'group_function' => 'sum',
108                     'name' => 'duration_hours',
109                     'sort_dir' => 'a',
110                     'table_alias' => 'calls',
111                     'table_key' => 'self',
112                     'type' => 'int'
113                 ),
114                 'calls_sum_duration_hours ASC'
115             )
116         );
117
118     }
119
120     /**
121      * Test asserts that for group functions order by is alias instead of table.field
122      *
123      * @dataProvider dataProvider
124      * @group 57902
125      * @return void
126      */
127     public function testQueryOrderBy($layout_def, $expected)
128     {
129         $layoutManager = new LayoutManager();
130         $sugarWidgetReportField = new SugarWidgetReportField($layoutManager);
131
132         $actual = $sugarWidgetReportField->queryOrderBy($layout_def);
133
134         $this->assertEquals($expected, $actual, 'ORDER BY string is incorrect');
135     }
136 }