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