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