]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - tests/modules/UpgradeWizard/Bug46028Test.php
Release 6.5.1
[Github/sugarcrm.git] / tests / modules / UpgradeWizard / Bug46028Test.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 /**
39  * Bug46098Test
40  *
41  * This class contains the unit test to check that the repairSearchFields method will create a SearchFields.php file
42  * to correctly handle range searching for date fields.
43  *
44  */
45
46 require_once('modules/UpgradeWizard/uw_utils.php');
47
48 class Bug46028Test extends Sugar_PHPUnit_Framework_TestCase
49 {
50
51 var $customOpportunitiesSearchFields;
52 var $opportunitiesSearchFields;
53
54 public function setUp()
55 {
56     $beanList = array();
57     $beanFiles = array();
58     require('include/modules.php');
59     $GLOBALS['beanList'] = $beanList;
60     $GLOBALS['beanFiles'] = $beanFiles;
61     if(file_exists('custom/modules/Opportunities/metadata/SearchFields.php'))
62     {
63         $this->customOpportunitiesSearchFields = file_get_contents('custom/modules/Opportunities/metadata/SearchFields.php');
64         unlink('custom/modules/Opportunities/metadata/SearchFields.php');
65     }
66
67     if(file_exists('modules/Opportunities/metadata/SearchFields.php'))
68     {
69         $this->opportunitiesSearchFields = file_get_contents('modules/Opportunities/metadata/SearchFields.php');
70         unlink('modules/Opportunities/metadata/SearchFields.php');
71     }
72
73 $searchFieldContents = <<<EOQ
74 <?php
75 \$searchFields['Opportunities'] =
76 array (
77     'name' => array( 'query_type'=>'default'),
78     'account_name'=> array('query_type'=>'default','db_field'=>array('accounts.name')),
79     'amount'=> array('query_type'=>'default'),
80     'next_step'=> array('query_type'=>'default'),
81     'probability'=> array('query_type'=>'default'),
82     'lead_source'=> array('query_type'=>'default', 'operator'=>'=', 'options' => 'lead_source_dom', 'template_var' => 'LEAD_SOURCE_OPTIONS'),
83     'opportunity_type'=> array('query_type'=>'default', 'operator'=>'=', 'options' => 'opportunity_type_dom', 'template_var' => 'TYPE_OPTIONS'),
84     'sales_stage'=> array('query_type'=>'default', 'operator'=>'=', 'options' => 'sales_stage_dom', 'template_var' => 'SALES_STAGE_OPTIONS', 'options_add_blank' => true),
85     'current_user_only'=> array('query_type'=>'default','db_field'=>array('assigned_user_id'),'my_items'=>true, 'vname' => 'LBL_CURRENT_USER_FILTER', 'type' => 'bool'),
86     'assigned_user_id'=> array('query_type'=>'default'),
87     'favorites_only' => array(
88     'query_type'=>'format',
89                 'operator' => 'subquery',
90                 'subquery' => 'SELECT sugarfavorites.record_id FROM sugarfavorites
91                                     WHERE sugarfavorites.deleted=0
92                                         and sugarfavorites.module = \'Opportunities\'
93                                         and sugarfavorites.assigned_user_id = \'{0}\'',
94                 'db_field'=>array('id')),
95 );
96 ?>
97 EOQ;
98
99     file_put_contents('modules/Opportunities/metadata/SearchFields.php', $searchFieldContents);
100 }
101
102 public function tearDow()
103 {
104     if(!empty($this->customOpportunitiesSearchFields))
105     {
106         file_put_contents('custom/modules/Opportunities/metadata/SearchFields.php', $this->customOpportunitiesSearchFields);
107     } else if(file_exists('custom/modules/Opportunities/metadata/SearchFields.php')) {
108         unlink('custom/modules/Opportunities/metadata/SearchFields.php');
109     }
110
111     if(!empty($this->opportunitiesSearchFields))
112     {
113         file_put_contents('modules/Opportunities/metadata/SearchFields.php', $this->opportunitiesSearchFields);
114     }
115 }
116
117 public function testRepairSearchFields()
118 {
119     repairSearchFields('modules/Opportunities/metadata/SearchFields.php');
120     $this->assertTrue(file_exists('custom/modules/Opportunities/metadata/SearchFields.php'));
121     require('custom/modules/Opportunities/metadata/SearchFields.php');
122     $this->assertArrayHasKey('range_date_entered', $searchFields['Opportunities']);
123     $this->assertArrayHasKey('start_range_date_entered', $searchFields['Opportunities']);
124     $this->assertArrayHasKey('end_range_date_entered', $searchFields['Opportunities']);
125     $this->assertArrayHasKey('range_date_modified', $searchFields['Opportunities']);
126     $this->assertArrayHasKey('start_range_date_modified', $searchFields['Opportunities']);
127     $this->assertArrayHasKey('end_range_date_modified', $searchFields['Opportunities']);
128 }
129
130 }
131 ?>