]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - tests/include/utils/Bug46122Test.php
Release 6.2.3
[Github/sugarcrm.git] / tests / include / utils / Bug46122Test.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 require_once('include/utils/LogicHook.php');
39 require_once('include/MVC/View/SugarView.php');
40
41 class Bu46122Test extends Sugar_PHPUnit_Framework_TestCase
42 {
43     var $hasCustomModulesLogicHookFile = false;
44     var $hasCustomContactLogicHookFile = false;
45     var $modulesHookFile = 'custom/modules/logic_hooks.php';
46     var $contactsHookFile = 'custom/modules/Contacts/logic_hooks.php';
47
48     public function setUp()
49     {
50         //Setup mock logic hook files
51         if(file_exists($this->modulesHookFile))
52         {
53             $this->hasCustomModulesLogicHookFile = true;
54             copy($this->modulesHookFile, $this->modulesHookFile.'.bak');
55         } else {
56             write_array_to_file("test", array(), $this->modulesHookFile);
57         }
58
59         if(file_exists($this->contactsHookFile))
60         {
61             $this->hasCustomContactLogicHookFile = true;
62             copy($this->contactsHookFile, $this->contactsHookFile.'.bak');
63         } else {
64             write_array_to_file("test", array(), $this->contactsHookFile);
65         }
66
67         $this->useOutputBuffering = false;
68     }
69
70     public function tearDown()
71     {
72         //Remove the custom logic hook files
73         if($this->hasCustomModulesLogicHookFile && file_exists($this->modulesHookFile.'.bak'))
74         {
75             copy($this->modulesHookFile.'.bak', $this->modulesHookFile);
76             unlink($this->modulesHookFile.'.bak');
77         } else if(file_exists($this->modulesHookFile)) {
78             unlink($this->modulesHookFile);
79         }
80
81         if($this->hasCustomContactLogicHookFile && file_exists($this->contactsHookFile.'.bak'))
82         {
83             copy($this->contactsHookFile.'.bak', $this->contactsHookFile);
84             unlink($this->contactsHookFile.'.bak');
85         } else if(file_exists($this->contactsHookFile)) {
86             unlink($this->contactsHookFile);
87         }
88
89     }
90
91     public function testSugarViewProcessLogicHookWithModule()
92     {
93         $GLOBALS['logic_hook'] = new LogicHookMock();
94         $sugarViewMock = new SugarViewMock();
95         $sugarViewMock->module = 'Contacts';
96         $sugarViewMock->process();
97         $this->assertEquals(2, $GLOBALS['logic_hook']->hookRunCount, 'Assert that two logic hook files were run');
98     }
99
100
101     public function testSugarViewProcessLogicHookWithoutModule()
102     {
103         $GLOBALS['logic_hook'] = new LogicHookMock();
104         $sugarViewMock = new SugarViewMock();
105         $sugarViewMock->module = '';
106         $sugarViewMock->process();
107         $this->assertEquals(1, $GLOBALS['logic_hook']->hookRunCount, 'Assert that one logic hook file was run');
108     }
109 }
110
111 class SugarViewMock extends SugarView
112 {
113     var $options = array();
114     //no-opt methods we override
115     function _trackView() {}
116     function renderJavascript() {}
117     function _buildModuleList() {}
118     function preDisplay() {}
119     function displayErrors() {}
120     function display() {}
121 }
122
123 class LogicHookMock extends LogicHook
124 {
125     var $hookRunCount = 0;
126
127     function process_hooks($hook_array, $event, $arguments)
128     {
129         if($event == 'after_ui_frame')
130         {
131             $this->hookRunCount++;
132         }
133     }
134 }
135
136 ?>