]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - tests/modules/Home/Bug43653Test.php
Release 6.2.0
[Github/sugarcrm.git] / tests / modules / Home / Bug43653Test.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 class Bug43653Test extends Sugar_PHPUnit_Framework_OutputTestCase
39 {
40     
41     public function setUp() 
42     {
43                 $GLOBALS['current_user'] = SugarTestUserUtilities::createAnonymousUser();
44                 if(file_exists($GLOBALS['sugar_config']['cache_dir']. 'modules/unified_search_modules.php'))
45                 {
46                         copy($GLOBALS['sugar_config']['cache_dir']. 'modules/unified_search_modules.php', $GLOBALS['sugar_config']['cache_dir']. 'modules/unified_search_modules.php.bak');
47                         unlink($GLOBALS['sugar_config']['cache_dir']. 'modules/unified_search_modules.php');
48                 }
49                 
50         if(file_exists('custom/modules/unified_search_modules_display.php'))
51                 {
52                         copy('custom/modules/unified_search_modules_display.php', 'custom/modules/unified_search_modules_display.php.bak');
53                         unlink('custom/modules/unified_search_modules_display.php');
54                 }               
55     }
56     
57     public function tearDown() 
58     {
59                 SugarTestUserUtilities::removeAllCreatedAnonymousUsers();
60         unset($GLOBALS['current_user']);
61
62                 if(file_exists($GLOBALS['sugar_config']['cache_dir']. 'modules/unified_search_modules.php.bak'))
63                 {
64                         copy($GLOBALS['sugar_config']['cache_dir']. 'modules/unified_search_modules.php.bak', $GLOBALS['sugar_config']['cache_dir']. 'modules/unified_search_modules.php');
65                         unlink($GLOBALS['sugar_config']['cache_dir']. 'modules/unified_search_modules.php.bak');
66                 }
67                 
68         if(file_exists('custom/modules/unified_search_modules_display.php.bak'))
69                 {
70                         copy('custom/modules/unified_search_modules_display.php.bak', 'custom/modules/unified_search_modules_display.php');
71                         unlink('custom/modules/unified_search_modules_display.php.bak');
72                 }               
73                 
74                 SugarTestTaskUtilities::removeAllCreatedTasks();
75                 SugarTestAccountUtilities::removeAllCreatedAccounts();
76     }
77         
78         public function testFisrtUnifiedSearchWithoutUserPreferences()
79         {
80                  //Enable the Tasks, Accounts and Contacts modules
81          require_once('modules/Home/UnifiedSearchAdvanced.php');
82          $_REQUEST = array();
83          $_REQUEST['enabled_modules'] = 'Tasks,Accounts,Contacts';
84          $unifiedSearchAdvanced = new UnifiedSearchAdvanced();
85          $unifiedSearchAdvanced->saveGlobalSearchSettings();    
86          
87          $_REQUEST = array();
88          $_REQUEST['advanced'] = 'false';
89          $unifiedSearchAdvanced->query_stirng = 'blah';
90
91          $unifiedSearchAdvanced->search();
92          global $current_user;
93          $users_modules = $current_user->getPreference('globalSearch', 'search');
94          $this->assertTrue(!empty($users_modules), 'Assert we have set the user preferences properly');
95          $this->assertTrue(isset($users_modules['Tasks']), 'Assert that we have added the Tasks module');
96          $this->assertEquals(count($users_modules), 3, 'Assert that we have 3 modules in user preferences for global search');
97         }
98         
99 }
100
101 ?>