]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - tests/include/SearchForm/Bug46713Test.php
Release 6.4.0
[Github/sugarcrm.git] / tests / include / SearchForm / Bug46713Test.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  
39 require_once 'modules/DynamicFields/templates/Fields/TemplateInt.php';
40 require_once 'modules/DynamicFields/templates/Fields/TemplateDate.php';
41 require_once 'include/SearchForm/SearchForm2.php';
42 require_once 'modules/Cases/Case.php';
43
44 class Bug46713Test extends Sugar_PHPUnit_Framework_TestCase
45 {
46     private $hasExistingCustomSearchFields = false;
47     var $searchForm;
48     var $originalDbType;
49     var $smartyTestFile;
50     
51     public function setUp()
52     {   
53         if(file_exists('custom/modules/Cases/metadata/SearchFields.php'))
54         {
55             $this->hasExistingCustomSearchFields = true;
56             copy('custom/modules/Cases/metadata/SearchFields.php', 'custom/modules/Cases/metadata/SearchFields.php.bak');
57             unlink('custom/modules/Cases/metadata/SearchFields.php');
58         } else if(!file_exists('custom/modules/Cases/metadata')) {
59             mkdir_recursive('custom/modules/Cases/metadata');
60         }
61
62         //Setup Opportunities module and date_closed field
63         $_REQUEST['view_module'] = 'Cases';
64         $_REQUEST['name'] = 'date_closed';
65         $templateDate = new TemplateDate();
66         $templateDate->enable_range_search = true;
67         $templateDate->populateFromPost();
68         include('custom/modules/Cases/metadata/SearchFields.php');
69
70         //Prepare SearchForm
71         $seed = new aCase();
72         $module = 'Cases';
73         $this->searchForm = new SearchForm($seed, $module);
74         $this->searchForm->searchFields = array(
75             'range_case_number' => array
76             (
77                 'query_type' => 'default',
78                 'enable_range_search' => true
79             ),
80         );
81         $this->originalDbType = $GLOBALS['db']->dbType;
82     }
83     
84     public function tearDown()
85     {
86         $GLOBALS['db']->dbType = $this->originalDbType;
87
88         if(!$this->hasExistingCustomSearchFields)
89         {
90             unlink('custom/modules/Cases/metadata/SearchFields.php');
91         }
92
93         if(file_exists('custom/modules/Cases/metadata/SearchFields.php.bak')) {
94             copy('custom/modules/Cases/metadata/SearchFields.php.bak', 'custom/modules/Cases/metadata/SearchFields.php');
95             unlink('custom/modules/Cases/metadata/SearchFields.php.bak');
96         }
97
98         if(file_exists($this->smartyTestFile))
99         {
100             unlink($this->smartyTestFile);
101         }
102
103     }
104
105     public function testRangeNumberSearches()
106     {
107         $GLOBALS['db']->dbType = 'mysql';
108
109         $this->searchForm->searchFields['range_case_number'] = array (
110             'query_type' => 'default',
111             'enable_range_search' => 1,
112             'value' => '0',
113             'operator' => '=',
114         );
115
116         $where_clauses = $this->searchForm->generateSearchWhere();
117         $this->assertEquals('cases.case_number = 0', $where_clauses[0]);
118     }
119 }
120 ?>