]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - tests/include/generic/SugarWidgets/Bug57902Test.php
Release 6.5.16
[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-2013 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 setUpBeforeClass()
52     {
53         SugarTestHelper::setUp('beanFiles');
54         SugarTestHelper::setUp('beanList');
55         SugarTestHelper::setUp('current_user');
56
57
58         }
59
60         public static function tearDownAfterClass()
61         {
62         SugarTestHelper::tearDown();
63         }
64
65     public static function dataProvider()
66     {
67         return array(
68             array(
69                 array(
70                     'column_key' => 'self',
71                     'group_function' => 'count',
72                     'sort_dir' => 'a',
73                     'table_alias' => 'calls',
74                     'table_key' => 'self'
75                 ),
76                 'calls__count'
77             ),
78             array(
79                 array(
80                     'column_function' => 'avg',
81                     'column_key' => 'self:duration_hours',
82                     'group_function' => 'avg',
83                     'name' => 'duration_hours',
84                     'sort_dir' => 'a',
85                     'table_alias' => 'calls',
86                     'table_key' => 'self',
87                     'type' => 'int'
88                 ),
89                 'calls_avg_duration_hours'
90             ),
91             array(
92                 array(
93                     'column_function' => 'max',
94                     'column_key' => 'self:duration_hours',
95                     'group_function' => 'max',
96                     'name' => 'duration_hours',
97                     'sort_dir' => 'a',
98                     'table_alias' => 'calls',
99                     'table_key' => 'self',
100                     'type' => 'int'
101                 ),
102                 'calls_max_duration_hours'
103             ),
104             array(
105                 array(
106                     'column_function' => 'min',
107                     'column_key' => 'self:duration_hours',
108                     'group_function' => 'min',
109                     'name' => 'duration_hours',
110                     'sort_dir' => 'a',
111                     'table_alias' => 'calls',
112                     'table_key' => 'self',
113                     'type' => 'int'
114                 ),
115                 'calls_min_duration_hours'
116             ),
117             array(
118                 array(
119                     'column_function' => 'sum',
120                     'column_key' => 'self:duration_hours',
121                     'group_function' => 'sum',
122                     'name' => 'duration_hours',
123                     'sort_dir' => 'a',
124                     'table_alias' => 'calls',
125                     'table_key' => 'self',
126                     'type' => 'int'
127                 ),
128                 'calls_sum_duration_hours'
129             )
130         );
131
132     }
133
134     /**
135      * Test asserts that for group functions order by is alias instead of table.field
136      *
137      * @dataProvider dataProvider
138      * @group 57902
139      * @return void
140      */
141     public function testQueryOrderBy($layout_def, $expected)
142     {
143         $layoutManager = new LayoutManager();
144         $db = new stdClass();
145         $db->db = $GLOBALS['db'];
146         $layoutManager->setAttributePtr('reporter', $db);
147         $sugarWidgetReportField = new SugarWidgetReportField($layoutManager);
148
149         $actual = $sugarWidgetReportField->queryOrderBy($layout_def);
150
151         $this->assertContains($expected, $actual, 'ORDER BY statement uses wrong field');
152     }
153 }